diff --git a/scripts/anaconda.sh b/scripts/anaconda.sh new file mode 100755 index 0000000..ba40dec --- /dev/null +++ b/scripts/anaconda.sh @@ -0,0 +1,97 @@ +#!/bin/bash +# requires: wget, lftp, jq +# + +set -e +set -o pipefail + +CONDA_REPO_BASE=${CONDA_REPO_BASE:-"http://repo.continuum.io"} +LOCAL_DIR_BASE="${TUNASYNC_WORKING_DIR}/pkgs" +TMP_DIR=$(mktemp -d) + +CONDA_REPOS=("free" "r" "mro" "pro") +CONDA_ARCHES=("linux-64" "linux-32" "linux-armv6l" "linux-armv7l" "linux-ppc64le" "osx-64" "osx-32" "win-64" "win-32") + +function check-and-download() { + remote_file=$1 + local_file=$2 + echo ${remote_file} + wget -q --spider ${remote_file} + if [ $? -eq 0 ]; then + echo "downloading ${remote_file}" + wget -q -N -O ${local_file} ${remote_file} + return + fi + return 1 +} + +function cleanup () { + echo "cleaning up" + [ -d ${TMP_DIR} ] && { + [ -f ${TMP_DIR}/repodata.json ] && rm ${TMP_DIR}/repodata.json + [ -f ${TMP_DIR}/repodata.json.bz2 ] && rm ${TMP_DIR}/repodata.json.bz2 + rmdir ${TMP_DIR} + } +} + +trap cleanup EXIT + +echo ${TMP_DIR} + +for repo in ${CONDA_REPOS[@]}; do + for arch in ${CONDA_ARCHES[@]}; do + PKG_REPO_BASE="${CONDA_REPO_BASE}/pkgs/$repo/$arch/" + repodata_url="${PKG_REPO_BASE}/repodata.json" + bz2_repodata_url="${PKG_REPO_BASE}/repodata.json.bz2" + LOCAL_DIR="${LOCAL_DIR_BASE}/$repo/$arch" + [ ! -d ${LOCAL_DIR} ] && mkdir -p ${LOCAL_DIR} + tmp_repodata="${TMP_DIR}/repodata.json" + tmp_bz2_repodata="${TMP_DIR}/repodata.json.bz2" + + check-and-download ${repodata_url} ${tmp_repodata} + check-and-download ${bz2_repodata_url} ${tmp_bz2_repodata} + + jq_cmd='.packages | to_entries[] | [.key, .value.size, .value.md5] | map(tostring) | join(" ")' + bzip2 -c -d ${tmp_bz2_repodata} | jq -r "${jq_cmd}" | while read line; + do + read -a tokens <<< $line + pkgfile=${tokens[0]} + pkgsize=${tokens[1]} + pkgmd5=${tokens[2]} + + pkg_url="${PKG_REPO_BASE}/${pkgfile}" + dest_file="${LOCAL_DIR}/${pkgfile}" + + declare downloaded=false + if [ -f ${dest_file} ]; then + rsize=`stat -c "%s" ${dest_file}` + if [ ${rsize} -eq ${pkgsize} ]; then + downloaded=true + echo "Skipping ${pkgfile}, size ${pkgsize}" + fi + fi + while [ $downloaded != true ]; do + echo "downloading ${pkg_url}" + wget -q -O ${dest_file} ${pkg_url} && { + # two space for md5sum check format + echo "${pkgmd5} ${dest_file}" | md5sum -c - && downloaded=true + } + done + done + + mv "${TMP_DIR}/repodata.json" "${LOCAL_DIR}/repodata.json" + mv "${TMP_DIR}/repodata.json.bz2" "${LOCAL_DIR}/repodata.json.bz2" + done +done + +function sync_installer() { + repo_url="$1" + repo_dir="$2" + + [ ! -d "$repo_dir" ] && mkdir -p "$repo_dir" + cd $repo_dir + lftp "${repo_url}/" -e "mirror --verbose -P 5; bye" +} + +sync_installer "${CONDA_REPO_BASE}/archive/" "${TUNASYNC_WORKING_DIR}/archive/" +sync_installer "${CONDA_REPO_BASE}/miniconda/" "${TUNASYNC_WORKING_DIR}/miniconda/" diff --git a/tests/conda_repodata.json b/tests/conda_repodata.json new file mode 100644 index 0000000..847567f --- /dev/null +++ b/tests/conda_repodata.json @@ -0,0 +1,142851 @@ +{ + "info": { + "arch": "x86_64", + "platform": "linux" + }, + "packages": { + "_license-1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "5b13c8cd498ce15b76371ed85278e3a4", + "name": "_license", + "requires": [], + "size": 194947, + "version": "1.1" + }, + "_license-1.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-10-22", + "depends": [ + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "dda038d00d891fc1b747471b2d248595", + "name": "_license", + "requires": [], + "size": 277974, + "version": "1.1" + }, + "_license-1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "c115aa9e3979bff6ae8d201ef551df7e", + "name": "_license", + "requires": [], + "size": 341682, + "version": "1.1" + }, + "_license-1.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-10-22", + "depends": [ + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "3de9f18346b72dc927d42977c84b6ca5", + "name": "_license", + "requires": [], + "size": 345351, + "version": "1.1" + }, + "_license-1.1-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-10-22", + "depends": [ + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "a54d684c2548ab365b2a15449ecec940", + "name": "_license", + "requires": [], + "size": 345539, + "version": "1.1" + }, + "abstract-rendering-0.1.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8454c4161d10907b96d530e7b4382dfe", + "name": "abstract-rendering", + "requires": [], + "size": 29502, + "version": "0.1.0" + }, + "abstract-rendering-0.3.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e85a2b7ceddcb6a6f90558c49ebd3ca7", + "name": "abstract-rendering", + "requires": [], + "size": 58170, + "version": "0.3.1" + }, + "abstract-rendering-0.3.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "bb4193a9e89b1314e7ab280ee41ede8a", + "name": "abstract-rendering", + "requires": [], + "size": 58095, + "version": "0.3.1" + }, + "abstract-rendering-0.4.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3583ff2bf23b5156b2f3d382b5d5a005", + "name": "abstract-rendering", + "requires": [], + "size": 63609, + "version": "0.4.0" + }, + "abstract-rendering-0.4.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6dde9b5af000ecfc7da4d9c3d14ee7bd", + "name": "abstract-rendering", + "requires": [], + "size": 63484, + "version": "0.4.0" + }, + "abstract-rendering-0.5.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "06ad01259e763b146ffbf078bec33fee", + "name": "abstract-rendering", + "requires": [], + "size": 67867, + "version": "0.5.0" + }, + "abstract-rendering-0.5.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "00057e40f3b8dddbeed45512452750a7", + "name": "abstract-rendering", + "requires": [], + "size": 67816, + "version": "0.5.0" + }, + "abstract-rendering-0.5.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "dcae2e4528d06da7583535fd59e4463f", + "name": "abstract-rendering", + "requires": [], + "size": 67816, + "version": "0.5.0" + }, + "abstract-rendering-0.5.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8af275fcc5cc875143d48fab74981d15", + "name": "abstract-rendering", + "requires": [], + "size": 67777, + "version": "0.5.0" + }, + "abstract-rendering-0.5.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3d762c6f76a02b1f32dca63d231d4e77", + "name": "abstract-rendering", + "requires": [], + "size": 68368, + "version": "0.5.1" + }, + "abstract-rendering-0.5.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e541b1ceb9cdb57c6b4e0252f89a8179", + "name": "abstract-rendering", + "requires": [], + "size": 73076, + "version": "0.5.1" + }, + "abstract-rendering-0.5.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9c11262dba9e213843fe8e410d4a4072", + "name": "abstract-rendering", + "requires": [], + "size": 73188, + "version": "0.5.1" + }, + "abstract-rendering-0.5.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-18", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "79ebcb1f226978d1c9256cb3732c4ee0", + "name": "abstract-rendering", + "requires": [], + "size": 68807, + "version": "0.5.1" + }, + "abstract-rendering-0.5.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-18", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1b6dc95c500ec08412a02d47f5c01350", + "name": "abstract-rendering", + "requires": [], + "size": 68680, + "version": "0.5.1" + }, + "abstract-rendering-0.5.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-18", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "94da922c46f5f2602de79080cfd2c0c3", + "name": "abstract-rendering", + "requires": [], + "size": 72262, + "version": "0.5.1" + }, + "abstract-rendering-0.5.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-18", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a845eea388d89124e17c39a93455e135", + "name": "abstract-rendering", + "requires": [], + "size": 73319, + "version": "0.5.1" + }, + "abstract-rendering-0.5.1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f9b319a1a2843c5a30d0450d38097bce", + "name": "abstract-rendering", + "requires": [], + "size": 73165, + "version": "0.5.1" + }, + "affine-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-30", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "40056f282385c58d65b50e339516d5b9", + "name": "affine", + "requires": [], + "size": 12053, + "version": "1.1.0" + }, + "affine-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-30", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "446157f1ef4fa0ec781feb42c72a26e5", + "name": "affine", + "requires": [], + "size": 12043, + "version": "1.1.0" + }, + "affine-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-30", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "c92af73e8112153ffd5977ae5c81b624", + "name": "affine", + "requires": [], + "size": 12388, + "version": "1.1.0" + }, + "affine-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-30", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "5be7884371cfc00c8b38713084ae304f", + "name": "affine", + "requires": [], + "size": 12407, + "version": "1.1.0" + }, + "affine-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "0e17383ca8bbe6fb02cf3ca72688b7db", + "name": "affine", + "requires": [], + "size": 12120, + "version": "1.1.0" + }, + "affine-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "71289aba3731023688a79be4919c5420", + "name": "affine", + "requires": [], + "size": 19194, + "version": "1.2.0" + }, + "affine-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7f8cb54cbe8928b1912395fb227b0230", + "name": "affine", + "requires": [], + "size": 20099, + "version": "1.2.0" + }, + "affine-1.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "b3e191585b7f5b588cc44f0413e8686d", + "name": "affine", + "requires": [], + "size": 20063, + "version": "1.2.0" + }, + "alabaster-0.7.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "4d63c0bf9adbfcb8848d07094e879a63", + "name": "alabaster", + "requires": [], + "size": 13493, + "version": "0.7.3" + }, + "alabaster-0.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "75c3494a66096f334c2fb2190e620681", + "name": "alabaster", + "requires": [], + "size": 13489, + "version": "0.7.3" + }, + "alabaster-0.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "dd405232d89d5d5ad07614668acf1079", + "name": "alabaster", + "requires": [], + "size": 13594, + "version": "0.7.3" + }, + "alabaster-0.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "29fa666b55a62666dfb0576b66ad767f", + "name": "alabaster", + "requires": [], + "size": 13589, + "version": "0.7.3" + }, + "alabaster-0.7.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "0a6fa4ab5a0fed8f78fdf9ad9549a32e", + "name": "alabaster", + "requires": [], + "size": 13542, + "version": "0.7.3" + }, + "alabaster-0.7.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "56e2dd4e1f23a334a536c90f48e6c165", + "name": "alabaster", + "requires": [], + "size": 14080, + "version": "0.7.6" + }, + "alabaster-0.7.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "244b1fe5555fc768d1e078cc795edc35", + "name": "alabaster", + "requires": [], + "size": 14155, + "version": "0.7.6" + }, + "alabaster-0.7.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "7ff60b7cc2402915c9f89f7a7bb4cc26", + "name": "alabaster", + "requires": [], + "size": 14136, + "version": "0.7.6" + }, + "alabaster-0.7.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4490e23347574dd0fc9aaa1f35c2eca0", + "name": "alabaster", + "requires": [], + "size": 15756, + "version": "0.7.7" + }, + "alabaster-0.7.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "70eba8daac4adcd503871cbf0892cebe", + "name": "alabaster", + "requires": [], + "size": 15815, + "version": "0.7.7" + }, + "alabaster-0.7.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "fe239d5aae95a23bcde774706bfcfcd4", + "name": "alabaster", + "requires": [], + "size": 15773, + "version": "0.7.7" + }, + "anaconda-1.6.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse 1.2.1 py26_0", + "astropy 0.2.3 np16py26_0", + "atom 0.2.3 py26_0", + "biopython 1.61 np16py26_0", + "bitarray 0.8.1 py26_0", + "boto 2.9.6 py26_0", + "cairo 1.12.2 1", + "casuarius 1.1 py26_0", + "curl 7.30.0 0", + "cython 0.19.1 py26_0", + "dateutil 2.1 py26_1", + "disco 0.4.4 py26_0", + "distribute 0.6.45 py26_0", + "docutils 0.10 py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_0", + "freetype 2.4.10 0", + "gevent 0.13.8 py26_0", + "gevent-websocket 0.3.6 py26_2", + "gevent_zeromq 0.2.5 py26_2", + "greenlet 0.4.1 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.1.1 np16py26_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py26_3", + "ipython 0.13.2 py26_0", + "itsdangerous 0.21 py26_0", + "jinja2 2.6 py26_0", + "jpeg 8d 0", + "libdynd 0.3.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np16py26_0", + "llvmpy 0.11.3 py26_0", + "lxml 3.2.1 py26_0", + "matplotlib 1.2.1 np16py26_1", + "mdp 3.3 np16py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.4 np16py26_0", + "networkx 1.7 py26_0", + "nltk 2.0.4 np16py26_0", + "nose 1.3.0 py26_0", + "numba 0.9.0 np16py26_0", + "numexpr 2.0.1 np16py26_3", + "numpy 1.6.2 py26_4", + "opencv 2.4.2 np16py26_1", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.11.0 np16py26_1", + "pep8 1.4.5 py26_0", + "pip 1.3.1 py26_1", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 0.7.1 py26_0", + "py 1.4.14 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.9.1 py26_0", + "pycrypto 2.6 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.2 py26_0", + "pygments 1.6 py26_0", + "pyparsing 1.5.6 py26_0", + "pysam 0.6 py26_0", + "pytables 2.4.0 np16py26_0", + "pytest 2.3.5 py26_0", + "python 2.6.8 6", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py26_0", + "requests 1.2.3 py26_0", + "scikit-image 0.8.2 np16py26_1", + "scikit-learn 0.13.1 np16py26_0", + "scipy 0.12.0 np16py26_0", + "six 1.3.0 py26_0", + "sphinx 1.1.3 py26_3", + "sqlalchemy 0.8.1 py26_0", + "sqlite 3.7.13 0", + "statsmodels 0.4.3 np16py26_1", + "sympy 0.7.2 py26_0", + "system 5.8 1", + "theano 0.5.0 np16py26_1", + "tk 8.5.13 0", + "tornado 3.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.1 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "07cbc2f525957ee56e2c8ef1e27ab5a5", + "name": "anaconda", + "requires": [], + "size": 1835, + "version": "1.6.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np16py26_p3", + "numpy 1.6.2 py26_p4", + "scikit-learn 0.13.1 np16py26_p0", + "scipy 0.12.0 np16py26_p0" + ] + } + }, + "anaconda-1.6.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "astropy 0.2.3 np16py27_0", + "atom 0.2.3 py27_0", + "binstar 0.1.1 py27_0", + "biopython 1.61 np16py27_0", + "bitarray 0.8.1 py27_0", + "boto 2.9.6 py27_0", + "cairo 1.12.2 1", + "casuarius 1.1 py27_0", + "cubes 0.10.2 py27_2", + "curl 7.30.0 0", + "cython 0.19.1 py27_0", + "dateutil 2.1 py27_1", + "disco 0.4.4 py27_0", + "distribute 0.6.45 py27_0", + "docutils 0.10 py27_0", + "enaml 0.7.6 py27_0", + "erlang R15B01 0", + "flask 0.10.1 py27_0", + "freetype 2.4.10 0", + "gevent 0.13.8 py27_0", + "gevent-websocket 0.3.6 py27_2", + "gevent_zeromq 0.2.5 py27_2", + "greenlet 0.4.1 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.1.1 np16py27_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py27_3", + "ipython 0.13.2 py27_0", + "ipython-notebook 0.13.2 py27_0", + "ipython-qtconsole 0.13.2 py27_0", + "itsdangerous 0.21 py27_0", + "jinja2 2.6 py27_0", + "jpeg 8d 0", + "keyring 1.4 py27_0", + "launcher 0.1.1 py27_0", + "libdynd 0.3.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np16py27_0", + "llvmpy 0.11.3 py27_0", + "lxml 3.2.1 py27_0", + "matplotlib 1.2.1 np16py27_1", + "mdp 3.3 np16py27_0", + "meta 0.4.2.dev py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.4 np16py27_0", + "networkx 1.7 py27_0", + "nltk 2.0.4 np16py27_0", + "nose 1.3.0 py27_0", + "numba 0.9.0 np16py27_0", + "numexpr 2.0.1 np16py27_3", + "numpy 1.6.2 py27_4", + "opencv 2.4.2 np16py27_1", + "openssl 1.0.1c 0", + "pandas 0.11.0 np16py27_1", + "pep8 1.4.5 py27_0", + "pip 1.3.1 py27_1", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 0.7.1 py27_0", + "py 1.4.14 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.9.1 py27_0", + "pycrypto 2.6 py27_0", + "pycurl 7.19.0 py27_2", + "pyflakes 0.7.2 py27_0", + "pygments 1.6 py27_0", + "pyparsing 1.5.6 py27_0", + "pysal 1.5.0 np16py27_1", + "pysam 0.6 py27_0", + "pyside 1.1.2 py27_0", + "pytables 2.4.0 np16py27_0", + "pytest 2.3.5 py27_0", + "python 2.7.5 1", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.7.4 0", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py27_0", + "requests 1.2.3 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.8.2 np16py27_1", + "scikit-learn 0.13.1 np16py27_0", + "scipy 0.12.0 np16py27_0", + "shiboken 1.1.2 py27_0", + "six 1.3.0 py27_0", + "sphinx 1.1.3 py27_3", + "spyder 2.2.0 py27_1", + "spyder-app 2.2.0 py27_0", + "sqlalchemy 0.8.1 py27_0", + "sqlite 3.7.13 0", + "statsmodels 0.4.3 np16py27_1", + "sympy 0.7.2 py27_0", + "system 5.8 1", + "theano 0.5.0 np16py27_1", + "tk 8.5.13 0", + "tornado 3.1 py27_0", + "util-linux 2.21 0", + "werkzeug 0.9.1 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "c3d6a27ba34dda67f85229c5144ef312", + "name": "anaconda", + "requires": [], + "size": 2011, + "version": "1.6.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np16py27_p3", + "numpy 1.6.2 py27_p4", + "scikit-learn 0.13.1 np16py27_p0", + "scipy 0.12.0 np16py27_p0" + ] + } + }, + "anaconda-1.6.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse 1.2.1 py26_0", + "astropy 0.2.3 np17py26_0", + "atom 0.2.3 py26_0", + "biopython 1.61 np17py26_0", + "bitarray 0.8.1 py26_0", + "boto 2.9.6 py26_0", + "cairo 1.12.2 1", + "casuarius 1.1 py26_0", + "curl 7.30.0 0", + "cython 0.19.1 py26_0", + "dateutil 2.1 py26_1", + "disco 0.4.4 py26_0", + "distribute 0.6.45 py26_0", + "docutils 0.10 py26_0", + "dynd-python 0.3.0 np17py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_0", + "freetype 2.4.10 0", + "gevent 0.13.8 py26_0", + "gevent-websocket 0.3.6 py26_2", + "gevent_zeromq 0.2.5 py26_2", + "greenlet 0.4.1 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.1.1 np17py26_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py26_3", + "ipython 0.13.2 py26_0", + "itsdangerous 0.21 py26_0", + "jinja2 2.6 py26_0", + "jpeg 8d 0", + "libdynd 0.3.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np17py26_0", + "llvmpy 0.11.3 py26_0", + "lxml 3.2.1 py26_0", + "matplotlib 1.2.1 np17py26_1", + "mdp 3.3 np17py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.4 np17py26_0", + "networkx 1.7 py26_0", + "nltk 2.0.4 np17py26_0", + "nose 1.3.0 py26_0", + "numba 0.9.0 np17py26_0", + "numexpr 2.0.1 np17py26_3", + "numpy 1.7.1 py26_0", + "opencv 2.4.2 np17py26_1", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.11.0 np17py26_1", + "pep8 1.4.5 py26_0", + "pip 1.3.1 py26_1", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 0.7.1 py26_0", + "py 1.4.14 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.9.1 py26_0", + "pycrypto 2.6 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.2 py26_0", + "pygments 1.6 py26_0", + "pyparsing 1.5.6 py26_0", + "pysam 0.6 py26_0", + "pytables 2.4.0 np17py26_0", + "pytest 2.3.5 py26_0", + "python 2.6.8 6", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py26_0", + "requests 1.2.3 py26_0", + "scikit-image 0.8.2 np17py26_1", + "scikit-learn 0.13.1 np17py26_0", + "scipy 0.12.0 np17py26_0", + "six 1.3.0 py26_0", + "sphinx 1.1.3 py26_3", + "sqlalchemy 0.8.1 py26_0", + "sqlite 3.7.13 0", + "statsmodels 0.4.3 np17py26_1", + "sympy 0.7.2 py26_0", + "system 5.8 1", + "theano 0.5.0 np17py26_1", + "tk 8.5.13 0", + "tornado 3.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.1 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "d3797b89e5ce2a406517b6300bbe7ed9", + "name": "anaconda", + "requires": [], + "size": 1848, + "version": "1.6.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np17py26_p3", + "numpy 1.7.1 py26_p0", + "scikit-learn 0.13.1 np17py26_p0", + "scipy 0.12.0 np17py26_p0" + ] + } + }, + "anaconda-1.6.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "astropy 0.2.3 np17py27_0", + "atom 0.2.3 py27_0", + "binstar 0.1.1 py27_0", + "biopython 1.61 np17py27_0", + "bitarray 0.8.1 py27_0", + "boto 2.9.6 py27_0", + "cairo 1.12.2 1", + "casuarius 1.1 py27_0", + "cubes 0.10.2 py27_2", + "curl 7.30.0 0", + "cython 0.19.1 py27_0", + "dateutil 2.1 py27_1", + "disco 0.4.4 py27_0", + "distribute 0.6.45 py27_0", + "docutils 0.10 py27_0", + "dynd-python 0.3.0 np17py27_0", + "enaml 0.7.6 py27_0", + "erlang R15B01 0", + "flask 0.10.1 py27_0", + "freetype 2.4.10 0", + "gevent 0.13.8 py27_0", + "gevent-websocket 0.3.6 py27_2", + "gevent_zeromq 0.2.5 py27_2", + "greenlet 0.4.1 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.1.1 np17py27_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py27_3", + "ipython 0.13.2 py27_0", + "ipython-notebook 0.13.2 py27_0", + "ipython-qtconsole 0.13.2 py27_0", + "itsdangerous 0.21 py27_0", + "jinja2 2.6 py27_0", + "jpeg 8d 0", + "keyring 1.4 py27_0", + "launcher 0.1.1 py27_0", + "libdynd 0.3.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np17py27_0", + "llvmpy 0.11.3 py27_0", + "lxml 3.2.1 py27_0", + "matplotlib 1.2.1 np17py27_1", + "mdp 3.3 np17py27_0", + "meta 0.4.2.dev py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.4 np17py27_0", + "networkx 1.7 py27_0", + "nltk 2.0.4 np17py27_0", + "nose 1.3.0 py27_0", + "numba 0.9.0 np17py27_0", + "numexpr 2.0.1 np17py27_3", + "numpy 1.7.1 py27_0", + "opencv 2.4.2 np17py27_1", + "openssl 1.0.1c 0", + "pandas 0.11.0 np17py27_1", + "pep8 1.4.5 py27_0", + "pip 1.3.1 py27_1", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 0.7.1 py27_0", + "py 1.4.14 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.9.1 py27_0", + "pycrypto 2.6 py27_0", + "pycurl 7.19.0 py27_2", + "pyflakes 0.7.2 py27_0", + "pygments 1.6 py27_0", + "pyparsing 1.5.6 py27_0", + "pysal 1.5.0 np17py27_1", + "pysam 0.6 py27_0", + "pyside 1.1.2 py27_0", + "pytables 2.4.0 np17py27_0", + "pytest 2.3.5 py27_0", + "python 2.7.5 1", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.7.4 0", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py27_0", + "requests 1.2.3 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.8.2 np17py27_1", + "scikit-learn 0.13.1 np17py27_0", + "scipy 0.12.0 np17py27_0", + "shiboken 1.1.2 py27_0", + "six 1.3.0 py27_0", + "sphinx 1.1.3 py27_3", + "spyder 2.2.0 py27_1", + "spyder-app 2.2.0 py27_0", + "sqlalchemy 0.8.1 py27_0", + "sqlite 3.7.13 0", + "statsmodels 0.4.3 np17py27_1", + "sympy 0.7.2 py27_0", + "system 5.8 1", + "theano 0.5.0 np17py27_1", + "tk 8.5.13 0", + "tornado 3.1 py27_0", + "util-linux 2.21 0", + "werkzeug 0.9.1 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "59e499123b2c22172179971efc6593f0", + "name": "anaconda", + "requires": [], + "size": 2007, + "version": "1.6.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np17py27_p3", + "numpy 1.7.1 py27_p0", + "scikit-learn 0.13.1 np17py27_p0", + "scipy 0.12.0 np17py27_p0" + ] + } + }, + "anaconda-1.6.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astropy 0.2.3 np17py33_0", + "bitarray 0.8.1 py33_0", + "curl 7.30.0 0", + "cython 0.19.1 py33_0", + "dateutil 2.1 py33_1", + "distribute 0.6.45 py33_0", + "docutils 0.10 py33_0", + "dynd-python 0.3.0 np17py33_0", + "freetype 2.4.10 0", + "greenlet 0.4.1 py33_0", + "hdf5 1.8.9 0", + "ipython 0.13.2 py33_0", + "jinja2 2.6 py33_0", + "libdynd 0.3.0 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np17py33_0", + "llvmpy 0.11.3 py33_0", + "lxml 3.2.1 py33_0", + "matplotlib 1.2.1 np17py33_1", + "mdp 3.3 np17py33_0", + "netcdf4 1.0.4 np17py33_0", + "networkx 1.7 py33_0", + "nose 1.3.0 py33_0", + "numba 0.9.0 np17py33_0", + "numpy 1.7.1 py33_0", + "openssl 1.0.1c 0", + "pandas 0.11.0 np17py33_1", + "pip 1.3.1 py33_1", + "ply 3.4 py33_0", + "psutil 0.7.1 py33_0", + "pycosat 0.6.0 py33_0", + "pycparser 2.9.1 py33_0", + "pycrypto 2.6 py33_0", + "pyflakes 0.7.2 py33_0", + "pygments 1.6 py33_0", + "python 3.3.2 0", + "pytz 2013b py33_0", + "pyyaml 3.10 py33_0", + "pyzmq 2.2.0.1 py33_1", + "readline 6.2 0", + "requests 1.2.3 py33_0", + "scikit-image 0.8.2 np17py33_1", + "scipy 0.12.0 np17py33_0", + "six 1.3.0 py33_0", + "sphinx 1.1.3 py33_3", + "sqlalchemy 0.8.1 py33_0", + "sqlite 3.7.13 0", + "sympy 0.7.2 py33_0", + "system 5.8 1", + "tk 8.5.13 0", + "tornado 3.1 py33_0", + "util-linux 2.21 0", + "xlrd 0.9.2 py33_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "7d31586cc65c9521648f77710a73aa59", + "name": "anaconda", + "requires": [], + "size": 1308, + "version": "1.6.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numpy 1.7.1 py33_p0", + "scipy 0.12.0 np17py33_p0" + ] + } + }, + "anaconda-1.6.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse 1.2.1 py26_0", + "astropy 0.2.3 np16py26_0", + "atom 0.2.3 py26_0", + "biopython 1.61 np16py26_0", + "bitarray 0.8.1 py26_0", + "boto 2.9.6 py26_0", + "cairo 1.12.2 1", + "casuarius 1.1 py26_0", + "curl 7.30.0 0", + "cython 0.19.1 py26_0", + "dateutil 2.1 py26_1", + "disco 0.4.4 py26_0", + "distribute 0.6.45 py26_0", + "docutils 0.10 py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_0", + "freetype 2.4.10 0", + "gevent 0.13.8 py26_0", + "gevent-websocket 0.3.6 py26_2", + "gevent_zeromq 0.2.5 py26_2", + "greenlet 0.4.1 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.1.1 np16py26_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py26_3", + "ipython 0.13.2 py26_0", + "itsdangerous 0.21 py26_0", + "jinja2 2.6 py26_0", + "jpeg 8d 0", + "libdynd 0.4.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np16py26_0", + "llvmpy 0.11.3 py26_0", + "lxml 3.2.1 py26_0", + "matplotlib 1.2.1 np16py26_1", + "mdp 3.3 np16py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.4 np16py26_0", + "networkx 1.7 py26_0", + "nltk 2.0.4 np16py26_0", + "nose 1.3.0 py26_0", + "numba 0.9.0 np16py26_0", + "numexpr 2.0.1 np16py26_3", + "numpy 1.6.2 py26_4", + "opencv 2.4.2 np16py26_1", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.11.0 np16py26_1", + "pep8 1.4.5 py26_0", + "pip 1.3.1 py26_1", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 0.7.1 py26_0", + "py 1.4.14 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.9.1 py26_0", + "pycrypto 2.6 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.2 py26_0", + "pygments 1.6 py26_0", + "pyparsing 1.5.6 py26_0", + "pysam 0.6 py26_0", + "pytables 2.4.0 np16py26_0", + "pytest 2.3.5 py26_0", + "python 2.6.8 7", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py26_0", + "requests 1.2.3 py26_0", + "scikit-image 0.8.2 np16py26_1", + "scikit-learn 0.13.1 np16py26_0", + "scipy 0.12.0 np16py26_0", + "six 1.3.0 py26_0", + "sphinx 1.1.3 py26_3", + "sqlalchemy 0.8.1 py26_0", + "sqlite 3.7.13 0", + "statsmodels 0.4.3 np16py26_1", + "sympy 0.7.2 py26_0", + "system 5.8 1", + "theano 0.5.0 np16py26_1", + "tk 8.5.13 0", + "tornado 3.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.1 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "7a83ce48eabdf873b9a08f6c50f719e1", + "name": "anaconda", + "requires": [], + "size": 1827, + "version": "1.6.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np16py26_p3", + "numpy 1.6.2 py26_p4", + "scikit-learn 0.13.1 np16py26_p0", + "scipy 0.12.0 np16py26_p0" + ] + } + }, + "anaconda-1.6.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "astropy 0.2.3 np16py27_0", + "atom 0.2.3 py27_0", + "binstar 0.1.2 py27_0", + "biopython 1.61 np16py27_0", + "bitarray 0.8.1 py27_0", + "boto 2.9.6 py27_0", + "cairo 1.12.2 1", + "casuarius 1.1 py27_0", + "cubes 0.10.2 py27_2", + "curl 7.30.0 0", + "cython 0.19.1 py27_0", + "dateutil 2.1 py27_1", + "disco 0.4.4 py27_0", + "distribute 0.6.45 py27_0", + "docutils 0.10 py27_0", + "enaml 0.7.6 py27_0", + "erlang R15B01 0", + "flask 0.10.1 py27_0", + "freetype 2.4.10 0", + "gevent 0.13.8 py27_0", + "gevent-websocket 0.3.6 py27_2", + "gevent_zeromq 0.2.5 py27_2", + "greenlet 0.4.1 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.1.1 np16py27_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py27_3", + "ipython 0.13.2 py27_0", + "ipython-notebook 0.13.2 py27_0", + "ipython-qtconsole 0.13.2 py27_0", + "itsdangerous 0.21 py27_0", + "jinja2 2.6 py27_0", + "jpeg 8d 0", + "keyring 1.4 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.4.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np16py27_0", + "llvmpy 0.11.3 py27_0", + "lxml 3.2.1 py27_0", + "matplotlib 1.2.1 np16py27_1", + "mdp 3.3 np16py27_0", + "meta 0.4.2.dev py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.4 np16py27_0", + "networkx 1.7 py27_0", + "nltk 2.0.4 np16py27_0", + "nose 1.3.0 py27_0", + "numba 0.9.0 np16py27_0", + "numexpr 2.0.1 np16py27_3", + "numpy 1.6.2 py27_4", + "opencv 2.4.2 np16py27_1", + "openssl 1.0.1c 0", + "pandas 0.11.0 np16py27_1", + "pep8 1.4.5 py27_0", + "pip 1.3.1 py27_1", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 0.7.1 py27_0", + "py 1.4.14 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.9.1 py27_0", + "pycrypto 2.6 py27_0", + "pycurl 7.19.0 py27_2", + "pyflakes 0.7.2 py27_0", + "pygments 1.6 py27_0", + "pyparsing 1.5.6 py27_0", + "pysal 1.5.0 np16py27_1", + "pysam 0.6 py27_0", + "pyside 1.1.2 py27_0", + "pytables 2.4.0 np16py27_0", + "pytest 2.3.5 py27_0", + "python 2.7.5 2", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.7.4 0", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py27_0", + "requests 1.2.3 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.8.2 np16py27_1", + "scikit-learn 0.13.1 np16py27_0", + "scipy 0.12.0 np16py27_0", + "shiboken 1.1.2 py27_0", + "six 1.3.0 py27_0", + "sphinx 1.1.3 py27_3", + "spyder 2.2.0 py27_1", + "spyder-app 2.2.0 py27_0", + "sqlalchemy 0.8.1 py27_0", + "sqlite 3.7.13 0", + "statsmodels 0.4.3 np16py27_1", + "sympy 0.7.2 py27_0", + "system 5.8 1", + "theano 0.5.0 np16py27_1", + "tk 8.5.13 0", + "tornado 3.1 py27_0", + "util-linux 2.21 0", + "werkzeug 0.9.1 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "e2fa7d0ac66adee07b967d9349523e85", + "name": "anaconda", + "requires": [], + "size": 2015, + "version": "1.6.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np16py27_p3", + "numpy 1.6.2 py27_p4", + "scikit-learn 0.13.1 np16py27_p0", + "scipy 0.12.0 np16py27_p0" + ] + } + }, + "anaconda-1.6.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse 1.2.1 py26_0", + "astropy 0.2.3 np17py26_0", + "atom 0.2.3 py26_0", + "biopython 1.61 np17py26_0", + "bitarray 0.8.1 py26_0", + "boto 2.9.6 py26_0", + "cairo 1.12.2 1", + "casuarius 1.1 py26_0", + "curl 7.30.0 0", + "cython 0.19.1 py26_0", + "dateutil 2.1 py26_1", + "disco 0.4.4 py26_0", + "distribute 0.6.45 py26_0", + "docutils 0.10 py26_0", + "dynd-python 0.4.0 np17py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_0", + "freetype 2.4.10 0", + "gevent 0.13.8 py26_0", + "gevent-websocket 0.3.6 py26_2", + "gevent_zeromq 0.2.5 py26_2", + "greenlet 0.4.1 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.1.1 np17py26_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py26_3", + "ipython 0.13.2 py26_0", + "itsdangerous 0.21 py26_0", + "jinja2 2.6 py26_0", + "jpeg 8d 0", + "libdynd 0.4.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np17py26_0", + "llvmpy 0.11.3 py26_0", + "lxml 3.2.1 py26_0", + "matplotlib 1.2.1 np17py26_1", + "mdp 3.3 np17py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.4 np17py26_0", + "networkx 1.7 py26_0", + "nltk 2.0.4 np17py26_0", + "nose 1.3.0 py26_0", + "numba 0.9.0 np17py26_0", + "numexpr 2.0.1 np17py26_3", + "numpy 1.7.1 py26_0", + "opencv 2.4.2 np17py26_1", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.11.0 np17py26_1", + "pep8 1.4.5 py26_0", + "pip 1.3.1 py26_1", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 0.7.1 py26_0", + "py 1.4.14 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.9.1 py26_0", + "pycrypto 2.6 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.2 py26_0", + "pygments 1.6 py26_0", + "pyparsing 1.5.6 py26_0", + "pysam 0.6 py26_0", + "pytables 2.4.0 np17py26_0", + "pytest 2.3.5 py26_0", + "python 2.6.8 7", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py26_0", + "requests 1.2.3 py26_0", + "scikit-image 0.8.2 np17py26_1", + "scikit-learn 0.13.1 np17py26_0", + "scipy 0.12.0 np17py26_0", + "six 1.3.0 py26_0", + "sphinx 1.1.3 py26_3", + "sqlalchemy 0.8.1 py26_0", + "sqlite 3.7.13 0", + "statsmodels 0.4.3 np17py26_1", + "sympy 0.7.2 py26_0", + "system 5.8 1", + "theano 0.5.0 np17py26_1", + "tk 8.5.13 0", + "tornado 3.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.1 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "eb6b8ce8dadb581759784dfb6d9b96d5", + "name": "anaconda", + "requires": [], + "size": 1853, + "version": "1.6.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np17py26_p3", + "numpy 1.7.1 py26_p0", + "scikit-learn 0.13.1 np17py26_p0", + "scipy 0.12.0 np17py26_p0" + ] + } + }, + "anaconda-1.6.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "astropy 0.2.3 np17py27_0", + "atom 0.2.3 py27_0", + "binstar 0.1.2 py27_0", + "biopython 1.61 np17py27_0", + "bitarray 0.8.1 py27_0", + "boto 2.9.6 py27_0", + "cairo 1.12.2 1", + "casuarius 1.1 py27_0", + "cubes 0.10.2 py27_2", + "curl 7.30.0 0", + "cython 0.19.1 py27_0", + "dateutil 2.1 py27_1", + "disco 0.4.4 py27_0", + "distribute 0.6.45 py27_0", + "docutils 0.10 py27_0", + "dynd-python 0.4.0 np17py27_0", + "enaml 0.7.6 py27_0", + "erlang R15B01 0", + "flask 0.10.1 py27_0", + "freetype 2.4.10 0", + "gevent 0.13.8 py27_0", + "gevent-websocket 0.3.6 py27_2", + "gevent_zeromq 0.2.5 py27_2", + "greenlet 0.4.1 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.1.1 np17py27_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py27_3", + "ipython 0.13.2 py27_0", + "ipython-notebook 0.13.2 py27_0", + "ipython-qtconsole 0.13.2 py27_0", + "itsdangerous 0.21 py27_0", + "jinja2 2.6 py27_0", + "jpeg 8d 0", + "keyring 1.4 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.4.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np17py27_0", + "llvmpy 0.11.3 py27_0", + "lxml 3.2.1 py27_0", + "matplotlib 1.2.1 np17py27_1", + "mdp 3.3 np17py27_0", + "meta 0.4.2.dev py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.4 np17py27_0", + "networkx 1.7 py27_0", + "nltk 2.0.4 np17py27_0", + "nose 1.3.0 py27_0", + "numba 0.9.0 np17py27_0", + "numexpr 2.0.1 np17py27_3", + "numpy 1.7.1 py27_0", + "opencv 2.4.2 np17py27_1", + "openssl 1.0.1c 0", + "pandas 0.11.0 np17py27_1", + "pep8 1.4.5 py27_0", + "pip 1.3.1 py27_1", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 0.7.1 py27_0", + "py 1.4.14 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.9.1 py27_0", + "pycrypto 2.6 py27_0", + "pycurl 7.19.0 py27_2", + "pyflakes 0.7.2 py27_0", + "pygments 1.6 py27_0", + "pyparsing 1.5.6 py27_0", + "pysal 1.5.0 np17py27_1", + "pysam 0.6 py27_0", + "pyside 1.1.2 py27_0", + "pytables 2.4.0 np17py27_0", + "pytest 2.3.5 py27_0", + "python 2.7.5 2", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.7.4 0", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py27_0", + "requests 1.2.3 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.8.2 np17py27_1", + "scikit-learn 0.13.1 np17py27_0", + "scipy 0.12.0 np17py27_0", + "shiboken 1.1.2 py27_0", + "six 1.3.0 py27_0", + "sphinx 1.1.3 py27_3", + "spyder 2.2.0 py27_1", + "spyder-app 2.2.0 py27_0", + "sqlalchemy 0.8.1 py27_0", + "sqlite 3.7.13 0", + "statsmodels 0.4.3 np17py27_1", + "sympy 0.7.2 py27_0", + "system 5.8 1", + "theano 0.5.0 np17py27_1", + "tk 8.5.13 0", + "tornado 3.1 py27_0", + "util-linux 2.21 0", + "werkzeug 0.9.1 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "ae85f15879f1a7b69a028cb19b07eee4", + "name": "anaconda", + "requires": [], + "size": 2004, + "version": "1.6.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np17py27_p3", + "numpy 1.7.1 py27_p0", + "scikit-learn 0.13.1 np17py27_p0", + "scipy 0.12.0 np17py27_p0" + ] + } + }, + "anaconda-1.6.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astropy 0.2.3 np17py33_0", + "bitarray 0.8.1 py33_0", + "curl 7.30.0 0", + "cython 0.19.1 py33_0", + "dateutil 2.1 py33_1", + "distribute 0.6.45 py33_0", + "docutils 0.10 py33_0", + "dynd-python 0.4.0 np17py33_0", + "freetype 2.4.10 0", + "greenlet 0.4.1 py33_0", + "hdf5 1.8.9 0", + "ipython 0.13.2 py33_0", + "jinja2 2.6 py33_0", + "libdynd 0.4.0 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.2 0", + "llvmmath 0.1.0 np17py33_0", + "llvmpy 0.11.3 py33_0", + "lxml 3.2.1 py33_0", + "matplotlib 1.2.1 np17py33_1", + "mdp 3.3 np17py33_0", + "netcdf4 1.0.4 np17py33_0", + "networkx 1.7 py33_0", + "nose 1.3.0 py33_0", + "numba 0.9.0 np17py33_0", + "numpy 1.7.1 py33_0", + "openssl 1.0.1c 0", + "pandas 0.11.0 np17py33_1", + "pip 1.3.1 py33_1", + "ply 3.4 py33_0", + "psutil 0.7.1 py33_0", + "pycosat 0.6.0 py33_0", + "pycparser 2.9.1 py33_0", + "pycrypto 2.6 py33_0", + "pyflakes 0.7.2 py33_0", + "pygments 1.6 py33_0", + "python 3.3.2 0", + "pytz 2013b py33_0", + "pyyaml 3.10 py33_0", + "pyzmq 2.2.0.1 py33_1", + "readline 6.2 0", + "requests 1.2.3 py33_0", + "scikit-image 0.8.2 np17py33_1", + "scipy 0.12.0 np17py33_0", + "six 1.3.0 py33_0", + "sphinx 1.1.3 py33_3", + "sqlalchemy 0.8.1 py33_0", + "sqlite 3.7.13 0", + "sympy 0.7.2 py33_0", + "system 5.8 1", + "tk 8.5.13 0", + "tornado 3.1 py33_0", + "util-linux 2.21 0", + "xlrd 0.9.2 py33_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "1c639b71e0f51b26f8f7c854697e43ea", + "name": "anaconda", + "requires": [], + "size": 1303, + "version": "1.6.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numpy 1.7.1 py33_p0", + "scipy 0.12.0 np17py33_p0" + ] + } + }, + "anaconda-1.7.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse 1.2.1 py26_0", + "astropy 0.2.4 np16py26_1", + "atom 0.3.2 py26_0", + "biopython 1.61 np16py26_0", + "bitarray 0.8.1 py26_0", + "boto 2.12.0 py26_0", + "cairo 1.12.2 1", + "casuarius 1.1 py26_0", + "configobj 4.7.2 py26_0", + "curl 7.30.0 0", + "cython 0.19.1 py26_0", + "dateutil 2.1 py26_2", + "disco 0.4.4 py26_0", + "distribute 0.6.45 py26_0", + "docutils 0.11 py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "gevent 0.13.8 py26_0", + "gevent-websocket 0.3.6 py26_2", + "gevent_zeromq 0.2.5 py26_2", + "greenlet 0.4.1 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.2.0 np16py26_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py26_3", + "ipython 1.0.0 py26_0", + "itsdangerous 0.23 py26_0", + "jinja2 2.7.1 py26_0", + "jpeg 8d 0", + "libdynd 0.4.2 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np16py26_2", + "llvmpy 0.12.0 py26_0", + "lxml 3.2.3 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.0 np16py26_0", + "mdp 3.3 np16py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.5 np16py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np16py26_0", + "nose 1.3.0 py26_0", + "numba 0.10.2 np16py26_0", + "numexpr 2.0.1 np16py26_3", + "numpy 1.6.2 py26_4", + "opencv 2.4.6 np16py26_0", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.12.0 np16py26_0", + "patsy 0.2.1 np16py26_0", + "pep8 1.4.6 py26_0", + "pip 1.4.1 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 1.0.1 py26_0", + "py 1.4.14 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.9.1 py26_0", + "pycrypto 2.6 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.3 py26_0", + "pygments 1.6 py26_0", + "pyparsing 1.5.6 py26_0", + "pysam 0.6 py26_0", + "pytables 2.4.0 np16py26_0", + "pytest 2.3.5 py26_0", + "python 2.6.8 7", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py26_0", + "requests 1.2.3 py26_0", + "scikit-image 0.8.2 np16py26_2", + "scikit-learn 0.14.1 np16py26_0", + "scipy 0.12.0 np16py26_0", + "six 1.4.1 py26_0", + "sphinx 1.1.3 py26_4", + "sqlalchemy 0.8.2 py26_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np16py26_0", + "sympy 0.7.3 py26_0", + "system 5.8 1", + "theano 0.5.0 np16py26_1", + "tk 8.5.13 0", + "tornado 3.1.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "86f33d1d455e01e98b2fb824b826a579", + "name": "anaconda", + "requires": [], + "size": 1896, + "version": "1.7.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np16py26_p3", + "numpy 1.6.2 py26_p4", + "scikit-learn 0.14.1 np16py26_p0", + "scipy 0.12.0 np16py26_p0" + ] + } + }, + "anaconda-1.7.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "astropy 0.2.4 np16py27_1", + "atom 0.3.2 py27_0", + "binstar 0.3.1 py27_0", + "biopython 1.61 np16py27_0", + "bitarray 0.8.1 py27_0", + "boto 2.12.0 py27_0", + "cairo 1.12.2 1", + "casuarius 1.1 py27_0", + "configobj 4.7.2 py27_0", + "cubes 0.10.2 py27_3", + "curl 7.30.0 0", + "cython 0.19.1 py27_0", + "dateutil 2.1 py27_2", + "disco 0.4.4 py27_0", + "distribute 0.6.45 py27_0", + "docutils 0.11 py27_0", + "enaml 0.7.19 py27_1", + "erlang R15B01 0", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "gevent 0.13.8 py27_0", + "gevent-websocket 0.3.6 py27_2", + "gevent_zeromq 0.2.5 py27_2", + "greenlet 0.4.1 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.2.0 np16py27_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py27_3", + "ipython 1.0.0 py27_0", + "ipython-notebook 1.0.0 py27_0", + "ipython-qtconsole 1.0.0 py27_0", + "itsdangerous 0.23 py27_0", + "jinja2 2.7.1 py27_0", + "jpeg 8d 0", + "keyring 3.0.1 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.4.2 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np16py27_2", + "llvmpy 0.12.0 py27_0", + "lxml 3.2.3 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.0 np16py27_0", + "mdp 3.3 np16py27_0", + "meta 0.4.2.dev py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.5 np16py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np16py27_0", + "nose 1.3.0 py27_0", + "numba 0.10.2 np16py27_0", + "numexpr 2.0.1 np16py27_3", + "numpy 1.6.2 py27_4", + "opencv 2.4.6 np16py27_0", + "openssl 1.0.1c 0", + "pandas 0.12.0 np16py27_0", + "patsy 0.2.1 np16py27_0", + "pep8 1.4.6 py27_0", + "pip 1.4.1 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 1.0.1 py27_0", + "py 1.4.14 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.9.1 py27_0", + "pycrypto 2.6 py27_0", + "pycurl 7.19.0 py27_2", + "pyflakes 0.7.3 py27_0", + "pygments 1.6 py27_0", + "pyparsing 1.5.6 py27_0", + "pysal 1.6.0 np16py27_1", + "pysam 0.6 py27_0", + "pyside 1.2.1 py27_0", + "pytables 2.4.0 np16py27_0", + "pytest 2.3.5 py27_0", + "python 2.7.5 2", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.8.5 0", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py27_0", + "requests 1.2.3 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.8.2 np16py27_2", + "scikit-learn 0.14.1 np16py27_0", + "scipy 0.12.0 np16py27_0", + "shiboken 1.2.1 py27_0", + "six 1.4.1 py27_0", + "sphinx 1.1.3 py27_4", + "spyder 2.2.4 py27_0", + "spyder-app 2.2.4 py27_0", + "sqlalchemy 0.8.2 py27_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np16py27_0", + "sympy 0.7.3 py27_0", + "system 5.8 1", + "theano 0.5.0 np16py27_1", + "tk 8.5.13 0", + "tornado 3.1.1 py27_0", + "util-linux 2.21 0", + "vtk 5.10.1 py27_0", + "werkzeug 0.9.4 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "fbc1950efcc918eea8c71a1fa7ff683a", + "name": "anaconda", + "requires": [], + "size": 2080, + "version": "1.7.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np16py27_p3", + "numpy 1.6.2 py27_p4", + "scikit-learn 0.14.1 np16py27_p0", + "scipy 0.12.0 np16py27_p0" + ] + } + }, + "anaconda-1.7.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse 1.2.1 py26_0", + "astropy 0.2.4 np17py26_1", + "atom 0.3.2 py26_0", + "biopython 1.61 np17py26_0", + "bitarray 0.8.1 py26_0", + "boto 2.12.0 py26_0", + "cairo 1.12.2 1", + "casuarius 1.1 py26_0", + "configobj 4.7.2 py26_0", + "curl 7.30.0 0", + "cython 0.19.1 py26_0", + "dateutil 2.1 py26_2", + "disco 0.4.4 py26_0", + "distribute 0.6.45 py26_0", + "docutils 0.11 py26_0", + "dynd-python 0.4.2 np17py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "gevent 0.13.8 py26_0", + "gevent-websocket 0.3.6 py26_2", + "gevent_zeromq 0.2.5 py26_2", + "greenlet 0.4.1 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.2.0 np17py26_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py26_3", + "ipython 1.0.0 py26_0", + "itsdangerous 0.23 py26_0", + "jinja2 2.7.1 py26_0", + "jpeg 8d 0", + "libdynd 0.4.2 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np17py26_2", + "llvmpy 0.12.0 py26_0", + "lxml 3.2.3 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.0 np17py26_0", + "mdp 3.3 np17py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.5 np17py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np17py26_0", + "nose 1.3.0 py26_0", + "numba 0.10.2 np17py26_0", + "numexpr 2.0.1 np17py26_3", + "numpy 1.7.1 py26_0", + "opencv 2.4.6 np17py26_0", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.12.0 np17py26_0", + "patsy 0.2.1 np17py26_0", + "pep8 1.4.6 py26_0", + "pip 1.4.1 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 1.0.1 py26_0", + "py 1.4.14 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.9.1 py26_0", + "pycrypto 2.6 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.3 py26_0", + "pygments 1.6 py26_0", + "pyparsing 1.5.6 py26_0", + "pysam 0.6 py26_0", + "pytables 2.4.0 np17py26_0", + "pytest 2.3.5 py26_0", + "python 2.6.8 7", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py26_0", + "requests 1.2.3 py26_0", + "scikit-image 0.8.2 np17py26_2", + "scikit-learn 0.14.1 np17py26_0", + "scipy 0.12.0 np17py26_0", + "six 1.4.1 py26_0", + "sphinx 1.1.3 py26_4", + "sqlalchemy 0.8.2 py26_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np17py26_0", + "sympy 0.7.3 py26_0", + "system 5.8 1", + "theano 0.5.0 np17py26_1", + "tk 8.5.13 0", + "tornado 3.1.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "e34a3efcac1ca28e4fcfe932dc7fa290", + "name": "anaconda", + "requires": [], + "size": 1902, + "version": "1.7.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np17py26_p3", + "numpy 1.7.1 py26_p0", + "scikit-learn 0.14.1 np17py26_p0", + "scipy 0.12.0 np17py26_p0" + ] + } + }, + "anaconda-1.7.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "apptools 4.2.0 py27_0", + "astropy 0.2.4 np17py27_1", + "atom 0.3.2 py27_0", + "binstar 0.3.1 py27_0", + "biopython 1.61 np17py27_0", + "bitarray 0.8.1 py27_0", + "bokeh 0.1.1 np17py27_0", + "boto 2.12.0 py27_0", + "cairo 1.12.2 1", + "casuarius 1.1 py27_0", + "chaco 4.3.0 np17py27_1", + "configobj 4.7.2 py27_0", + "cubes 0.10.2 py27_3", + "curl 7.30.0 0", + "cython 0.19.1 py27_0", + "dateutil 2.1 py27_2", + "disco 0.4.4 py27_0", + "distribute 0.6.45 py27_0", + "docutils 0.11 py27_0", + "dynd-python 0.4.2 np17py27_0", + "enable 4.3.0 np17py27_0", + "enaml 0.7.19 py27_1", + "envisage 4.3.0 py27_0", + "erlang R15B01 0", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "gevent 0.13.8 py27_0", + "gevent-websocket 0.3.6 py27_2", + "gevent_zeromq 0.2.5 py27_2", + "greenlet 0.4.1 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.2.0 np17py27_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py27_3", + "ipython 1.0.0 py27_0", + "ipython-notebook 1.0.0 py27_0", + "ipython-qtconsole 1.0.0 py27_0", + "itsdangerous 0.23 py27_0", + "jinja2 2.7.1 py27_0", + "jpeg 8d 0", + "keyring 3.0.1 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.4.2 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np17py27_2", + "llvmpy 0.12.0 py27_0", + "lxml 3.2.3 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.0 np17py27_0", + "mayavi 4.3.0 np17py27_1", + "mdp 3.3 np17py27_0", + "meta 0.4.2.dev py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.5 np17py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np17py27_0", + "nose 1.3.0 py27_0", + "numba 0.10.2 np17py27_0", + "numexpr 2.0.1 np17py27_3", + "numpy 1.7.1 py27_0", + "opencv 2.4.6 np17py27_0", + "openssl 1.0.1c 0", + "pandas 0.12.0 np17py27_0", + "patsy 0.2.1 np17py27_0", + "pep8 1.4.6 py27_0", + "pip 1.4.1 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 1.0.1 py27_0", + "py 1.4.14 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.9.1 py27_0", + "pycrypto 2.6 py27_0", + "pycurl 7.19.0 py27_2", + "pyface 4.3.0 py27_0", + "pyflakes 0.7.3 py27_0", + "pygments 1.6 py27_0", + "pyparsing 1.5.6 py27_0", + "pysal 1.6.0 np17py27_1", + "pysam 0.6 py27_0", + "pyside 1.2.1 py27_0", + "pytables 2.4.0 np17py27_0", + "pytest 2.3.5 py27_0", + "python 2.7.5 2", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.8.5 0", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py27_0", + "requests 1.2.3 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.8.2 np17py27_2", + "scikit-learn 0.14.1 np17py27_0", + "scipy 0.12.0 np17py27_0", + "shiboken 1.2.1 py27_0", + "six 1.4.1 py27_0", + "sphinx 1.1.3 py27_4", + "spyder 2.2.4 py27_0", + "spyder-app 2.2.4 py27_0", + "sqlalchemy 0.8.2 py27_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np17py27_0", + "sympy 0.7.3 py27_0", + "system 5.8 1", + "theano 0.5.0 np17py27_1", + "tk 8.5.13 0", + "tornado 3.1.1 py27_0", + "traits 4.3.0 py27_0", + "traitsui 4.3.0 py27_0", + "util-linux 2.21 0", + "vtk 5.10.1 py27_0", + "werkzeug 0.9.4 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "027bbb50827aa14f1e708a63f46a9e1d", + "name": "anaconda", + "requires": [], + "size": 2205, + "version": "1.7.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.0.1 np17py27_p3", + "numpy 1.7.1 py27_p0", + "scikit-learn 0.14.1 np17py27_p0", + "scipy 0.12.0 np17py27_p0" + ] + } + }, + "anaconda-1.7.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astropy 0.2.4 np17py33_1", + "bitarray 0.8.1 py33_0", + "curl 7.30.0 0", + "cython 0.19.1 py33_0", + "dateutil 2.1 py33_2", + "distribute 0.6.45 py33_0", + "docutils 0.11 py33_0", + "dynd-python 0.4.2 np17py33_0", + "flask 0.10.1 py33_1", + "freetype 2.4.10 0", + "greenlet 0.4.1 py33_0", + "hdf5 1.8.9 0", + "ipython 1.0.0 py33_0", + "itsdangerous 0.23 py33_0", + "jinja2 2.7.1 py33_0", + "jpeg 8d 0", + "libdynd 0.4.2 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np17py33_2", + "llvmpy 0.12.0 py33_0", + "lxml 3.2.3 py33_0", + "markupsafe 0.18 py33_0", + "matplotlib 1.3.0 np17py33_0", + "mdp 3.3 np17py33_0", + "netcdf4 1.0.5 np17py33_0", + "networkx 1.8.1 py33_0", + "nose 1.3.0 py33_0", + "numba 0.10.2 np17py33_0", + "numpy 1.7.1 py33_0", + "openssl 1.0.1c 0", + "pandas 0.12.0 np17py33_0", + "patsy 0.2.1 np17py33_0", + "pillow 2.1.0 py33_0", + "pip 1.4.1 py33_0", + "ply 3.4 py33_0", + "psutil 1.0.1 py33_0", + "pycosat 0.6.0 py33_0", + "pycparser 2.9.1 py33_0", + "pycrypto 2.6 py33_0", + "pyflakes 0.7.3 py33_0", + "pygments 1.6 py33_0", + "pyparsing 1.5.6 py33_0", + "python 3.3.2 1", + "pytz 2013b py33_0", + "pyyaml 3.10 py33_0", + "pyzmq 2.2.0.1 py33_1", + "readline 6.2 0", + "requests 1.2.3 py33_0", + "scikit-image 0.8.2 np17py33_2", + "scipy 0.12.0 np17py33_0", + "six 1.4.1 py33_0", + "sphinx 1.1.3 py33_4", + "sqlalchemy 0.8.2 py33_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np17py33_0", + "sympy 0.7.3 py33_0", + "system 5.8 1", + "tk 8.5.13 0", + "tornado 3.1.1 py33_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py33_0", + "xlrd 0.9.2 py33_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "0f63c3f0a2161951eab578c8ee2246f1", + "name": "anaconda", + "requires": [], + "size": 1452, + "version": "1.7.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numpy 1.7.1 py33_p0", + "scipy 0.12.0 np17py33_p0" + ] + } + }, + "anaconda-1.8.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse 1.2.1 py26_0", + "astropy 0.2.5 np16py26_0", + "atom 0.3.4 py26_0", + "beautiful-soup 4.3.1 py26_0", + "biopython 1.62 np16py26_0", + "bitarray 0.8.1 py26_0", + "boto 2.15.0 py26_0", + "cairo 1.12.2 1", + "casuarius 1.1 py26_0", + "colorama 0.2.7 py26_0", + "configobj 4.7.2 py26_0", + "curl 7.30.0 0", + "cython 0.19.2 py26_0", + "dateutil 2.1 py26_2", + "disco 0.4.4 py26_0", + "distribute 0.6.45 py26_0", + "docutils 0.11 py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "gevent 0.13.8 py26_0", + "gevent-websocket 0.3.6 py26_2", + "gevent_zeromq 0.2.5 py26_2", + "greenlet 0.4.1 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.2.0 np16py26_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py26_3", + "ipython 1.1.0 py26_0", + "ipython-notebook 1.1.0 py26_0", + "itsdangerous 0.23 py26_0", + "jinja2 2.7.1 py26_0", + "jpeg 8d 0", + "libdynd 0.5.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np16py26_2", + "llvmpy 0.12.0 py26_0", + "lxml 3.2.3 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.1 np16py26_0", + "mdp 3.3 np16py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.6 np16py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np16py26_0", + "nose 1.3.0 py26_0", + "numba 0.11.0 np16py26_0", + "numexpr 2.2.2 np16py26_0", + "numpy 1.6.2 py26_4", + "opencv 2.4.6 np16py26_0", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.12.0 np16py26_0", + "patsy 0.2.1 np16py26_0", + "pep8 1.4.6 py26_0", + "pip 1.4.1 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 1.1.2 py26_0", + "py 1.4.17 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.9.1 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.3 py26_0", + "pygments 1.6 py26_0", + "pyparsing 1.5.6 py26_0", + "pysam 0.6 py26_0", + "pytables 3.0.0 np16py26_1", + "pytest 2.4.2 py26_0", + "python 2.6.9 0", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py26_0", + "requests 1.2.3 py26_0", + "scikit-image 0.9.3 np16py26_0", + "scikit-learn 0.14.1 np16py26_0", + "scipy 0.13.0 np16py26_0", + "six 1.4.1 py26_0", + "sphinx 1.1.3 py26_4", + "sqlalchemy 0.8.3 py26_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np16py26_0", + "sympy 0.7.3 py26_0", + "system 5.8 1", + "theano 0.5.0 np16py26_1", + "tk 8.5.13 0", + "tornado 3.1.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "b91b238ff641822ffb082f903ec25592", + "name": "anaconda", + "requires": [], + "size": 1942, + "version": "1.8.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.2.2 np16py26_p0", + "numpy 1.6.2 py26_p4", + "scikit-learn 0.14.1 np16py26_p0", + "scipy 0.13.0 np16py26_p0" + ] + } + }, + "anaconda-1.8.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "astropy 0.2.5 np16py27_0", + "atom 0.3.4 py27_0", + "beautiful-soup 4.3.1 py27_0", + "binstar 0.3.1 py27_1", + "biopython 1.62 np16py27_0", + "bitarray 0.8.1 py27_0", + "boto 2.15.0 py27_0", + "cairo 1.12.2 1", + "casuarius 1.1 py27_0", + "colorama 0.2.7 py27_0", + "configobj 4.7.2 py27_0", + "cubes 0.10.2 py27_3", + "curl 7.30.0 0", + "cython 0.19.2 py27_0", + "dateutil 2.1 py27_2", + "disco 0.4.4 py27_0", + "distribute 0.6.45 py27_0", + "docutils 0.11 py27_0", + "enaml 0.8.3 py27_0", + "erlang R15B01 0", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "gevent 0.13.8 py27_0", + "gevent-websocket 0.3.6 py27_2", + "gevent_zeromq 0.2.5 py27_2", + "greenlet 0.4.1 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.2.0 np16py27_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py27_3", + "ipython 1.1.0 py27_0", + "ipython-notebook 1.1.0 py27_0", + "ipython-qtconsole 1.1.0 py27_0", + "itsdangerous 0.23 py27_0", + "jinja2 2.7.1 py27_0", + "jpeg 8d 0", + "keyring 3.2 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.5.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np16py27_2", + "llvmpy 0.12.0 py27_0", + "lxml 3.2.3 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.1 np16py27_0", + "mdp 3.3 np16py27_0", + "meta 0.4.2.dev py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.6 np16py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np16py27_0", + "nose 1.3.0 py27_0", + "numba 0.11.0 np16py27_0", + "numexpr 2.2.2 np16py27_0", + "numpy 1.6.2 py27_4", + "opencv 2.4.6 np16py27_0", + "openpyxl 1.6.2 py27_0", + "openssl 1.0.1c 0", + "pandas 0.12.0 np16py27_0", + "patsy 0.2.1 np16py27_0", + "pep8 1.4.6 py27_0", + "pip 1.4.1 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 1.1.2 py27_0", + "py 1.4.17 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.9.1 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.0 py27_2", + "pyflakes 0.7.3 py27_0", + "pygments 1.6 py27_0", + "pyparsing 1.5.6 py27_0", + "pysal 1.6.0 np16py27_1", + "pysam 0.6 py27_0", + "pyside 1.2.1 py27_0", + "pytables 3.0.0 np16py27_1", + "pytest 2.4.2 py27_0", + "python 2.7.5 3", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.8.5 0", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py27_0", + "requests 1.2.3 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.9.3 np16py27_0", + "scikit-learn 0.14.1 np16py27_0", + "scipy 0.13.0 np16py27_0", + "shiboken 1.2.1 py27_0", + "six 1.4.1 py27_0", + "sphinx 1.1.3 py27_4", + "spyder 2.2.5 py27_0", + "spyder-app 2.2.5 py27_0", + "sqlalchemy 0.8.3 py27_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np16py27_0", + "sympy 0.7.3 py27_0", + "system 5.8 1", + "theano 0.5.0 np16py27_1", + "tk 8.5.13 0", + "tornado 3.1.1 py27_0", + "util-linux 2.21 0", + "vtk 5.10.1 py27_1", + "werkzeug 0.9.4 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "0c3255a2cffbf0fde5a1859423254233", + "name": "anaconda", + "requires": [], + "size": 2130, + "version": "1.8.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.2.2 np16py27_p0", + "numpy 1.6.2 py27_p4", + "scikit-learn 0.14.1 np16py27_p0", + "scipy 0.13.0 np16py27_p0" + ] + } + }, + "anaconda-1.8.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse 1.2.1 py26_0", + "astropy 0.2.5 np17py26_0", + "atom 0.3.4 py26_0", + "beautiful-soup 4.3.1 py26_0", + "biopython 1.62 np17py26_0", + "bitarray 0.8.1 py26_0", + "boto 2.15.0 py26_0", + "cairo 1.12.2 1", + "casuarius 1.1 py26_0", + "colorama 0.2.7 py26_0", + "configobj 4.7.2 py26_0", + "curl 7.30.0 0", + "cython 0.19.2 py26_0", + "dateutil 2.1 py26_2", + "disco 0.4.4 py26_0", + "distribute 0.6.45 py26_0", + "docutils 0.11 py26_0", + "dynd-python 0.5.0 np17py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "gevent 0.13.8 py26_0", + "gevent-websocket 0.3.6 py26_2", + "gevent_zeromq 0.2.5 py26_2", + "greenlet 0.4.1 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.2.0 np17py26_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py26_3", + "ipython 1.1.0 py26_0", + "ipython-notebook 1.1.0 py26_0", + "itsdangerous 0.23 py26_0", + "jinja2 2.7.1 py26_0", + "jpeg 8d 0", + "libdynd 0.5.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np17py26_2", + "llvmpy 0.12.0 py26_0", + "lxml 3.2.3 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.1 np17py26_0", + "mdp 3.3 np17py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.6 np17py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np17py26_0", + "nose 1.3.0 py26_0", + "numba 0.11.0 np17py26_0", + "numexpr 2.2.2 np17py26_0", + "numpy 1.7.1 py26_0", + "opencv 2.4.6 np17py26_0", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.12.0 np17py26_0", + "patsy 0.2.1 np17py26_0", + "pep8 1.4.6 py26_0", + "pip 1.4.1 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 1.1.2 py26_0", + "py 1.4.17 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.9.1 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.3 py26_0", + "pygments 1.6 py26_0", + "pyparsing 1.5.6 py26_0", + "pysam 0.6 py26_0", + "pytables 3.0.0 np17py26_1", + "pytest 2.4.2 py26_0", + "python 2.6.9 0", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py26_0", + "requests 1.2.3 py26_0", + "scikit-image 0.9.3 np17py26_0", + "scikit-learn 0.14.1 np17py26_0", + "scipy 0.13.0 np17py26_0", + "six 1.4.1 py26_0", + "sphinx 1.1.3 py26_4", + "sqlalchemy 0.8.3 py26_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np17py26_0", + "sympy 0.7.3 py26_0", + "system 5.8 1", + "theano 0.5.0 np17py26_1", + "tk 8.5.13 0", + "tornado 3.1.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "7556a069f8b99973859aa49a848ce24f", + "name": "anaconda", + "requires": [], + "size": 1966, + "version": "1.8.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.2.2 np17py26_p0", + "numpy 1.7.1 py26_p0", + "scikit-learn 0.14.1 np17py26_p0", + "scipy 0.13.0 np17py26_p0" + ] + } + }, + "anaconda-1.8.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "apptools 4.2.0 py27_0", + "astropy 0.2.5 np17py27_0", + "atom 0.3.4 py27_0", + "beautiful-soup 4.3.1 py27_0", + "binstar 0.3.1 py27_1", + "biopython 1.62 np17py27_0", + "bitarray 0.8.1 py27_0", + "blaze 0.3 np17py27_0", + "bokeh 0.2 np17py27_1", + "boto 2.15.0 py27_0", + "cairo 1.12.2 1", + "casuarius 1.1 py27_0", + "chaco 4.3.0 np17py27_1", + "colorama 0.2.7 py27_0", + "configobj 4.7.2 py27_0", + "cubes 0.10.2 py27_3", + "curl 7.30.0 0", + "cython 0.19.2 py27_0", + "dateutil 2.1 py27_2", + "disco 0.4.4 py27_0", + "distribute 0.6.45 py27_0", + "docutils 0.11 py27_0", + "dynd-python 0.5.0 np17py27_0", + "enable 4.3.0 np17py27_0", + "enaml 0.8.3 py27_0", + "envisage 4.3.0 py27_0", + "erlang R15B01 0", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "gevent 0.13.8 py27_0", + "gevent-websocket 0.3.6 py27_2", + "gevent_zeromq 0.2.5 py27_2", + "greenlet 0.4.1 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.2.0 np17py27_0", + "hdf5 1.8.9 0", + "imaging 1.1.7 py27_3", + "ipython 1.1.0 py27_0", + "ipython-notebook 1.1.0 py27_0", + "ipython-qtconsole 1.1.0 py27_0", + "itsdangerous 0.23 py27_0", + "jinja2 2.7.1 py27_0", + "jpeg 8d 0", + "keyring 3.2 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.5.0 0", + "libevent 2.0.20 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np17py27_2", + "llvmpy 0.12.0 py27_0", + "lxml 3.2.3 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.1 np17py27_0", + "mayavi 4.3.0 np17py27_2", + "mdp 3.3 np17py27_0", + "meta 0.4.2.dev py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.6 np17py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np17py27_0", + "nose 1.3.0 py27_0", + "numba 0.11.0 np17py27_0", + "numexpr 2.2.2 np17py27_0", + "numpy 1.7.1 py27_0", + "opencv 2.4.6 np17py27_0", + "openpyxl 1.6.2 py27_0", + "openssl 1.0.1c 0", + "pandas 0.12.0 np17py27_0", + "patsy 0.2.1 np17py27_0", + "pep8 1.4.6 py27_0", + "pip 1.4.1 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 1.1.2 py27_0", + "py 1.4.17 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.9.1 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.0 py27_2", + "pyface 4.3.0 py27_0", + "pyflakes 0.7.3 py27_0", + "pygments 1.6 py27_0", + "pykit 0.1.0 np17py27_0", + "pyparsing 1.5.6 py27_0", + "pysal 1.6.0 np17py27_1", + "pysam 0.6 py27_0", + "pyside 1.2.1 py27_0", + "pytables 3.0.0 np17py27_1", + "pytest 2.4.2 py27_0", + "python 2.7.5 3", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.8.5 0", + "readline 6.2 0", + "redis 2.6.9 0", + "redis-py 2.7.2 py27_0", + "requests 1.2.3 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.9.3 np17py27_0", + "scikit-learn 0.14.1 np17py27_0", + "scipy 0.13.0 np17py27_0", + "shiboken 1.2.1 py27_0", + "six 1.4.1 py27_0", + "sphinx 1.1.3 py27_4", + "spyder 2.2.5 py27_0", + "spyder-app 2.2.5 py27_0", + "sqlalchemy 0.8.3 py27_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np17py27_0", + "sympy 0.7.3 py27_0", + "system 5.8 1", + "theano 0.5.0 np17py27_1", + "tk 8.5.13 0", + "tornado 3.1.1 py27_0", + "traits 4.3.0 py27_0", + "traitsui 4.3.0 py27_0", + "util-linux 2.21 0", + "vtk 5.10.1 py27_1", + "werkzeug 0.9.4 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "90edde2448027f812c41eba2ea37e1f2", + "name": "anaconda", + "requires": [], + "size": 2254, + "version": "1.8.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.2.2 np17py27_p0", + "numpy 1.7.1 py27_p0", + "scikit-learn 0.14.1 np17py27_p0", + "scipy 0.13.0 np17py27_p0" + ] + } + }, + "anaconda-1.8.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astropy 0.2.5 np17py33_0", + "beautiful-soup 4.3.1 py33_0", + "bitarray 0.8.1 py33_0", + "colorama 0.2.7 py33_0", + "curl 7.30.0 0", + "cython 0.19.2 py33_0", + "dateutil 2.1 py33_2", + "distribute 0.6.45 py33_0", + "docutils 0.11 py33_0", + "dynd-python 0.5.0 np17py33_0", + "flask 0.10.1 py33_1", + "freetype 2.4.10 0", + "greenlet 0.4.1 py33_0", + "hdf5 1.8.9 0", + "ipython 1.1.0 py33_0", + "ipython-notebook 1.1.0 py33_0", + "itsdangerous 0.23 py33_0", + "jinja2 2.7.1 py33_0", + "jpeg 8d 0", + "libdynd 0.5.0 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmmath 0.1.1 np17py33_2", + "llvmpy 0.12.0 py33_0", + "lxml 3.2.3 py33_0", + "markupsafe 0.18 py33_0", + "matplotlib 1.3.1 np17py33_0", + "mdp 3.3 np17py33_0", + "netcdf4 1.0.6 np17py33_0", + "networkx 1.8.1 py33_0", + "nose 1.3.0 py33_0", + "numba 0.11.0 np17py33_0", + "numexpr 2.2.2 np17py33_0", + "numpy 1.7.1 py33_0", + "openpyxl 1.6.2 py33_0", + "openssl 1.0.1c 0", + "pandas 0.12.0 np17py33_0", + "patsy 0.2.1 np17py33_0", + "pillow 2.1.0 py33_0", + "pip 1.4.1 py33_0", + "ply 3.4 py33_0", + "psutil 1.1.2 py33_0", + "pycosat 0.6.0 py33_0", + "pycparser 2.9.1 py33_0", + "pycrypto 2.6.1 py33_0", + "pyflakes 0.7.3 py33_0", + "pygments 1.6 py33_0", + "pyparsing 1.5.6 py33_0", + "pytables 3.0.0 np17py33_1", + "python 3.3.2 1", + "pytz 2013b py33_0", + "pyyaml 3.10 py33_0", + "pyzmq 2.2.0.1 py33_1", + "readline 6.2 0", + "requests 1.2.3 py33_0", + "scikit-image 0.9.3 np17py33_0", + "scipy 0.13.0 np17py33_0", + "six 1.4.1 py33_0", + "sphinx 1.1.3 py33_4", + "sqlalchemy 0.8.3 py33_0", + "sqlite 3.7.13 0", + "statsmodels 0.5.0 np17py33_0", + "sympy 0.7.3 py33_0", + "system 5.8 1", + "tk 8.5.13 0", + "tornado 3.1.1 py33_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py33_0", + "xlrd 0.9.2 py33_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "bd15d6538e83fd3d6353d853f2125ccc", + "name": "anaconda", + "requires": [], + "size": 1535, + "version": "1.8.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.0 p0", + "numexpr 2.2.2 np17py33_p0", + "numpy 1.7.1 py33_p0", + "scipy 0.13.0 np17py33_p0" + ] + } + }, + "anaconda-1.9.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py26_0", + "argparse 1.2.1 py26_0", + "astropy 0.3.0 np18py26_0", + "atom 0.3.6 py26_0", + "beautiful-soup 4.3.1 py26_0", + "biopython 1.63 np18py26_0", + "bitarray 0.8.1 py26_0", + "blaze 0.4.1 np18py26_0", + "blz 0.6.1 np18py26_0", + "boto 2.24.0 py26_0", + "cairo 1.12.2 2", + "casuarius 1.1 py26_0", + "cdecimal 2.3 py26_0", + "colorama 0.2.7 py26_0", + "configobj 4.7.2 py26_0", + "curl 7.30.0 0", + "cython 0.20 py26_0", + "datashape 0.1.0 np18py26_0", + "dateutil 2.1 py26_2", + "disco 0.4.4 py26_0", + "docutils 0.11 py26_0", + "dynd-python 0.6.0 np18py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "future 0.11.2 py26_0", + "gevent 1.0 py26_0", + "gevent-websocket 0.9.2 py26_0", + "gevent_zeromq 0.2.5 py26_3", + "greenlet 0.4.2 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.2.1 np18py26_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py26_0", + "ipython-notebook 1.1.0 py26_1", + "itsdangerous 0.23 py26_0", + "jinja2 2.7.2 py26_0", + "jpeg 8d 0", + "kiwisolver 0.1.2 py26_0", + "libdynd 0.6.0 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.2 py26_0", + "lxml 3.2.3 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.1 np18py26_0", + "mdp 3.3 np18py26_0", + "mock 1.0.1 py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.7 np18py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np18py26_0", + "nose 1.3.0 py26_0", + "numba 0.12.0 np18py26_0", + "numexpr 2.3.0 np18py26_0", + "numpy 1.8.0 py26_0", + "opencv 2.4.6 np18py26_0", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.13.0 np18py26_0", + "patsy 0.2.1 np18py26_0", + "pep8 1.4.6 py26_0", + "pil 1.1.7 py26_0", + "pip 1.5.2 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 1.2.1 py26_0", + "py 1.4.20 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.10 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.3 py26_0", + "pygments 1.6 py26_0", + "pykit 0.1.0 np18py26_2", + "pyparsing 2.0.1 py26_0", + "pysam 0.6 py26_0", + "pytables 3.1.0 np18py26_0", + "pytest 2.5.2 py26_0", + "python 2.6.9 0", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py26_0", + "requests 2.2.1 py26_0", + "scikit-image 0.9.3 np18py26_0", + "scikit-learn 0.14.1 np18py26_1", + "scipy 0.13.3 np18py26_0", + "setuptools 2.1 py26_0", + "six 1.5.2 py26_0", + "sphinx 1.2.1 py26_0", + "sqlalchemy 0.9.2 py26_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py26_0", + "statsmodels 0.5.0 np18py26_0", + "sympy 0.7.4.1 py26_0", + "system 5.8 1", + "theano 0.6.0 np18py26_0", + "tk 8.5.13 0", + "tornado 3.2.0 py26_0", + "traits 4.4.0 py26_0", + "ujson 1.33 py26_0", + "unittest2 0.5.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py26_0", + "xlrd 0.9.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "b21f813ee05e0ae2f06790dcdcfdba0e", + "name": "anaconda", + "requires": [], + "size": 2823, + "version": "1.9.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.0 np18py26_p0", + "numpy 1.8.0 py26_p0", + "scikit-learn 0.14.1 np18py26_p1", + "scipy 0.13.3 np18py26_p0" + ] + } + }, + "anaconda-1.9.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "apptools 4.2.1 py27_0", + "argcomplete 0.6.7 py27_0", + "astropy 0.3.0 np18py27_0", + "atom 0.3.6 py27_0", + "beautiful-soup 4.3.1 py27_0", + "binstar 0.4.4 py27_1", + "biopython 1.63 np18py27_0", + "bitarray 0.8.1 py27_0", + "blaze 0.4.1 np18py27_0", + "blz 0.6.1 np18py27_0", + "bokeh 0.4 np18py27_0", + "boto 2.24.0 py27_0", + "cairo 1.12.2 2", + "casuarius 1.1 py27_0", + "cdecimal 2.3 py27_0", + "chaco 4.4.1 np18py27_0", + "colorama 0.2.7 py27_0", + "configobj 4.7.2 py27_0", + "cubes 0.10.2 py27_4", + "curl 7.30.0 0", + "cython 0.20 py27_0", + "datashape 0.1.0 np18py27_0", + "dateutil 2.1 py27_2", + "disco 0.4.4 py27_0", + "docutils 0.11 py27_0", + "dynd-python 0.6.0 np18py27_0", + "enable 4.3.0 np18py27_1", + "enaml 0.9.0 py27_0", + "envisage 4.4.0 py27_1", + "erlang R15B01 0", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "future 0.11.2 py27_0", + "gevent 1.0 py27_0", + "gevent-websocket 0.9.2 py27_0", + "gevent_zeromq 0.2.5 py27_3", + "greenlet 0.4.2 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.2.1 np18py27_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py27_0", + "ipython-notebook 1.1.0 py27_1", + "ipython-qtconsole 1.1.0 py27_1", + "itsdangerous 0.23 py27_0", + "jinja2 2.7.2 py27_0", + "jpeg 8d 0", + "keyring 3.3 py27_0", + "kiwisolver 0.1.2 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.6.0 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.2 py27_0", + "lxml 3.2.3 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.1 np18py27_0", + "mayavi 4.3.1 np18py27_0", + "mdp 3.3 np18py27_0", + "mock 1.0.1 py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.7 np18py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np18py27_0", + "nose 1.3.0 py27_0", + "numba 0.12.0 np18py27_0", + "numexpr 2.3.0 np18py27_0", + "numpy 1.8.0 py27_0", + "opencv 2.4.6 np18py27_0", + "openpyxl 1.8.2 py27_0", + "openssl 1.0.1c 0", + "pandas 0.13.0 np18py27_0", + "patsy 0.2.1 np18py27_0", + "pep8 1.4.6 py27_0", + "pil 1.1.7 py27_0", + "pip 1.5.2 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 1.2.1 py27_0", + "py 1.4.20 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.10 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.0 py27_2", + "pyface 4.4.0 py27_0", + "pyflakes 0.7.3 py27_0", + "pygments 1.6 py27_0", + "pykit 0.1.0 np18py27_2", + "pyparsing 2.0.1 py27_0", + "pysal 1.6.0 np18py27_1", + "pysam 0.6 py27_0", + "pyside 1.2.1 py27_0", + "pytables 3.1.0 np18py27_0", + "pytest 2.5.2 py27_0", + "python 2.7.6 1", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py27_0", + "requests 2.2.1 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.9.3 np18py27_0", + "scikit-learn 0.14.1 np18py27_1", + "scipy 0.13.3 np18py27_0", + "setuptools 2.1 py27_0", + "shiboken 1.2.1 py27_0", + "six 1.5.2 py27_0", + "sphinx 1.2.1 py27_0", + "spyder 2.2.5 py27_0", + "spyder-app 2.2.5 py27_1", + "sqlalchemy 0.9.2 py27_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.5.0 np18py27_0", + "sympy 0.7.4.1 py27_0", + "system 5.8 1", + "theano 0.6.0 np18py27_0", + "tk 8.5.13 0", + "tornado 3.2.0 py27_0", + "traits 4.4.0 py27_0", + "traitsui 4.4.0 py27_0", + "ujson 1.33 py27_0", + "util-linux 2.21 0", + "vtk 5.10.1 py27_1", + "werkzeug 0.9.4 py27_0", + "xlrd 0.9.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "1560e72957cc1fcc18f3307de453f301", + "name": "anaconda", + "requires": [], + "size": 3115, + "version": "1.9.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.0 np18py27_p0", + "numpy 1.8.0 py27_p0", + "scikit-learn 0.14.1 np18py27_p1", + "scipy 0.13.3 np18py27_p0" + ] + } + }, + "anaconda-1.9.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py33_0", + "astropy 0.3.0 np18py33_0", + "beautiful-soup 4.3.1 py33_0", + "bitarray 0.8.1 py33_0", + "blaze 0.4.1 np18py33_0", + "blz 0.6.1 np18py33_0", + "bokeh 0.4 np18py33_0", + "cdecimal 2.3 py33_0", + "colorama 0.2.7 py33_0", + "curl 7.30.0 0", + "cython 0.20 py33_0", + "datashape 0.1.0 np18py33_0", + "dateutil 2.1 py33_2", + "docutils 0.11 py33_0", + "dynd-python 0.6.0 np18py33_0", + "flask 0.10.1 py33_1", + "freetype 2.4.10 0", + "future 0.11.2 py33_0", + "greenlet 0.4.2 py33_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py33_0", + "ipython-notebook 1.1.0 py33_1", + "itsdangerous 0.23 py33_0", + "jinja2 2.7.2 py33_0", + "jpeg 8d 0", + "libdynd 0.6.0 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.2 py33_0", + "lxml 3.2.3 py33_0", + "markupsafe 0.18 py33_0", + "matplotlib 1.3.1 np18py33_0", + "mdp 3.3 np18py33_0", + "mock 1.0.1 py33_0", + "netcdf4 1.0.7 np18py33_0", + "networkx 1.8.1 py33_0", + "nose 1.3.0 py33_0", + "numba 0.12.0 np18py33_0", + "numexpr 2.3.0 np18py33_0", + "numpy 1.8.0 py33_0", + "openpyxl 1.8.2 py33_0", + "openssl 1.0.1c 0", + "pandas 0.13.0 np18py33_0", + "patsy 0.2.1 np18py33_0", + "pillow 2.1.0 py33_0", + "pip 1.5.2 py33_0", + "ply 3.4 py33_0", + "psutil 1.2.1 py33_0", + "py 1.4.20 py33_0", + "pycosat 0.6.0 py33_0", + "pycparser 2.10 py33_0", + "pycrypto 2.6.1 py33_0", + "pyflakes 0.7.3 py33_0", + "pygments 1.6 py33_0", + "pykit 0.1.0 np18py33_2", + "pyparsing 2.0.1 py33_0", + "pytables 3.1.0 np18py33_0", + "pytest 2.5.2 py33_0", + "python 3.3.3 0", + "pytz 2013b py33_0", + "pyyaml 3.10 py33_0", + "pyzmq 2.2.0.1 py33_1", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py33_0", + "requests 2.2.1 py33_0", + "scikit-image 0.9.3 np18py33_0", + "scikit-learn 0.14.1 np18py33_1", + "scipy 0.13.3 np18py33_0", + "setuptools 2.1 py33_0", + "six 1.5.2 py33_0", + "sphinx 1.2.1 py33_0", + "sqlalchemy 0.9.2 py33_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py33_0", + "statsmodels 0.5.0 np18py33_0", + "sympy 0.7.4.1 py33_0", + "system 5.8 1", + "tk 8.5.13 0", + "tornado 3.2.0 py33_0", + "ujson 1.33 py33_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py33_0", + "xlrd 0.9.2 py33_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "c5eec80eefdd845fbbce93e9affebde9", + "name": "anaconda", + "requires": [], + "size": 2404, + "version": "1.9.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.0 np18py33_p0", + "numpy 1.8.0 py33_p0", + "scikit-learn 0.14.1 np18py33_p1", + "scipy 0.13.3 np18py33_p0" + ] + } + }, + "anaconda-1.9.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py26_0", + "argparse 1.2.1 py26_0", + "astropy 0.3.0 np18py26_0", + "atom 0.3.7 py26_0", + "beautiful-soup 4.3.1 py26_0", + "biopython 1.63 np18py26_0", + "bitarray 0.8.1 py26_0", + "blaze 0.4.2 np18py26_0", + "blz 0.6.1 np18py26_0", + "boto 2.25.0 py26_0", + "cairo 1.12.2 2", + "casuarius 1.1 py26_0", + "cdecimal 2.3 py26_0", + "colorama 0.2.7 py26_0", + "configobj 4.7.2 py26_0", + "curl 7.30.0 0", + "cython 0.20.1 py26_0", + "datashape 0.1.1 np18py26_0", + "dateutil 2.1 py26_2", + "disco 0.4.4 py26_0", + "docutils 0.11 py26_0", + "dynd-python 0.6.1 np18py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "future 0.11.2 py26_0", + "gevent 1.0 py26_0", + "gevent-websocket 0.9.2 py26_0", + "gevent_zeromq 0.2.5 py26_3", + "greenlet 0.4.2 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.2.1 np18py26_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py26_0", + "ipython-notebook 1.1.0 py26_1", + "itsdangerous 0.23 py26_0", + "jinja2 2.7.2 py26_0", + "jpeg 8d 0", + "kiwisolver 0.1.2 py26_0", + "libdynd 0.6.1 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.3 py26_0", + "lxml 3.3.1 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.1 np18py26_0", + "mdp 3.3 np18py26_0", + "mock 1.0.1 py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.8 np18py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np18py26_0", + "nose 1.3.0 py26_0", + "numba 0.12.1 np18py26_0", + "numexpr 2.3.1 np18py26_0", + "numpy 1.8.0 py26_0", + "opencv 2.4.6 np18py26_0", + "openssl 1.0.1c 0", + "ordereddict 1.1 py26_0", + "pandas 0.13.1 np18py26_0", + "patsy 0.2.1 np18py26_0", + "pep8 1.4.6 py26_0", + "pil 1.1.7 py26_0", + "pip 1.5.2 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 1.2.1 py26_0", + "py 1.4.20 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.10 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.3 py26_0", + "pygments 1.6 py26_0", + "pykit 0.2.0 np18py26_0", + "pyparsing 2.0.1 py26_0", + "pysam 0.6 py26_0", + "pytables 3.1.0 np18py26_0", + "pytest 2.5.2 py26_0", + "python 2.6.9 0", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py26_0", + "requests 2.2.1 py26_0", + "scikit-image 0.9.3 np18py26_0", + "scikit-learn 0.14.1 np18py26_1", + "scipy 0.13.3 np18py26_0", + "setuptools 2.2 py26_0", + "six 1.5.2 py26_0", + "sphinx 1.2.1 py26_0", + "sqlalchemy 0.9.2 py26_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py26_0", + "statsmodels 0.5.0 np18py26_0", + "sympy 0.7.4.1 py26_0", + "system 5.8 1", + "theano 0.6.0 np18py26_0", + "tk 8.5.13 0", + "tornado 3.2.0 py26_0", + "traits 4.4.0 py26_0", + "ujson 1.33 py26_0", + "unittest2 0.5.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py26_0", + "xlrd 0.9.2 py26_0", + "xlsxwriter 0.5.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "f1410ea6b3199825bf36a8fddaf2a235", + "name": "anaconda", + "requires": [], + "size": 2813, + "version": "1.9.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py26_p0", + "numpy 1.8.0 py26_p0", + "scikit-learn 0.14.1 np18py26_p1", + "scipy 0.13.3 np18py26_p0" + ] + } + }, + "anaconda-1.9.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "apptools 4.2.1 py27_0", + "argcomplete 0.6.7 py27_0", + "astropy 0.3.0 np18py27_0", + "atom 0.3.7 py27_0", + "beautiful-soup 4.3.1 py27_0", + "binstar 0.4.4 py27_1", + "biopython 1.63 np18py27_0", + "bitarray 0.8.1 py27_0", + "blaze 0.4.2 np18py27_0", + "blz 0.6.1 np18py27_0", + "bokeh 0.4.1 np18py27_0", + "boto 2.25.0 py27_0", + "cairo 1.12.2 2", + "casuarius 1.1 py27_0", + "cdecimal 2.3 py27_0", + "chaco 4.4.1 np18py27_0", + "colorama 0.2.7 py27_0", + "configobj 4.7.2 py27_0", + "cubes 0.10.2 py27_4", + "curl 7.30.0 0", + "cython 0.20.1 py27_0", + "datashape 0.1.1 np18py27_0", + "dateutil 2.1 py27_2", + "disco 0.4.4 py27_0", + "docutils 0.11 py27_0", + "dynd-python 0.6.1 np18py27_0", + "enable 4.3.0 np18py27_1", + "enaml 0.9.1 py27_0", + "envisage 4.4.0 py27_1", + "erlang R15B01 0", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "future 0.11.2 py27_0", + "gevent 1.0 py27_0", + "gevent-websocket 0.9.2 py27_0", + "gevent_zeromq 0.2.5 py27_3", + "greenlet 0.4.2 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.2.1 np18py27_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py27_0", + "ipython-notebook 1.1.0 py27_1", + "ipython-qtconsole 1.1.0 py27_1", + "itsdangerous 0.23 py27_0", + "jinja2 2.7.2 py27_0", + "jpeg 8d 0", + "keyring 3.3 py27_0", + "kiwisolver 0.1.2 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.6.1 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.3 py27_0", + "lxml 3.3.1 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.1 np18py27_0", + "mayavi 4.3.1 np18py27_0", + "mdp 3.3 np18py27_0", + "mock 1.0.1 py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.8 np18py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np18py27_0", + "nose 1.3.0 py27_0", + "numba 0.12.1 np18py27_0", + "numexpr 2.3.1 np18py27_0", + "numpy 1.8.0 py27_0", + "opencv 2.4.6 np18py27_0", + "openpyxl 1.8.2 py27_1", + "openssl 1.0.1c 0", + "pandas 0.13.1 np18py27_0", + "patsy 0.2.1 np18py27_0", + "pep8 1.4.6 py27_0", + "pil 1.1.7 py27_0", + "pip 1.5.2 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 1.2.1 py27_0", + "py 1.4.20 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.10 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.0 py27_2", + "pyface 4.4.0 py27_0", + "pyflakes 0.7.3 py27_0", + "pygments 1.6 py27_0", + "pykit 0.2.0 np18py27_0", + "pyparsing 2.0.1 py27_0", + "pysal 1.6.0 np18py27_1", + "pysam 0.6 py27_0", + "pyside 1.2.1 py27_0", + "pytables 3.1.0 np18py27_0", + "pytest 2.5.2 py27_0", + "python 2.7.6 1", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py27_0", + "requests 2.2.1 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.9.3 np18py27_0", + "scikit-learn 0.14.1 np18py27_1", + "scipy 0.13.3 np18py27_0", + "setuptools 2.2 py27_0", + "shiboken 1.2.1 py27_0", + "six 1.5.2 py27_0", + "sphinx 1.2.1 py27_0", + "spyder 2.2.5 py27_0", + "spyder-app 2.2.5 py27_1", + "sqlalchemy 0.9.2 py27_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.5.0 np18py27_0", + "sympy 0.7.4.1 py27_0", + "system 5.8 1", + "theano 0.6.0 np18py27_0", + "tk 8.5.13 0", + "tornado 3.2.0 py27_0", + "traits 4.4.0 py27_0", + "traitsui 4.4.0 py27_0", + "ujson 1.33 py27_0", + "util-linux 2.21 0", + "vtk 5.10.1 py27_1", + "werkzeug 0.9.4 py27_0", + "xlrd 0.9.2 py27_0", + "xlsxwriter 0.5.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "319724885ccd2dbc1f3173a77ebc1aaf", + "name": "anaconda", + "requires": [], + "size": 3121, + "version": "1.9.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py27_p0", + "numpy 1.8.0 py27_p0", + "scikit-learn 0.14.1 np18py27_p1", + "scipy 0.13.3 np18py27_p0" + ] + } + }, + "anaconda-1.9.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py33_0", + "astropy 0.3.0 np18py33_0", + "beautiful-soup 4.3.1 py33_0", + "bitarray 0.8.1 py33_0", + "blaze 0.4.2 np18py33_0", + "blz 0.6.1 np18py33_0", + "bokeh 0.4.1 np18py33_0", + "cdecimal 2.3 py33_0", + "colorama 0.2.7 py33_0", + "curl 7.30.0 0", + "cython 0.20.1 py33_0", + "datashape 0.1.1 np18py33_0", + "dateutil 2.1 py33_2", + "docutils 0.11 py33_0", + "dynd-python 0.6.1 np18py33_0", + "flask 0.10.1 py33_1", + "freetype 2.4.10 0", + "future 0.11.2 py33_0", + "greenlet 0.4.2 py33_0", + "h5py 2.2.1 np18py33_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py33_0", + "ipython-notebook 1.1.0 py33_1", + "itsdangerous 0.23 py33_0", + "jinja2 2.7.2 py33_0", + "jpeg 8d 0", + "libdynd 0.6.1 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.3 py33_0", + "lxml 3.3.1 py33_0", + "markupsafe 0.18 py33_0", + "matplotlib 1.3.1 np18py33_0", + "mdp 3.3 np18py33_0", + "mock 1.0.1 py33_0", + "netcdf4 1.0.8 np18py33_0", + "networkx 1.8.1 py33_0", + "nose 1.3.0 py33_0", + "numba 0.12.1 np18py33_0", + "numexpr 2.3.1 np18py33_0", + "numpy 1.8.0 py33_0", + "openpyxl 1.8.2 py33_1", + "openssl 1.0.1c 0", + "pandas 0.13.1 np18py33_0", + "patsy 0.2.1 np18py33_0", + "pillow 2.1.0 py33_0", + "pip 1.5.2 py33_0", + "ply 3.4 py33_0", + "psutil 1.2.1 py33_0", + "py 1.4.20 py33_0", + "pycosat 0.6.0 py33_0", + "pycparser 2.10 py33_0", + "pycrypto 2.6.1 py33_0", + "pyflakes 0.7.3 py33_0", + "pygments 1.6 py33_0", + "pykit 0.2.0 np18py33_0", + "pyparsing 2.0.1 py33_0", + "pytables 3.1.0 np18py33_0", + "pytest 2.5.2 py33_0", + "python 3.3.4 0", + "pytz 2013b py33_0", + "pyyaml 3.10 py33_0", + "pyzmq 2.2.0.1 py33_1", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py33_0", + "requests 2.2.1 py33_0", + "scikit-image 0.9.3 np18py33_0", + "scikit-learn 0.14.1 np18py33_1", + "scipy 0.13.3 np18py33_0", + "setuptools 2.2 py33_0", + "six 1.5.2 py33_0", + "sphinx 1.2.1 py33_0", + "sqlalchemy 0.9.2 py33_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py33_0", + "statsmodels 0.5.0 np18py33_0", + "sympy 0.7.4.1 py33_0", + "system 5.8 1", + "tk 8.5.13 0", + "tornado 3.2.0 py33_0", + "ujson 1.33 py33_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py33_0", + "xlrd 0.9.2 py33_0", + "xlsxwriter 0.5.2 py33_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "12354fb74b1457e3d52ea2b56888bea7", + "name": "anaconda", + "requires": [], + "size": 2437, + "version": "1.9.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py33_p0", + "numpy 1.8.0 py33_p0", + "scikit-learn 0.14.1 np18py33_p1", + "scipy 0.13.3 np18py33_p0" + ] + } + }, + "anaconda-1.9.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py26_0", + "argparse 1.2.1 py26_0", + "astropy 0.3.0 np18py26_0", + "atom 0.3.7 py26_0", + "beautiful-soup 4.3.1 py26_0", + "biopython 1.63 np18py26_0", + "bitarray 0.8.1 py26_0", + "blaze 0.4.2 np18py26_0", + "blz 0.6.1 np18py26_0", + "boto 2.25.0 py26_0", + "cairo 1.12.2 2", + "casuarius 1.1 py26_0", + "cdecimal 2.3 py26_0", + "colorama 0.2.7 py26_0", + "configobj 4.7.2 py26_0", + "curl 7.30.0 0", + "cython 0.20.1 py26_0", + "datashape 0.1.1 np18py26_0", + "dateutil 2.1 py26_2", + "disco 0.4.4 py26_0", + "docutils 0.11 py26_0", + "dynd-python 0.6.1 np18py26_0", + "erlang R15B01 0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "future 0.11.2 py26_0", + "gevent 1.0 py26_0", + "gevent-websocket 0.9.2 py26_0", + "gevent_zeromq 0.2.5 py26_3", + "greenlet 0.4.2 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.2.1 np18py26_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py26_0", + "ipython-notebook 1.1.0 py26_1", + "itsdangerous 0.23 py26_0", + "jinja2 2.7.2 py26_0", + "jpeg 8d 0", + "kiwisolver 0.1.2 py26_0", + "libdynd 0.6.1 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.3 py26_0", + "lxml 3.3.1 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.1 np18py26_0", + "mdp 3.3 np18py26_0", + "mock 1.0.1 py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.8 np18py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np18py26_0", + "nose 1.3.0 py26_0", + "numba 0.12.1 np18py26_0", + "numexpr 2.3.1 np18py26_0", + "numpy 1.8.0 py26_0", + "opencv 2.4.6 np18py26_0", + "openssl 1.0.1g 0", + "ordereddict 1.1 py26_0", + "pandas 0.13.1 np18py26_0", + "patsy 0.2.1 np18py26_0", + "pep8 1.4.6 py26_0", + "pil 1.1.7 py26_0", + "pip 1.5.2 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 1.2.1 py26_0", + "py 1.4.20 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.0 py26_0", + "pycparser 2.10 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.0 py26_2", + "pyflakes 0.7.3 py26_0", + "pygments 1.6 py26_0", + "pykit 0.2.0 np18py26_0", + "pyparsing 2.0.1 py26_0", + "pysam 0.6 py26_0", + "pytables 3.1.0 np18py26_0", + "pytest 2.5.2 py26_0", + "python 2.6.9 0", + "pytz 2013b py26_0", + "pyyaml 3.10 py26_0", + "pyzmq 2.2.0.1 py26_1", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py26_0", + "requests 2.2.1 py26_0", + "scikit-image 0.9.3 np18py26_0", + "scikit-learn 0.14.1 np18py26_1", + "scipy 0.13.3 np18py26_0", + "setuptools 2.2 py26_0", + "six 1.5.2 py26_0", + "sphinx 1.2.1 py26_0", + "sqlalchemy 0.9.2 py26_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py26_0", + "statsmodels 0.5.0 np18py26_0", + "sympy 0.7.4.1 py26_0", + "system 5.8 1", + "theano 0.6.0 np18py26_0", + "tk 8.5.13 0", + "tornado 3.2.0 py26_0", + "traits 4.4.0 py26_0", + "ujson 1.33 py26_0", + "unittest2 0.5.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py26_0", + "xlrd 0.9.2 py26_0", + "xlsxwriter 0.5.2 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "3cfedcc2f3e5e71635625bc574e19cf9", + "name": "anaconda", + "requires": [], + "size": 2828, + "version": "1.9.2", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py26_p0", + "numpy 1.8.0 py26_p0", + "scikit-learn 0.14.1 np18py26_p1", + "scipy 0.13.3 np18py26_p0" + ] + } + }, + "anaconda-1.9.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "apptools 4.2.1 py27_0", + "argcomplete 0.6.7 py27_0", + "astropy 0.3.0 np18py27_0", + "atom 0.3.7 py27_0", + "beautiful-soup 4.3.1 py27_0", + "binstar 0.4.4 py27_1", + "biopython 1.63 np18py27_0", + "bitarray 0.8.1 py27_0", + "blaze 0.4.2 np18py27_0", + "blz 0.6.1 np18py27_0", + "bokeh 0.4.1 np18py27_0", + "boto 2.25.0 py27_0", + "cairo 1.12.2 2", + "casuarius 1.1 py27_0", + "cdecimal 2.3 py27_0", + "chaco 4.4.1 np18py27_0", + "colorama 0.2.7 py27_0", + "configobj 4.7.2 py27_0", + "cubes 0.10.2 py27_4", + "curl 7.30.0 0", + "cython 0.20.1 py27_0", + "datashape 0.1.1 np18py27_0", + "dateutil 2.1 py27_2", + "disco 0.4.4 py27_0", + "docutils 0.11 py27_0", + "dynd-python 0.6.1 np18py27_0", + "enable 4.3.0 np18py27_1", + "enaml 0.9.1 py27_0", + "envisage 4.4.0 py27_1", + "erlang R15B01 0", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "future 0.11.2 py27_0", + "gevent 1.0 py27_0", + "gevent-websocket 0.9.2 py27_0", + "gevent_zeromq 0.2.5 py27_3", + "greenlet 0.4.2 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.2.1 np18py27_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py27_0", + "ipython-notebook 1.1.0 py27_1", + "ipython-qtconsole 1.1.0 py27_1", + "itsdangerous 0.23 py27_0", + "jinja2 2.7.2 py27_0", + "jpeg 8d 0", + "keyring 3.3 py27_0", + "kiwisolver 0.1.2 py27_0", + "launcher 0.1.2 py27_0", + "libdynd 0.6.1 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.3 py27_0", + "lxml 3.3.1 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.1 np18py27_0", + "mayavi 4.3.1 np18py27_0", + "mdp 3.3 np18py27_0", + "mock 1.0.1 py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "netcdf4 1.0.8 np18py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np18py27_0", + "nose 1.3.0 py27_0", + "numba 0.12.1 np18py27_0", + "numexpr 2.3.1 np18py27_0", + "numpy 1.8.0 py27_0", + "opencv 2.4.6 np18py27_0", + "openpyxl 1.8.2 py27_1", + "openssl 1.0.1g 0", + "pandas 0.13.1 np18py27_0", + "patsy 0.2.1 np18py27_0", + "pep8 1.4.6 py27_0", + "pil 1.1.7 py27_0", + "pip 1.5.2 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 1.2.1 py27_0", + "py 1.4.20 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.0 py27_0", + "pycparser 2.10 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.0 py27_2", + "pyface 4.4.0 py27_0", + "pyflakes 0.7.3 py27_0", + "pygments 1.6 py27_0", + "pykit 0.2.0 np18py27_0", + "pyparsing 2.0.1 py27_0", + "pysal 1.6.0 np18py27_1", + "pysam 0.6 py27_0", + "pyside 1.2.1 py27_0", + "pytables 3.1.0 np18py27_0", + "pytest 2.5.2 py27_0", + "python 2.7.6 1", + "pytz 2013b py27_0", + "pyyaml 3.10 py27_0", + "pyzmq 2.2.0.1 py27_1", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py27_0", + "requests 2.2.1 py27_0", + "rope 0.9.4 py27_0", + "scikit-image 0.9.3 np18py27_0", + "scikit-learn 0.14.1 np18py27_1", + "scipy 0.13.3 np18py27_0", + "setuptools 2.2 py27_0", + "shiboken 1.2.1 py27_0", + "six 1.5.2 py27_0", + "sphinx 1.2.1 py27_0", + "spyder 2.2.5 py27_0", + "spyder-app 2.2.5 py27_1", + "sqlalchemy 0.9.2 py27_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.5.0 np18py27_0", + "sympy 0.7.4.1 py27_0", + "system 5.8 1", + "theano 0.6.0 np18py27_0", + "tk 8.5.13 0", + "tornado 3.2.0 py27_0", + "traits 4.4.0 py27_0", + "traitsui 4.4.0 py27_0", + "ujson 1.33 py27_0", + "util-linux 2.21 0", + "vtk 5.10.1 py27_1", + "werkzeug 0.9.4 py27_0", + "xlrd 0.9.2 py27_0", + "xlsxwriter 0.5.2 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "95628e54fd1d6f2f671bf58f9a145f0a", + "name": "anaconda", + "requires": [], + "size": 3119, + "version": "1.9.2", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py27_p0", + "numpy 1.8.0 py27_p0", + "scikit-learn 0.14.1 np18py27_p1", + "scipy 0.13.3 np18py27_p0" + ] + } + }, + "anaconda-1.9.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py33_0", + "astropy 0.3.0 np18py33_0", + "beautiful-soup 4.3.1 py33_0", + "bitarray 0.8.1 py33_0", + "blaze 0.4.2 np18py33_0", + "blz 0.6.1 np18py33_0", + "bokeh 0.4.1 np18py33_0", + "cdecimal 2.3 py33_0", + "colorama 0.2.7 py33_0", + "curl 7.30.0 0", + "cython 0.20.1 py33_0", + "datashape 0.1.1 np18py33_0", + "dateutil 2.1 py33_2", + "docutils 0.11 py33_0", + "dynd-python 0.6.1 np18py33_0", + "flask 0.10.1 py33_1", + "freetype 2.4.10 0", + "future 0.11.2 py33_0", + "greenlet 0.4.2 py33_0", + "h5py 2.2.1 np18py33_0", + "hdf5 1.8.9 1", + "ipython 1.1.0 py33_0", + "ipython-notebook 1.1.0 py33_1", + "itsdangerous 0.23 py33_0", + "jinja2 2.7.2 py33_0", + "jpeg 8d 0", + "libdynd 0.6.1 0", + "libnetcdf 4.2.1.1 1", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.3 py33_0", + "lxml 3.3.1 py33_0", + "markupsafe 0.18 py33_0", + "matplotlib 1.3.1 np18py33_0", + "mdp 3.3 np18py33_0", + "mock 1.0.1 py33_0", + "netcdf4 1.0.8 np18py33_0", + "networkx 1.8.1 py33_0", + "nose 1.3.0 py33_0", + "numba 0.12.1 np18py33_0", + "numexpr 2.3.1 np18py33_0", + "numpy 1.8.0 py33_0", + "openpyxl 1.8.2 py33_1", + "openssl 1.0.1g 0", + "pandas 0.13.1 np18py33_0", + "patsy 0.2.1 np18py33_0", + "pillow 2.1.0 py33_0", + "pip 1.5.2 py33_0", + "ply 3.4 py33_0", + "psutil 1.2.1 py33_0", + "py 1.4.20 py33_0", + "pycosat 0.6.0 py33_0", + "pycparser 2.10 py33_0", + "pycrypto 2.6.1 py33_0", + "pyflakes 0.7.3 py33_0", + "pygments 1.6 py33_0", + "pykit 0.2.0 np18py33_0", + "pyparsing 2.0.1 py33_0", + "pytables 3.1.0 np18py33_0", + "pytest 2.5.2 py33_0", + "python 3.3.4 0", + "pytz 2013b py33_0", + "pyyaml 3.10 py33_0", + "pyzmq 2.2.0.1 py33_1", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py33_0", + "requests 2.2.1 py33_0", + "scikit-image 0.9.3 np18py33_0", + "scikit-learn 0.14.1 np18py33_1", + "scipy 0.13.3 np18py33_0", + "setuptools 2.2 py33_0", + "six 1.5.2 py33_0", + "sphinx 1.2.1 py33_0", + "sqlalchemy 0.9.2 py33_0", + "sqlite 3.7.13 0", + "ssl_match_hostname 3.4.0.2 py33_0", + "statsmodels 0.5.0 np18py33_0", + "sympy 0.7.4.1 py33_0", + "system 5.8 1", + "tk 8.5.13 0", + "tornado 3.2.0 py33_0", + "ujson 1.33 py33_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py33_0", + "xlrd 0.9.2 py33_0", + "xlsxwriter 0.5.2 py33_0", + "yaml 0.1.4 0", + "zeromq 2.2.0 1", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "998f7c119ef261431c1ce7197591ba2b", + "name": "anaconda", + "requires": [], + "size": 2444, + "version": "1.9.2", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py33_p0", + "numpy 1.8.0 py33_p0", + "scikit-learn 0.14.1 np18py33_p1", + "scipy 0.13.3 np18py33_p0" + ] + } + }, + "anaconda-2.0.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py26_0", + "argparse 1.2.1 py26_0", + "astropy 0.3.2 np18py26_0", + "atom 0.3.7 py26_0", + "beautiful-soup 4.3.1 py26_0", + "bitarray 0.8.1 py26_0", + "blaze 0.5.0 np18py26_0", + "blz 0.6.2 np18py26_0", + "boto 2.28.0 py26_0", + "cairo 1.12.2 2", + "casuarius 1.1 py26_0", + "cdecimal 2.3 py26_0", + "colorama 0.2.7 py26_0", + "configobj 5.0.5 py26_0", + "curl 7.30.0 0", + "cython 0.20.1 py26_0", + "datashape 0.2.0 np18py26_1", + "dateutil 2.1 py26_2", + "docutils 0.11 py26_0", + "dynd-python 0.6.2 np18py26_0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "future 0.12.1 py26_0", + "gevent 1.0.1 py26_0", + "gevent-websocket 0.9.3 py26_0", + "greenlet 0.4.2 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.3.0 np18py26_0", + "hdf5 1.8.9 1", + "itsdangerous 0.24 py26_0", + "jdcal 1.0 py26_0", + "jinja2 2.7.2 py26_0", + "jpeg 8d 0", + "kiwisolver 0.1.2 py26_0", + "lcms 1.19 0", + "libdynd 0.6.2 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.4 py26_0", + "lxml 3.3.5 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.1 np18py26_1", + "mock 1.0.1 py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "multipledispatch 0.4.3 py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np18py26_0", + "nose 1.3.3 py26_0", + "numba 0.13.1 np18py26_0", + "numexpr 2.3.1 np18py26_0", + "numpy 1.8.1 py26_0", + "openssl 1.0.1g 0", + "ordereddict 1.1 py26_0", + "pandas 0.13.1 np18py26_0", + "patsy 0.2.1 np18py26_0", + "pep8 1.5.6 py26_0", + "pil 1.1.7 py26_1", + "pip 1.5.6 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 2.1.1 py26_0", + "py 1.4.20 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.1 py26_0", + "pycparser 2.10 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.3.1 py26_2", + "pyflakes 0.8.1 py26_0", + "pygments 1.6 py26_0", + "pyparsing 2.0.1 py26_0", + "pyqt 4.10.4 py26_0", + "pytables 3.1.1 np18py26_0", + "pytest 2.5.2 py26_0", + "python 2.6.9 0", + "pytz 2014.3 py26_0", + "pyyaml 3.11 py26_0", + "pyzmq 14.3.0 py26_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py26_0", + "requests 2.3.0 py26_0", + "rope 0.9.4 py26_1", + "scikit-image 0.9.3 np18py26_0", + "scikit-learn 0.14.1 np18py26_1", + "scipy 0.14.0 np18py26_0", + "setuptools 3.6 py26_0", + "sip 4.15.5 py26_0", + "six 1.6.1 py26_0", + "sphinx 1.2.2 py26_0", + "sqlalchemy 0.9.4 py26_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py26_0", + "statsmodels 0.5.0 np18py26_0", + "sympy 0.7.5 py26_0", + "system 5.8 1", + "theano 0.6.0 np18py26_0", + "tk 8.5.15 0", + "tornado 3.2.1 py26_0", + "traits 4.4.0 py26_0", + "ujson 1.33 py26_0", + "unittest2 0.5.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py26_0", + "xlrd 0.9.3 py26_0", + "xlsxwriter 0.5.5 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "1274255b88080a64a2569903da93fdc3", + "name": "anaconda", + "requires": [], + "size": 2753, + "version": "2.0.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py26_p0", + "numpy 1.8.1 py26_p0", + "scikit-learn 0.14.1 np18py26_p1", + "scipy 0.14.0 np18py26_p0" + ] + } + }, + "anaconda-2.0.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "argcomplete 0.6.7 py27_0", + "astropy 0.3.2 np18py27_0", + "atom 0.3.7 py27_0", + "beautiful-soup 4.3.1 py27_0", + "binstar 0.5.3 py27_0", + "bitarray 0.8.1 py27_0", + "blaze 0.5.0 np18py27_0", + "blz 0.6.2 np18py27_0", + "bokeh 0.4.4 np18py27_1", + "boto 2.28.0 py27_0", + "cairo 1.12.2 2", + "casuarius 1.1 py27_0", + "cdecimal 2.3 py27_0", + "chaco 4.4.1 np18py27_0", + "colorama 0.2.7 py27_0", + "configobj 5.0.5 py27_0", + "cubes 0.10.2 py27_4", + "curl 7.30.0 0", + "cython 0.20.1 py27_0", + "datashape 0.2.0 np18py27_1", + "dateutil 2.1 py27_2", + "docutils 0.11 py27_0", + "dynd-python 0.6.2 np18py27_0", + "enable 4.3.0 np18py27_2", + "enaml 0.9.1 py27_1", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "future 0.12.1 py27_0", + "gevent 1.0.1 py27_0", + "gevent-websocket 0.9.3 py27_0", + "greenlet 0.4.2 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.3.0 np18py27_0", + "hdf5 1.8.9 1", + "ipython 2.1.0 py27_0", + "ipython-notebook 2.1.0 py27_0", + "ipython-qtconsole 2.1.0 py27_0", + "itsdangerous 0.24 py27_0", + "jdcal 1.0 py27_0", + "jinja2 2.7.2 py27_0", + "jpeg 8d 0", + "kiwisolver 0.1.2 py27_0", + "launcher 0.1.5 py27_0", + "lcms 1.19 0", + "libdynd 0.6.2 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.4 py27_0", + "lxml 3.3.5 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.1 np18py27_1", + "mock 1.0.1 py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "multipledispatch 0.4.3 py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np18py27_0", + "nose 1.3.3 py27_0", + "numba 0.13.1 np18py27_0", + "numexpr 2.3.1 np18py27_0", + "numpy 1.8.1 py27_0", + "openpyxl 2.0.2 py27_0", + "openssl 1.0.1g 0", + "pandas 0.13.1 np18py27_0", + "patsy 0.2.1 np18py27_0", + "pep8 1.5.6 py27_0", + "pil 1.1.7 py27_1", + "pip 1.5.6 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 2.1.1 py27_0", + "py 1.4.20 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.1 py27_0", + "pycparser 2.10 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.3.1 py27_2", + "pyface 4.4.0 py27_0", + "pyflakes 0.8.1 py27_0", + "pygments 1.6 py27_0", + "pyparsing 2.0.1 py27_0", + "pyqt 4.10.4 py27_0", + "pytables 3.1.1 np18py27_0", + "pytest 2.5.2 py27_0", + "python 2.7.6 2", + "pytz 2014.3 py27_0", + "pyyaml 3.11 py27_0", + "pyzmq 14.3.0 py27_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py27_0", + "requests 2.3.0 py27_0", + "rope 0.9.4 py27_1", + "runipy 0.1.0 py27_0", + "scikit-image 0.9.3 np18py27_0", + "scikit-learn 0.14.1 np18py27_1", + "scipy 0.14.0 np18py27_0", + "setuptools 3.6 py27_0", + "sip 4.15.5 py27_0", + "six 1.6.1 py27_0", + "sphinx 1.2.2 py27_0", + "spyder 2.3.0rc1 py27_0", + "spyder-app 2.3.0rc1 py27_0", + "sqlalchemy 0.9.4 py27_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.5.0 np18py27_0", + "sympy 0.7.5 py27_0", + "system 5.8 1", + "theano 0.6.0 np18py27_0", + "tk 8.5.15 0", + "tornado 3.2.1 py27_0", + "traits 4.4.0 py27_0", + "traitsui 4.4.0 py27_0", + "ujson 1.33 py27_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py27_0", + "xlrd 0.9.3 py27_0", + "xlsxwriter 0.5.5 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "b33b16889b0bd6b98ebe042b04c2c3c3", + "name": "anaconda", + "requires": [], + "size": 2957, + "version": "2.0.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py27_p0", + "numpy 1.8.1 py27_p0", + "scikit-learn 0.14.1 np18py27_p1", + "scipy 0.14.0 np18py27_p0" + ] + } + }, + "anaconda-2.0.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py33_0", + "astropy 0.3.2 np18py33_0", + "beautiful-soup 4.3.1 py33_0", + "binstar 0.5.3 py33_0", + "bitarray 0.8.1 py33_0", + "blaze 0.5.0 np18py33_0", + "blz 0.6.2 np18py33_0", + "bokeh 0.4.4 np18py33_1", + "cdecimal 2.3 py33_0", + "colorama 0.2.7 py33_0", + "configobj 5.0.5 py33_0", + "curl 7.30.0 0", + "cython 0.20.1 py33_0", + "datashape 0.2.0 np18py33_1", + "dateutil 2.1 py33_2", + "docutils 0.11 py33_0", + "dynd-python 0.6.2 np18py33_0", + "flask 0.10.1 py33_1", + "freetype 2.4.10 0", + "future 0.12.1 py33_0", + "greenlet 0.4.2 py33_0", + "h5py 2.3.0 np18py33_0", + "hdf5 1.8.9 1", + "ipython 2.1.0 py33_0", + "ipython-notebook 2.1.0 py33_0", + "ipython-qtconsole 2.1.0 py33_0", + "itsdangerous 0.24 py33_0", + "jdcal 1.0 py33_0", + "jinja2 2.7.2 py33_0", + "jpeg 8d 0", + "libdynd 0.6.2 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.4 py33_0", + "lxml 3.3.5 py33_0", + "markupsafe 0.18 py33_0", + "matplotlib 1.3.1 np18py33_1", + "mock 1.0.1 py33_0", + "multipledispatch 0.4.3 py33_0", + "networkx 1.8.1 py33_0", + "nose 1.3.3 py33_0", + "numba 0.13.1 np18py33_0", + "numexpr 2.3.1 np18py33_0", + "numpy 1.8.1 py33_0", + "openpyxl 2.0.2 py33_0", + "openssl 1.0.1g 0", + "pandas 0.13.1 np18py33_0", + "patsy 0.2.1 np18py33_0", + "pillow 2.4.0 py33_0", + "pip 1.5.6 py33_0", + "ply 3.4 py33_0", + "psutil 2.1.1 py33_0", + "py 1.4.20 py33_0", + "pycosat 0.6.1 py33_0", + "pycparser 2.10 py33_0", + "pycrypto 2.6.1 py33_0", + "pyflakes 0.8.1 py33_0", + "pygments 1.6 py33_0", + "pyparsing 2.0.1 py33_0", + "pyqt 4.10.4 py33_0", + "pytables 3.1.1 np18py33_0", + "pytest 2.5.2 py33_0", + "python 3.3.5 0", + "pytz 2014.3 py33_0", + "pyyaml 3.11 py33_0", + "pyzmq 14.3.0 py33_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py33_0", + "requests 2.3.0 py33_0", + "rope 0.9.4 py33_1", + "runipy 0.1.0 py33_0", + "scikit-image 0.9.3 np18py33_0", + "scikit-learn 0.14.1 np18py33_1", + "scipy 0.14.0 np18py33_0", + "setuptools 3.6 py33_0", + "sip 4.15.5 py33_0", + "six 1.6.1 py33_0", + "sphinx 1.2.2 py33_0", + "sqlalchemy 0.9.4 py33_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py33_0", + "statsmodels 0.5.0 np18py33_0", + "sympy 0.7.5 py33_0", + "system 5.8 1", + "tk 8.5.15 0", + "tornado 3.2.1 py33_0", + "ujson 1.33 py33_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py33_0", + "xlrd 0.9.3 py33_0", + "xlsxwriter 0.5.5 py33_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "6bbd294fd112ef9abc5171bf0d51596d", + "name": "anaconda", + "requires": [], + "size": 2547, + "version": "2.0.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py33_p0", + "numpy 1.8.1 py33_p0", + "scikit-learn 0.14.1 np18py33_p1", + "scipy 0.14.0 np18py33_p0" + ] + } + }, + "anaconda-2.0.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py34_0", + "astropy 0.3.2 np18py34_0", + "beautiful-soup 4.3.1 py34_0", + "binstar 0.5.3 py34_0", + "bitarray 0.8.1 py34_0", + "blaze 0.5.0 np18py34_0", + "blz 0.6.2 np18py34_0", + "bokeh 0.4.4 np18py34_1", + "cdecimal 2.3 py34_0", + "colorama 0.2.7 py34_0", + "configobj 5.0.5 py34_0", + "curl 7.30.0 0", + "cython 0.20.1 py34_0", + "datashape 0.2.0 np18py34_1", + "dateutil 2.1 py34_2", + "docutils 0.11 py34_0", + "dynd-python 0.6.2 np18py34_0", + "flask 0.10.1 py34_1", + "freetype 2.4.10 0", + "future 0.12.1 py34_0", + "greenlet 0.4.2 py34_0", + "h5py 2.3.0 np18py34_0", + "hdf5 1.8.9 1", + "ipython 2.1.0 py34_0", + "ipython-notebook 2.1.0 py34_0", + "ipython-qtconsole 2.1.0 py34_0", + "itsdangerous 0.24 py34_0", + "jdcal 1.0 py34_0", + "jinja2 2.7.2 py34_0", + "jpeg 8d 0", + "libdynd 0.6.2 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.4 py34_0", + "lxml 3.3.5 py34_0", + "markupsafe 0.18 py34_0", + "matplotlib 1.3.1 np18py34_1", + "mock 1.0.1 py34_0", + "multipledispatch 0.4.3 py34_0", + "networkx 1.8.1 py34_0", + "nose 1.3.3 py34_0", + "numba 0.13.1 np18py34_0", + "numexpr 2.3.1 np18py34_0", + "numpy 1.8.1 py34_0", + "openpyxl 2.0.2 py34_0", + "openssl 1.0.1g 0", + "pandas 0.13.1 np18py34_0", + "patsy 0.2.1 np18py34_0", + "pillow 2.4.0 py34_0", + "pip 1.5.6 py34_0", + "ply 3.4 py34_0", + "psutil 2.1.1 py34_0", + "py 1.4.20 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.10 py34_0", + "pycrypto 2.6.1 py34_0", + "pyflakes 0.8.1 py34_0", + "pygments 1.6 py34_0", + "pyparsing 2.0.1 py34_0", + "pyqt 4.10.4 py34_0", + "pytables 3.1.1 np18py34_0", + "pytest 2.5.2 py34_0", + "python 3.4.1 0", + "pytz 2014.3 py34_0", + "pyyaml 3.11 py34_0", + "pyzmq 14.3.0 py34_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py34_0", + "requests 2.3.0 py34_0", + "rope 0.9.4 py34_1", + "runipy 0.1.0 py34_0", + "scikit-image 0.9.3 np18py34_0", + "scipy 0.14.0 np18py34_0", + "setuptools 3.6 py34_0", + "sip 4.15.5 py34_0", + "six 1.6.1 py34_0", + "sphinx 1.2.2 py34_0", + "spyder 2.3.0rc1 py34_0", + "spyder-app 2.3.0rc1 py34_0", + "sqlalchemy 0.9.4 py34_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py34_0", + "sympy 0.7.5 py34_0", + "system 5.8 1", + "tk 8.5.15 0", + "tornado 3.2.1 py34_0", + "ujson 1.33 py34_0", + "util-linux 2.21 0", + "werkzeug 0.9.4 py34_0", + "xlrd 0.9.3 py34_0", + "xlsxwriter 0.5.5 py34_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "18edace7d2873d675622550af2ad062f", + "name": "anaconda", + "requires": [], + "size": 2530, + "version": "2.0.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py34_p0", + "numpy 1.8.1 py34_p0", + "scipy 0.14.0 np18py34_p0" + ] + } + }, + "anaconda-2.0.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py26_0", + "argparse 1.2.1 py26_0", + "astropy 0.3.2 np18py26_0", + "atom 0.3.7 py26_0", + "beautiful-soup 4.3.1 py26_0", + "bitarray 0.8.1 py26_0", + "blaze 0.5.0 np18py26_1", + "blz 0.6.2 np18py26_0", + "boto 2.28.0 py26_0", + "cairo 1.12.2 2", + "casuarius 1.1 py26_0", + "cdecimal 2.3 py26_0", + "colorama 0.2.7 py26_0", + "configobj 5.0.5 py26_0", + "curl 7.30.0 0", + "cython 0.20.1 py26_0", + "datashape 0.2.0 np18py26_1", + "dateutil 2.1 py26_2", + "docutils 0.11 py26_0", + "dynd-python 0.6.2 np18py26_0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "future 0.12.1 py26_0", + "gevent 1.0.1 py26_0", + "gevent-websocket 0.9.3 py26_0", + "greenlet 0.4.2 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.3.0 np18py26_0", + "hdf5 1.8.9 1", + "itsdangerous 0.24 py26_0", + "jdcal 1.0 py26_0", + "jinja2 2.7.2 py26_0", + "jpeg 8d 0", + "kiwisolver 0.1.2 py26_0", + "lcms 1.19 0", + "libdynd 0.6.2 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.6 py26_0", + "lxml 3.3.5 py26_0", + "markupsafe 0.18 py26_0", + "matplotlib 1.3.1 np18py26_1", + "mock 1.0.1 py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "multipledispatch 0.4.3 py26_0", + "networkx 1.8.1 py26_0", + "nltk 2.0.4 np18py26_0", + "nose 1.3.3 py26_0", + "numba 0.13.2 np18py26_0", + "numexpr 2.3.1 np18py26_0", + "numpy 1.8.1 py26_0", + "openssl 1.0.1h 0", + "ordereddict 1.1 py26_0", + "pandas 0.14.0 np18py26_0", + "patsy 0.2.1 np18py26_0", + "pep8 1.5.6 py26_0", + "pil 1.1.7 py26_1", + "pip 1.5.6 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 2.1.1 py26_0", + "py 1.4.20 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.1 py26_0", + "pycparser 2.10 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.3.1 py26_2", + "pyflakes 0.8.1 py26_0", + "pygments 1.6 py26_0", + "pyparsing 2.0.1 py26_0", + "pyqt 4.10.4 py26_0", + "pytables 3.1.1 np18py26_0", + "pytest 2.5.2 py26_0", + "python 2.6.9 0", + "pytz 2014.3 py26_0", + "pyyaml 3.11 py26_0", + "pyzmq 14.3.0 py26_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py26_0", + "requests 2.3.0 py26_0", + "rope 0.9.4 py26_1", + "scikit-image 0.10.0 np18py26_0", + "scikit-learn 0.14.1 np18py26_1", + "scipy 0.14.0 np18py26_0", + "setuptools 3.6 py26_0", + "sip 4.15.5 py26_0", + "six 1.6.1 py26_0", + "sphinx 1.2.2 py26_0", + "sqlalchemy 0.9.4 py26_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py26_0", + "statsmodels 0.5.0 np18py26_0", + "sympy 0.7.5 py26_0", + "system 5.8 1", + "theano 0.6.0 np18py26_0", + "tk 8.5.15 0", + "tornado 3.2.1 py26_0", + "traits 4.4.0 py26_0", + "ujson 1.33 py26_0", + "unittest2 0.5.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.6 py26_0", + "xlrd 0.9.3 py26_0", + "xlsxwriter 0.5.5 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "4589ee37f2f7e9bcf17ab8ce0bdaf01a", + "name": "anaconda", + "requires": [], + "size": 2774, + "version": "2.0.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py26_p0", + "numpy 1.8.1 py26_p0", + "scikit-learn 0.14.1 np18py26_p1", + "scipy 0.14.0 np18py26_p0" + ] + } + }, + "anaconda-2.0.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "_license 1.1 py27_0", + "argcomplete 0.6.7 py27_0", + "astropy 0.3.2 np18py27_0", + "atom 0.3.7 py27_0", + "beautiful-soup 4.3.1 py27_0", + "binstar 0.5.3 py27_0", + "bitarray 0.8.1 py27_0", + "blaze 0.5.0 np18py27_1", + "blz 0.6.2 np18py27_0", + "bokeh 0.4.4 np18py27_1", + "boto 2.28.0 py27_0", + "cairo 1.12.2 2", + "casuarius 1.1 py27_0", + "cdecimal 2.3 py27_0", + "chaco 4.4.1 np18py27_0", + "colorama 0.2.7 py27_0", + "configobj 5.0.5 py27_0", + "cubes 0.10.2 py27_4", + "curl 7.30.0 0", + "cython 0.20.1 py27_0", + "datashape 0.2.0 np18py27_1", + "dateutil 2.1 py27_2", + "docutils 0.11 py27_0", + "dynd-python 0.6.2 np18py27_0", + "enable 4.3.0 np18py27_2", + "enaml 0.9.1 py27_1", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "future 0.12.1 py27_0", + "gevent 1.0.1 py27_0", + "gevent-websocket 0.9.3 py27_0", + "greenlet 0.4.2 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.3.0 np18py27_0", + "hdf5 1.8.9 1", + "ipython 2.1.0 py27_2", + "ipython-notebook 2.1.0 py27_0", + "ipython-qtconsole 2.1.0 py27_0", + "itsdangerous 0.24 py27_0", + "jdcal 1.0 py27_0", + "jinja2 2.7.2 py27_0", + "jpeg 8d 0", + "kiwisolver 0.1.2 py27_0", + "launcher 0.1.5 py27_0", + "lcms 1.19 0", + "libdynd 0.6.2 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.6 py27_0", + "lxml 3.3.5 py27_0", + "markupsafe 0.18 py27_0", + "matplotlib 1.3.1 np18py27_1", + "mock 1.0.1 py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "multipledispatch 0.4.3 py27_0", + "networkx 1.8.1 py27_0", + "nltk 2.0.4 np18py27_0", + "nose 1.3.3 py27_0", + "numba 0.13.2 np18py27_0", + "numexpr 2.3.1 np18py27_0", + "numpy 1.8.1 py27_0", + "openpyxl 1.8.5 py27_0", + "openssl 1.0.1h 0", + "pandas 0.14.0 np18py27_0", + "patsy 0.2.1 np18py27_0", + "pep8 1.5.6 py27_0", + "pil 1.1.7 py27_1", + "pip 1.5.6 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 2.1.1 py27_0", + "py 1.4.20 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.1 py27_0", + "pycparser 2.10 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.3.1 py27_2", + "pyface 4.4.0 py27_0", + "pyflakes 0.8.1 py27_0", + "pygments 1.6 py27_0", + "pyparsing 2.0.1 py27_0", + "pyqt 4.10.4 py27_0", + "pytables 3.1.1 np18py27_0", + "pytest 2.5.2 py27_0", + "python 2.7.7 0", + "pytz 2014.3 py27_0", + "pyyaml 3.11 py27_0", + "pyzmq 14.3.0 py27_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py27_0", + "requests 2.3.0 py27_0", + "rope 0.9.4 py27_1", + "runipy 0.1.0 py27_0", + "scikit-image 0.10.0 np18py27_0", + "scikit-learn 0.14.1 np18py27_1", + "scipy 0.14.0 np18py27_0", + "setuptools 3.6 py27_0", + "sip 4.15.5 py27_0", + "six 1.6.1 py27_0", + "sphinx 1.2.2 py27_0", + "spyder 2.3.0rc1 py27_0", + "spyder-app 2.3.0rc1 py27_0", + "sqlalchemy 0.9.4 py27_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.5.0 np18py27_0", + "sympy 0.7.5 py27_0", + "system 5.8 1", + "theano 0.6.0 np18py27_0", + "tk 8.5.15 0", + "tornado 3.2.1 py27_0", + "traits 4.4.0 py27_0", + "traitsui 4.4.0 py27_0", + "ujson 1.33 py27_0", + "util-linux 2.21 0", + "werkzeug 0.9.6 py27_0", + "xlrd 0.9.3 py27_0", + "xlsxwriter 0.5.5 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "7f6776122615cddf9e685b4ec43cc69a", + "name": "anaconda", + "requires": [], + "size": 2965, + "version": "2.0.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py27_p0", + "numpy 1.8.1 py27_p0", + "scikit-learn 0.14.1 np18py27_p1", + "scipy 0.14.0 np18py27_p0" + ] + } + }, + "anaconda-2.0.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py33_0", + "astropy 0.3.2 np18py33_0", + "beautiful-soup 4.3.1 py33_0", + "binstar 0.5.3 py33_0", + "bitarray 0.8.1 py33_0", + "blaze 0.5.0 np18py33_1", + "blz 0.6.2 np18py33_0", + "bokeh 0.4.4 np18py33_1", + "cdecimal 2.3 py33_0", + "colorama 0.2.7 py33_0", + "configobj 5.0.5 py33_0", + "curl 7.30.0 0", + "cython 0.20.1 py33_0", + "datashape 0.2.0 np18py33_1", + "dateutil 2.1 py33_2", + "docutils 0.11 py33_0", + "dynd-python 0.6.2 np18py33_0", + "flask 0.10.1 py33_1", + "freetype 2.4.10 0", + "future 0.12.1 py33_0", + "greenlet 0.4.2 py33_0", + "h5py 2.3.0 np18py33_0", + "hdf5 1.8.9 1", + "ipython 2.1.0 py33_2", + "ipython-notebook 2.1.0 py33_0", + "ipython-qtconsole 2.1.0 py33_0", + "itsdangerous 0.24 py33_0", + "jdcal 1.0 py33_0", + "jinja2 2.7.2 py33_0", + "jpeg 8d 0", + "libdynd 0.6.2 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.6 py33_0", + "lxml 3.3.5 py33_0", + "markupsafe 0.18 py33_0", + "matplotlib 1.3.1 np18py33_1", + "mock 1.0.1 py33_0", + "multipledispatch 0.4.3 py33_0", + "networkx 1.8.1 py33_0", + "nose 1.3.3 py33_0", + "numba 0.13.2 np18py33_0", + "numexpr 2.3.1 np18py33_0", + "numpy 1.8.1 py33_0", + "openpyxl 1.8.5 py33_0", + "openssl 1.0.1h 0", + "pandas 0.14.0 np18py33_0", + "patsy 0.2.1 np18py33_0", + "pillow 2.4.0 py33_0", + "pip 1.5.6 py33_0", + "ply 3.4 py33_0", + "psutil 2.1.1 py33_0", + "py 1.4.20 py33_0", + "pycosat 0.6.1 py33_0", + "pycparser 2.10 py33_0", + "pycrypto 2.6.1 py33_0", + "pyflakes 0.8.1 py33_0", + "pygments 1.6 py33_0", + "pyparsing 2.0.1 py33_0", + "pyqt 4.10.4 py33_0", + "pytables 3.1.1 np18py33_0", + "pytest 2.5.2 py33_0", + "python 3.3.5 0", + "pytz 2014.3 py33_0", + "pyyaml 3.11 py33_0", + "pyzmq 14.3.0 py33_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py33_0", + "requests 2.3.0 py33_0", + "rope 0.9.4 py33_1", + "runipy 0.1.0 py33_0", + "scikit-image 0.10.0 np18py33_0", + "scikit-learn 0.14.1 np18py33_1", + "scipy 0.14.0 np18py33_0", + "setuptools 3.6 py33_0", + "sip 4.15.5 py33_0", + "six 1.6.1 py33_0", + "sphinx 1.2.2 py33_0", + "sqlalchemy 0.9.4 py33_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py33_0", + "statsmodels 0.5.0 np18py33_0", + "sympy 0.7.5 py33_0", + "system 5.8 1", + "tk 8.5.15 0", + "tornado 3.2.1 py33_0", + "ujson 1.33 py33_0", + "util-linux 2.21 0", + "werkzeug 0.9.6 py33_0", + "xlrd 0.9.3 py33_0", + "xlsxwriter 0.5.5 py33_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "75593ee19b1d54ce720afb455708c1c4", + "name": "anaconda", + "requires": [], + "size": 2526, + "version": "2.0.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py33_p0", + "numpy 1.8.1 py33_p0", + "scikit-learn 0.14.1 np18py33_p1", + "scipy 0.14.0 np18py33_p0" + ] + } + }, + "anaconda-2.0.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argcomplete 0.6.7 py34_0", + "astropy 0.3.2 np18py34_0", + "beautiful-soup 4.3.1 py34_0", + "binstar 0.5.3 py34_0", + "bitarray 0.8.1 py34_0", + "blaze 0.5.0 np18py34_1", + "blz 0.6.2 np18py34_0", + "bokeh 0.4.4 np18py34_1", + "cdecimal 2.3 py34_0", + "colorama 0.2.7 py34_0", + "configobj 5.0.5 py34_0", + "curl 7.30.0 0", + "cython 0.20.1 py34_0", + "datashape 0.2.0 np18py34_1", + "dateutil 2.1 py34_2", + "docutils 0.11 py34_0", + "dynd-python 0.6.2 np18py34_0", + "flask 0.10.1 py34_1", + "freetype 2.4.10 0", + "future 0.12.1 py34_0", + "greenlet 0.4.2 py34_0", + "h5py 2.3.0 np18py34_0", + "hdf5 1.8.9 1", + "ipython 2.1.0 py34_2", + "ipython-notebook 2.1.0 py34_0", + "ipython-qtconsole 2.1.0 py34_0", + "itsdangerous 0.24 py34_0", + "jdcal 1.0 py34_0", + "jinja2 2.7.2 py34_0", + "jpeg 8d 0", + "libdynd 0.6.2 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 0", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.6 py34_0", + "lxml 3.3.5 py34_0", + "markupsafe 0.18 py34_0", + "matplotlib 1.3.1 np18py34_1", + "mock 1.0.1 py34_0", + "multipledispatch 0.4.3 py34_0", + "networkx 1.8.1 py34_0", + "nose 1.3.3 py34_0", + "numba 0.13.2 np18py34_0", + "numexpr 2.3.1 np18py34_0", + "numpy 1.8.1 py34_0", + "openpyxl 1.8.5 py34_0", + "openssl 1.0.1h 0", + "pandas 0.14.0 np18py34_0", + "patsy 0.2.1 np18py34_0", + "pillow 2.4.0 py34_0", + "pip 1.5.6 py34_0", + "ply 3.4 py34_0", + "psutil 2.1.1 py34_0", + "py 1.4.20 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.10 py34_0", + "pycrypto 2.6.1 py34_0", + "pyflakes 0.8.1 py34_0", + "pygments 1.6 py34_0", + "pyparsing 2.0.1 py34_0", + "pyqt 4.10.4 py34_0", + "pytables 3.1.1 np18py34_0", + "pytest 2.5.2 py34_0", + "python 3.4.1 0", + "pytz 2014.3 py34_0", + "pyyaml 3.11 py34_0", + "pyzmq 14.3.0 py34_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py34_0", + "requests 2.3.0 py34_0", + "rope 0.9.4 py34_1", + "runipy 0.1.0 py34_0", + "scikit-image 0.10.0 np18py34_0", + "scipy 0.14.0 np18py34_0", + "setuptools 3.6 py34_0", + "sip 4.15.5 py34_0", + "six 1.6.1 py34_0", + "sphinx 1.2.2 py34_0", + "spyder 2.3.0rc1 py34_0", + "spyder-app 2.3.0rc1 py34_0", + "sqlalchemy 0.9.4 py34_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py34_0", + "sympy 0.7.5 py34_0", + "system 5.8 1", + "tk 8.5.15 0", + "tornado 3.2.1 py34_0", + "ujson 1.33 py34_0", + "util-linux 2.21 0", + "werkzeug 0.9.6 py34_0", + "xlrd 0.9.3 py34_0", + "xlsxwriter 0.5.5 py34_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "fbc052ff8bd4eb0908b9be4e17d84abe", + "name": "anaconda", + "requires": [], + "size": 2530, + "version": "2.0.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np18py34_p0", + "numpy 1.8.1 py34_p0", + "scipy 0.14.0 np18py34_p0" + ] + } + }, + "anaconda-2.1.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-25", + "depends": [ + "abstract-rendering 0.5.1 np19py26_0", + "argcomplete 0.8.1 py26_0", + "argparse 1.2.1 py26_0", + "astropy 0.4.2 np19py26_0", + "atom 0.3.9 py26_0", + "beautiful-soup 4.3.2 py26_0", + "bitarray 0.8.1 py26_0", + "blaze 0.6.3 np19py26_0", + "blz 0.6.2 np19py26_0", + "boto 2.32.1 py26_0", + "cairo 1.12.2 2", + "casuarius 1.1 py26_0", + "cdecimal 2.3 py26_0", + "cffi 0.8.6 py26_0", + "colorama 0.3.1 py26_0", + "configobj 5.0.6 py26_0", + "cryptography 0.5.4 py26_0", + "curl 7.38.0 0", + "cython 0.21 py26_0", + "cytoolz 0.7.0 py26_0", + "datashape 0.3.0 np19py26_1", + "dateutil 2.1 py26_2", + "decorator 3.4.0 py26_0", + "docutils 0.12 py26_0", + "dynd-python 0.6.5 np19py26_0", + "flask 0.10.1 py26_1", + "freetype 2.4.10 0", + "future 0.13.1 py26_0", + "futures 2.1.6 py26_0", + "gevent 1.0.1 py26_0", + "gevent-websocket 0.9.3 py26_0", + "greenlet 0.4.4 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.3.1 np19py26_0", + "hdf5 1.8.13 0", + "itsdangerous 0.24 py26_0", + "jdcal 1.0 py26_0", + "jinja2 2.7.3 py26_1", + "jpeg 8d 0", + "kiwisolver 0.1.3 py26_0", + "lcms 1.19 0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.7 py26_0", + "lxml 3.4.0 py26_0", + "markupsafe 0.23 py26_0", + "matplotlib 1.4.0 np19py26_0", + "mock 1.0.1 py26_0", + "mpi4py 1.3 py26_0", + "mpich2 1.4.1p1 0", + "multipledispatch 0.4.7 py26_0", + "networkx 1.9.1 py26_0", + "nltk 3.0.0 np19py26_0", + "nose 1.3.4 py26_0", + "numba 0.14.0 np19py26_0", + "numexpr 2.3.1 np19py26_0", + "numpy 1.9.0 py26_0", + "openssl 1.0.1h 1", + "ordereddict 1.1 py26_0", + "pandas 0.14.1 np19py26_0", + "patsy 0.3.0 np19py26_0", + "pep8 1.5.7 py26_0", + "pil 1.1.7 py26_1", + "pip 1.5.6 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 2.1.1 py26_0", + "py 1.4.25 py26_0", + "py2cairo 1.10.0 py26_1", + "pycosat 0.6.1 py26_0", + "pycparser 2.10 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.5 py26_1", + "pyflakes 0.8.1 py26_0", + "pygments 1.6 py26_0", + "pyopenssl 0.14 py26_0", + "pyparsing 2.0.1 py26_0", + "pyqt 4.10.4 py26_0", + "pytables 3.1.1 np19py26_1", + "pytest 2.6.3 py26_0", + "python 2.6.9 1", + "pytz 2014.7 py26_0", + "pyyaml 3.11 py26_0", + "pyzmq 14.3.1 py26_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py26_0", + "requests 2.4.1 py26_0", + "rope 0.9.4 py26_1", + "scikit-image 0.10.1 np19py26_0", + "scikit-learn 0.15.2 np19py26_0", + "scipy 0.14.0 np19py26_0", + "setuptools 5.8 py26_0", + "sip 4.15.5 py26_0", + "six 1.8.0 py26_0", + "sockjs-tornado 1.0.1 py26_0", + "sphinx 1.2.3 py26_0", + "sqlalchemy 0.9.7 py26_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py26_0", + "statsmodels 0.5.0 np19py26_2", + "sympy 0.7.5 py26_0", + "system 5.8 1", + "theano 0.6.0 np19py26_0", + "tk 8.5.15 0", + "toolz 0.7.0 py26_0", + "tornado 4.0.2 py26_0", + "traits 4.4.0 py26_0", + "ujson 1.33 py26_0", + "unicodecsv 0.9.4 py26_0", + "unittest2 0.5.1 py26_0", + "util-linux 2.21 0", + "werkzeug 0.9.6 py26_1", + "xlrd 0.9.3 py26_0", + "xlsxwriter 0.5.7 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "d877ef87dd29356e178f9a6a34144c2c", + "name": "anaconda", + "requires": [], + "size": 2933, + "version": "2.1.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np19py26_p0", + "numpy 1.9.0 py26_p0", + "scikit-learn 0.15.2 np19py26_p0", + "scipy 0.14.0 np19py26_p0" + ] + } + }, + "anaconda-2.1.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-25", + "depends": [ + "_license 1.1 py27_0", + "abstract-rendering 0.5.1 np19py27_0", + "argcomplete 0.8.1 py27_0", + "astropy 0.4.2 np19py27_0", + "atom 0.3.9 py27_0", + "beautiful-soup 4.3.2 py27_0", + "binstar 0.7.1 py27_0", + "bitarray 0.8.1 py27_0", + "blaze 0.6.3 np19py27_0", + "blz 0.6.2 np19py27_0", + "bokeh 0.6.1 np19py27_0", + "boto 2.32.1 py27_0", + "cairo 1.12.2 2", + "casuarius 1.1 py27_0", + "cdecimal 2.3 py27_0", + "cffi 0.8.6 py27_0", + "chaco 4.4.1 np19py27_0", + "colorama 0.3.1 py27_0", + "configobj 5.0.6 py27_0", + "cryptography 0.5.4 py27_0", + "curl 7.38.0 0", + "cython 0.21 py27_0", + "cytoolz 0.7.0 py27_0", + "datashape 0.3.0 np19py27_1", + "dateutil 2.1 py27_2", + "decorator 3.4.0 py27_0", + "docutils 0.12 py27_0", + "dynd-python 0.6.5 np19py27_0", + "enable 4.3.0 np19py27_2", + "enaml 0.9.8 py27_0", + "flask 0.10.1 py27_1", + "freetype 2.4.10 0", + "future 0.13.1 py27_0", + "futures 2.1.6 py27_0", + "gevent 1.0.1 py27_0", + "gevent-websocket 0.9.3 py27_0", + "greenlet 0.4.4 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.3.1 np19py27_0", + "hdf5 1.8.13 0", + "ipython 2.2.0 py27_0", + "ipython-notebook 2.2.0 py27_0", + "ipython-qtconsole 2.2.0 py27_0", + "itsdangerous 0.24 py27_0", + "jdcal 1.0 py27_0", + "jinja2 2.7.3 py27_1", + "jpeg 8d 0", + "kiwisolver 0.1.3 py27_0", + "lcms 1.19 0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.7 py27_0", + "lxml 3.4.0 py27_0", + "markupsafe 0.23 py27_0", + "matplotlib 1.4.0 np19py27_0", + "mock 1.0.1 py27_0", + "mpi4py 1.3 py27_0", + "mpich2 1.4.1p1 0", + "multipledispatch 0.4.7 py27_0", + "networkx 1.9.1 py27_0", + "nltk 3.0.0 np19py27_0", + "nose 1.3.4 py27_0", + "numba 0.14.0 np19py27_0", + "numexpr 2.3.1 np19py27_0", + "numpy 1.9.0 py27_0", + "openpyxl 1.8.5 py27_0", + "openssl 1.0.1h 1", + "pandas 0.14.1 np19py27_0", + "patsy 0.3.0 np19py27_0", + "pep8 1.5.7 py27_0", + "pil 1.1.7 py27_1", + "pip 1.5.6 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 2.1.1 py27_0", + "py 1.4.25 py27_0", + "py2cairo 1.10.0 py27_1", + "pycosat 0.6.1 py27_0", + "pycparser 2.10 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.5 py27_1", + "pyface 4.4.0 py27_0", + "pyflakes 0.8.1 py27_0", + "pygments 1.6 py27_0", + "pyopenssl 0.14 py27_0", + "pyparsing 2.0.1 py27_0", + "pyqt 4.10.4 py27_0", + "pytables 3.1.1 np19py27_1", + "pytest 2.6.3 py27_0", + "python 2.7.8 1", + "pytz 2014.7 py27_0", + "pyyaml 3.11 py27_0", + "pyzmq 14.3.1 py27_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py27_0", + "requests 2.4.1 py27_0", + "rope 0.9.4 py27_1", + "runipy 0.1.1 py27_0", + "scikit-image 0.10.1 np19py27_0", + "scikit-learn 0.15.2 np19py27_0", + "scipy 0.14.0 np19py27_0", + "setuptools 5.8 py27_0", + "sip 4.15.5 py27_0", + "six 1.8.0 py27_0", + "sockjs-tornado 1.0.1 py27_0", + "sphinx 1.2.3 py27_0", + "spyder 2.3.1 py27_0", + "spyder-app 2.3.1 py27_0", + "sqlalchemy 0.9.7 py27_0", + "sqlite 3.8.4.1 0", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.5.0 np19py27_2", + "sympy 0.7.5 py27_0", + "system 5.8 1", + "theano 0.6.0 np19py27_0", + "tk 8.5.15 0", + "toolz 0.7.0 py27_0", + "tornado 4.0.2 py27_0", + "traits 4.4.0 py27_0", + "traitsui 4.4.0 py27_0", + "ujson 1.33 py27_0", + "unicodecsv 0.9.4 py27_0", + "util-linux 2.21 0", + "werkzeug 0.9.6 py27_1", + "xlrd 0.9.3 py27_0", + "xlsxwriter 0.5.7 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "bf391e47fc553709a77898dbc11808cb", + "name": "anaconda", + "requires": [], + "size": 3092, + "version": "2.1.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np19py27_p0", + "numpy 1.9.0 py27_p0", + "scikit-learn 0.15.2 np19py27_p0", + "scipy 0.14.0 np19py27_p0" + ] + } + }, + "anaconda-2.1.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-25", + "depends": [ + "abstract-rendering 0.5.1 np19py33_0", + "argcomplete 0.8.1 py33_0", + "astropy 0.4.2 np19py33_0", + "beautiful-soup 4.3.2 py33_0", + "binstar 0.7.1 py33_0", + "bitarray 0.8.1 py33_0", + "blaze 0.6.3 np19py33_0", + "blz 0.6.2 np19py33_0", + "bokeh 0.6.1 np19py33_0", + "boto 2.32.1 py33_0", + "cffi 0.8.6 py33_0", + "colorama 0.3.1 py33_0", + "configobj 5.0.6 py33_0", + "cryptography 0.5.4 py33_0", + "curl 7.38.0 0", + "cython 0.21 py33_0", + "cytoolz 0.7.0 py33_0", + "datashape 0.3.0 np19py33_1", + "dateutil 2.1 py33_2", + "decorator 3.4.0 py33_0", + "docutils 0.12 py33_0", + "dynd-python 0.6.5 np19py33_0", + "flask 0.10.1 py33_1", + "freetype 2.4.10 0", + "future 0.13.1 py33_0", + "greenlet 0.4.4 py33_0", + "h5py 2.3.1 np19py33_0", + "hdf5 1.8.13 0", + "ipython 2.2.0 py33_0", + "ipython-notebook 2.2.0 py33_0", + "ipython-qtconsole 2.2.0 py33_0", + "itsdangerous 0.24 py33_0", + "jdcal 1.0 py33_0", + "jinja2 2.7.3 py33_1", + "jpeg 8d 0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.7 py33_0", + "lxml 3.4.0 py33_0", + "markupsafe 0.23 py33_0", + "matplotlib 1.4.0 np19py33_0", + "mock 1.0.1 py33_0", + "multipledispatch 0.4.7 py33_0", + "networkx 1.9.1 py33_0", + "nltk 3.0.0 np19py33_0", + "nose 1.3.4 py33_0", + "numba 0.14.0 np19py33_0", + "numexpr 2.3.1 np19py33_0", + "numpy 1.9.0 py33_0", + "openpyxl 1.8.5 py33_0", + "openssl 1.0.1h 1", + "pandas 0.14.1 np19py33_0", + "patsy 0.3.0 np19py33_0", + "pillow 2.5.1 py33_0", + "pip 1.5.6 py33_0", + "ply 3.4 py33_0", + "psutil 2.1.1 py33_0", + "py 1.4.25 py33_0", + "pycosat 0.6.1 py33_0", + "pycparser 2.10 py33_0", + "pycrypto 2.6.1 py33_0", + "pycurl 7.19.5 py33_1", + "pyflakes 0.8.1 py33_0", + "pygments 1.6 py33_0", + "pyopenssl 0.14 py33_0", + "pyparsing 2.0.1 py33_0", + "pyqt 4.10.4 py33_0", + "pytables 3.1.1 np19py33_1", + "pytest 2.6.3 py33_0", + "python 3.3.5 3", + "pytz 2014.7 py33_0", + "pyyaml 3.11 py33_0", + "pyzmq 14.3.1 py33_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py33_0", + "requests 2.4.1 py33_0", + "rope 0.9.4 py33_1", + "runipy 0.1.1 py33_0", + "scikit-image 0.10.1 np19py33_0", + "scikit-learn 0.15.2 np19py33_0", + "scipy 0.14.0 np19py33_0", + "setuptools 5.8 py33_0", + "sip 4.15.5 py33_0", + "six 1.8.0 py33_0", + "sockjs-tornado 1.0.1 py33_0", + "sphinx 1.2.3 py33_0", + "sqlalchemy 0.9.7 py33_0", + "sqlite 3.8.4.1 0", + "statsmodels 0.5.0 np19py33_2", + "sympy 0.7.5 py33_0", + "system 5.8 1", + "tk 8.5.15 0", + "toolz 0.7.0 py33_0", + "tornado 4.0.2 py33_0", + "ujson 1.33 py33_0", + "util-linux 2.21 0", + "werkzeug 0.9.6 py33_1", + "xlrd 0.9.3 py33_0", + "xlsxwriter 0.5.7 py33_0", + "xz 5.0.5 0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "abffac9c38cbc1698359c0ff7b8bace8", + "name": "anaconda", + "requires": [], + "size": 2698, + "version": "2.1.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np19py33_p0", + "numpy 1.9.0 py33_p0", + "scikit-learn 0.15.2 np19py33_p0", + "scipy 0.14.0 np19py33_p0" + ] + } + }, + "anaconda-2.1.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-25", + "depends": [ + "abstract-rendering 0.5.1 np19py34_0", + "argcomplete 0.8.1 py34_0", + "astropy 0.4.2 np19py34_0", + "beautiful-soup 4.3.2 py34_0", + "binstar 0.7.1 py34_0", + "bitarray 0.8.1 py34_0", + "blaze 0.6.3 np19py34_0", + "blz 0.6.2 np19py34_0", + "bokeh 0.6.1 np19py34_0", + "boto 2.32.1 py34_0", + "cffi 0.8.6 py34_0", + "colorama 0.3.1 py34_0", + "configobj 5.0.6 py34_0", + "cryptography 0.5.4 py34_0", + "curl 7.38.0 0", + "cython 0.21 py34_0", + "cytoolz 0.7.0 py34_0", + "datashape 0.3.0 np19py34_1", + "dateutil 2.1 py34_2", + "decorator 3.4.0 py34_0", + "docutils 0.12 py34_0", + "dynd-python 0.6.5 np19py34_0", + "flask 0.10.1 py34_1", + "freetype 2.4.10 0", + "future 0.13.1 py34_0", + "greenlet 0.4.4 py34_0", + "h5py 2.3.1 np19py34_0", + "hdf5 1.8.13 0", + "ipython 2.2.0 py34_0", + "ipython-notebook 2.2.0 py34_0", + "ipython-qtconsole 2.2.0 py34_0", + "itsdangerous 0.24 py34_0", + "jdcal 1.0 py34_0", + "jinja2 2.7.3 py34_1", + "jpeg 8d 0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvm 3.3 0", + "llvmpy 0.12.7 py34_0", + "lxml 3.4.0 py34_0", + "markupsafe 0.23 py34_0", + "matplotlib 1.4.0 np19py34_0", + "mock 1.0.1 py34_0", + "multipledispatch 0.4.7 py34_0", + "networkx 1.9.1 py34_0", + "nltk 3.0.0 np19py34_0", + "nose 1.3.4 py34_0", + "numba 0.14.0 np19py34_0", + "numexpr 2.3.1 np19py34_0", + "numpy 1.9.0 py34_0", + "openpyxl 1.8.5 py34_0", + "openssl 1.0.1h 1", + "pandas 0.14.1 np19py34_0", + "patsy 0.3.0 np19py34_0", + "pillow 2.5.1 py34_0", + "pip 1.5.6 py34_0", + "ply 3.4 py34_0", + "psutil 2.1.1 py34_0", + "py 1.4.25 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.10 py34_0", + "pycrypto 2.6.1 py34_0", + "pycurl 7.19.5 py34_1", + "pyflakes 0.8.1 py34_0", + "pygments 1.6 py34_0", + "pyopenssl 0.14 py34_0", + "pyparsing 2.0.1 py34_0", + "pyqt 4.10.4 py34_0", + "pytables 3.1.1 np19py34_1", + "pytest 2.6.3 py34_0", + "python 3.4.1 4", + "pytz 2014.7 py34_0", + "pyyaml 3.11 py34_0", + "pyzmq 14.3.1 py34_0", + "qt 4.8.5 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.9.1 py34_0", + "requests 2.4.1 py34_0", + "rope 0.9.4 py34_1", + "runipy 0.1.1 py34_0", + "scikit-image 0.10.1 np19py34_0", + "scikit-learn 0.15.2 np19py34_0", + "scipy 0.14.0 np19py34_0", + "setuptools 5.8 py34_0", + "sip 4.15.5 py34_0", + "six 1.8.0 py34_0", + "sockjs-tornado 1.0.1 py34_0", + "sphinx 1.2.3 py34_0", + "spyder 2.3.1 py34_0", + "spyder-app 2.3.1 py34_0", + "sqlalchemy 0.9.7 py34_0", + "sqlite 3.8.4.1 0", + "statsmodels 0.5.0 np19py34_2", + "sympy 0.7.5 py34_0", + "system 5.8 1", + "tk 8.5.15 0", + "toolz 0.7.0 py34_0", + "tornado 4.0.2 py34_0", + "ujson 1.33 py34_0", + "util-linux 2.21 0", + "werkzeug 0.9.6 py34_1", + "xlrd 0.9.3 py34_0", + "xlsxwriter 0.5.7 py34_0", + "xz 5.0.5 0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.7 0" + ], + "license": "BSD", + "md5": "94c514bdd273e7bb8d7f44c9dcb74598", + "name": "anaconda", + "requires": [], + "size": 2726, + "version": "2.1.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np19py34_p0", + "numpy 1.9.0 py34_p0", + "scikit-learn 0.15.2 np19py34_p0", + "scipy 0.14.0 np19py34_p0" + ] + } + }, + "anaconda-2.2.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "abstract-rendering 0.5.1 np19py26_0", + "argcomplete 0.8.4 py26_0", + "argparse 1.3.0 py26_0", + "astropy 1.0.1 np19py26_0", + "bcolz 0.8.1 np19py26_0", + "beautiful-soup 4.3.2 py26_0", + "bitarray 0.8.1 py26_0", + "blaze-core 0.7.3 np19py26_0", + "blz 0.6.2 np19py26_0", + "boto 2.36.0 py26_0", + "cairo 1.12.18 1", + "cdecimal 2.3 py26_0", + "certifi 14.05.14 py26_0", + "cffi 0.9.2 py26_0", + "colorama 0.3.3 py26_0", + "configobj 5.0.6 py26_0", + "cryptography 0.8 py26_0", + "curl 7.38.0 0", + "cython 0.22 py26_0", + "cytoolz 0.7.2 py26_0", + "datashape 0.4.4 np19py26_1", + "decorator 3.4.0 py26_0", + "docutils 0.12 py26_0", + "dynd-python 0.6.5 np19py26_0", + "enum34 1.0.4 py26_0", + "fastcache 1.0.2 py26_0", + "flask 0.10.1 py26_1", + "fontconfig 2.11.1 2", + "freetype 2.5.2 0", + "funcsigs 0.4 py26_0", + "futures 2.2.0 py26_0", + "gevent 1.0.1 py26_0", + "gevent-websocket 0.9.3 py26_0", + "greenlet 0.4.5 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.4.0 np19py26_0", + "hdf5 1.8.14 0", + "itsdangerous 0.24 py26_0", + "jdcal 1.0 py26_0", + "jedi 0.8.1 py26_0", + "jinja2 2.7.3 py26_1", + "jpeg 8d 0", + "jsonschema 2.4.0 py26_0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvmlite 0.2.2 py26_1", + "lxml 3.4.2 py26_0", + "markupsafe 0.23 py26_0", + "matplotlib 1.4.3 np19py26_1", + "mistune 0.5.1 py26_0", + "mock 1.0.1 py26_0", + "multipledispatch 0.4.7 py26_0", + "networkx 1.9.1 py26_0", + "nltk 3.0.2 np19py26_0", + "nose 1.3.4 py26_1", + "numba 0.17.0 np19py26_0", + "numexpr 2.3.1 np19py26_0", + "numpy 1.9.2 py26_0", + "odo 0.3.1 np19py26_0", + "openssl 1.0.1k 1", + "ordereddict 1.1 py26_0", + "pandas 0.15.2 np19py26_1", + "patsy 0.3.0 np19py26_0", + "pep8 1.6.2 py26_0", + "pillow 2.7.0 py26_1", + "pip 6.0.8 py26_0", + "pixman 0.26.2 0", + "ply 3.4 py26_0", + "psutil 2.2.1 py26_0", + "py 1.4.26 py26_0", + "py2cairo 1.10.0 py26_2", + "pyasn1 0.1.7 py26_0", + "pycosat 0.6.1 py26_0", + "pycparser 2.10 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.5.1 py26_0", + "pyflakes 0.8.1 py26_0", + "pygments 2.0.2 py26_0", + "pyopenssl 0.14 py26_0", + "pyparsing 2.0.3 py26_0", + "pyqt 4.11.3 py26_0", + "pytables 3.1.1 np19py26_2", + "pytest 2.6.4 py26_0", + "python 2.6.9 1", + "python-dateutil 2.4.1 py26_0", + "pytz 2015.2 py26_0", + "pyyaml 3.11 py26_0", + "pyzmq 14.5.0 py26_0", + "qt 4.8.6 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py26_0", + "requests 2.6.0 py26_0", + "rope 0.9.4 py26_1", + "scikit-image 0.11.2 np19py26_0", + "scikit-learn 0.15.2 np19py26_0", + "scipy 0.15.1 np19py26_0", + "setuptools 14.3 py26_0", + "sip 4.16.5 py26_0", + "six 1.9.0 py26_0", + "sockjs-tornado 1.0.1 py26_0", + "sphinx 1.2.3 py26_0", + "sqlalchemy 0.9.9 py26_0", + "sqlite 3.8.4.1 1", + "ssl_match_hostname 3.4.0.2 py26_0", + "statsmodels 0.6.1 np19py26_0", + "sympy 0.7.6 py26_0", + "system 5.8 2", + "theano 0.6.0 np19py26_0", + "tk 8.5.18 0", + "toolz 0.7.1 py26_0", + "tornado 4.1 py26_0", + "ujson 1.33 py26_0", + "unicodecsv 0.9.4 py26_0", + "unittest2 0.8.0 py26_0", + "util-linux 2.21 0", + "werkzeug 0.10.1 py26_0", + "xlrd 0.9.3 py26_0", + "xlsxwriter 0.6.7 py26_0", + "xlwt 0.7.5 py26_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "md5": "e9a9e4b9e27d36909be6d470af56e1e4", + "name": "anaconda", + "requires": [], + "size": 3043, + "version": "2.2.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np19py26_p0", + "numpy 1.9.2 py26_p0", + "scikit-learn 0.15.2 np19py26_p0", + "scipy 0.15.1 np19py26_p0" + ] + } + }, + "anaconda-2.2.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "_license 1.1 py27_0", + "abstract-rendering 0.5.1 np19py27_0", + "argcomplete 0.8.4 py27_0", + "astropy 1.0.1 np19py27_0", + "bcolz 0.8.1 np19py27_0", + "beautiful-soup 4.3.2 py27_0", + "binstar 0.10.1 py27_3", + "bitarray 0.8.1 py27_0", + "blaze-core 0.7.3 np19py27_0", + "blz 0.6.2 np19py27_0", + "bokeh 0.8.1 np19py27_1", + "boto 2.36.0 py27_0", + "cairo 1.12.18 1", + "cdecimal 2.3 py27_0", + "certifi 14.05.14 py27_0", + "cffi 0.9.2 py27_0", + "clyent 0.3.4 py27_0", + "colorama 0.3.3 py27_0", + "configobj 5.0.6 py27_0", + "cryptography 0.8 py27_0", + "curl 7.38.0 0", + "cython 0.22 py27_0", + "cytoolz 0.7.2 py27_0", + "datashape 0.4.4 np19py27_1", + "decorator 3.4.0 py27_0", + "docutils 0.12 py27_0", + "dynd-python 0.6.5 np19py27_0", + "enum34 1.0.4 py27_0", + "fastcache 1.0.2 py27_0", + "flask 0.10.1 py27_1", + "fontconfig 2.11.1 2", + "freetype 2.5.2 0", + "funcsigs 0.4 py27_0", + "futures 2.2.0 py27_0", + "gevent 1.0.1 py27_0", + "gevent-websocket 0.9.3 py27_0", + "greenlet 0.4.5 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.4.0 np19py27_0", + "hdf5 1.8.14 0", + "ipython 3.0.0 py27_0", + "ipython-notebook 3.0.0 py27_1", + "ipython-qtconsole 3.0.0 py27_0", + "itsdangerous 0.24 py27_0", + "jdcal 1.0 py27_0", + "jedi 0.8.1 py27_0", + "jinja2 2.7.3 py27_1", + "jpeg 8d 0", + "jsonschema 2.4.0 py27_0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvmlite 0.2.2 py27_1", + "lxml 3.4.2 py27_0", + "markupsafe 0.23 py27_0", + "matplotlib 1.4.3 np19py27_1", + "mistune 0.5.1 py27_0", + "mock 1.0.1 py27_0", + "multipledispatch 0.4.7 py27_0", + "networkx 1.9.1 py27_0", + "nltk 3.0.2 np19py27_0", + "nose 1.3.4 py27_1", + "numba 0.17.0 np19py27_0", + "numexpr 2.3.1 np19py27_0", + "numpy 1.9.2 py27_0", + "odo 0.3.1 np19py27_0", + "openpyxl 1.8.5 py27_0", + "openssl 1.0.1k 1", + "pandas 0.15.2 np19py27_1", + "patsy 0.3.0 np19py27_0", + "pep8 1.6.2 py27_0", + "pillow 2.7.0 py27_1", + "pip 6.0.8 py27_0", + "pixman 0.26.2 0", + "ply 3.4 py27_0", + "psutil 2.2.1 py27_0", + "ptyprocess 0.4 py27_0", + "py 1.4.26 py27_0", + "py2cairo 1.10.0 py27_2", + "pyasn1 0.1.7 py27_0", + "pycosat 0.6.1 py27_0", + "pycparser 2.10 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.5.1 py27_0", + "pyflakes 0.8.1 py27_0", + "pygments 2.0.2 py27_0", + "pyopenssl 0.14 py27_0", + "pyparsing 2.0.3 py27_0", + "pyqt 4.11.3 py27_0", + "pytables 3.1.1 np19py27_2", + "pytest 2.6.4 py27_0", + "python 2.7.9 2", + "python-dateutil 2.4.1 py27_0", + "pytz 2015.2 py27_0", + "pyyaml 3.11 py27_0", + "pyzmq 14.5.0 py27_0", + "qt 4.8.6 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py27_0", + "requests 2.6.0 py27_0", + "rope 0.9.4 py27_1", + "runipy 0.1.3 py27_0", + "scikit-image 0.11.2 np19py27_0", + "scikit-learn 0.15.2 np19py27_0", + "scipy 0.15.1 np19py27_0", + "setuptools 14.3 py27_0", + "sip 4.16.5 py27_0", + "six 1.9.0 py27_0", + "sockjs-tornado 1.0.1 py27_0", + "sphinx 1.2.3 py27_0", + "spyder 2.3.4 py27_1", + "spyder-app 2.3.4 py27_0", + "sqlalchemy 0.9.9 py27_0", + "sqlite 3.8.4.1 1", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.6.1 np19py27_0", + "sympy 0.7.6 py27_0", + "system 5.8 2", + "terminado 0.5 py27_0", + "theano 0.6.0 np19py27_0", + "tk 8.5.18 0", + "toolz 0.7.1 py27_0", + "tornado 4.1 py27_0", + "ujson 1.33 py27_0", + "unicodecsv 0.9.4 py27_0", + "util-linux 2.21 0", + "werkzeug 0.10.1 py27_0", + "xlrd 0.9.3 py27_0", + "xlsxwriter 0.6.7 py27_0", + "xlwt 0.7.5 py27_0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "md5": "efb98e493224314ef3e4cc79621232dd", + "name": "anaconda", + "requires": [], + "size": 3173, + "version": "2.2.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np19py27_p0", + "numpy 1.9.2 py27_p0", + "scikit-learn 0.15.2 np19py27_p0", + "scipy 0.15.1 np19py27_p0" + ] + } + }, + "anaconda-2.2.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "abstract-rendering 0.5.1 np19py33_0", + "argcomplete 0.8.4 py33_0", + "astropy 1.0.1 np19py33_0", + "bcolz 0.8.1 np19py33_0", + "beautiful-soup 4.3.2 py33_0", + "binstar 0.10.1 py33_3", + "bitarray 0.8.1 py33_0", + "blaze-core 0.7.3 np19py33_0", + "blz 0.6.2 np19py33_0", + "bokeh 0.8.1 np19py33_1", + "boto 2.36.0 py33_0", + "certifi 14.05.14 py33_0", + "cffi 0.9.2 py33_0", + "clyent 0.3.4 py33_0", + "colorama 0.3.3 py33_0", + "configobj 5.0.6 py33_0", + "cryptography 0.8 py33_0", + "curl 7.38.0 0", + "cython 0.22 py33_0", + "cytoolz 0.7.2 py33_0", + "datashape 0.4.4 np19py33_1", + "decorator 3.4.0 py33_0", + "docutils 0.12 py33_0", + "dynd-python 0.6.5 np19py33_0", + "enum34 1.0.4 py33_0", + "fastcache 1.0.2 py33_0", + "flask 0.10.1 py33_1", + "fontconfig 2.11.1 2", + "freetype 2.5.2 0", + "greenlet 0.4.5 py33_0", + "h5py 2.4.0 np19py33_0", + "hdf5 1.8.14 0", + "ipython 3.0.0 py33_0", + "ipython-notebook 3.0.0 py33_1", + "ipython-qtconsole 3.0.0 py33_0", + "itsdangerous 0.24 py33_0", + "jdcal 1.0 py33_0", + "jedi 0.8.1 py33_0", + "jinja2 2.7.3 py33_1", + "jpeg 8d 0", + "jsonschema 2.4.0 py33_0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvmlite 0.2.2 py33_1", + "lxml 3.4.2 py33_0", + "markupsafe 0.23 py33_0", + "matplotlib 1.4.3 np19py33_1", + "mistune 0.5.1 py33_0", + "mock 1.0.1 py33_0", + "multipledispatch 0.4.7 py33_0", + "networkx 1.9.1 py33_0", + "nltk 3.0.2 np19py33_0", + "nose 1.3.4 py33_1", + "numba 0.17.0 np19py33_0", + "numexpr 2.3.1 np19py33_0", + "numpy 1.9.2 py33_0", + "odo 0.3.1 np19py33_0", + "openpyxl 1.8.5 py33_0", + "openssl 1.0.1k 1", + "pandas 0.15.2 np19py33_1", + "patsy 0.3.0 np19py33_0", + "pep8 1.6.2 py33_0", + "pillow 2.7.0 py33_1", + "pip 6.0.8 py33_0", + "ply 3.4 py33_0", + "psutil 2.2.1 py33_0", + "ptyprocess 0.4 py33_0", + "py 1.4.26 py33_0", + "pyasn1 0.1.7 py33_0", + "pycosat 0.6.1 py33_0", + "pycparser 2.10 py33_0", + "pycrypto 2.6.1 py33_0", + "pycurl 7.19.5.1 py33_0", + "pyflakes 0.8.1 py33_0", + "pygments 2.0.2 py33_0", + "pyopenssl 0.14 py33_0", + "pyparsing 2.0.3 py33_0", + "pyqt 4.11.3 py33_0", + "pytables 3.1.1 np19py33_2", + "pytest 2.6.4 py33_0", + "python 3.3.5 3", + "python-dateutil 2.4.1 py33_0", + "pytz 2015.2 py33_0", + "pyyaml 3.11 py33_0", + "pyzmq 14.5.0 py33_0", + "qt 4.8.6 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py33_0", + "requests 2.6.0 py33_0", + "rope 0.9.4 py33_1", + "runipy 0.1.3 py33_0", + "scikit-image 0.11.2 np19py33_0", + "scikit-learn 0.15.2 np19py33_0", + "scipy 0.15.1 np19py33_0", + "setuptools 14.3 py33_0", + "sip 4.16.5 py33_0", + "six 1.9.0 py33_0", + "sockjs-tornado 1.0.1 py33_0", + "sphinx 1.2.3 py33_0", + "sqlalchemy 0.9.9 py33_0", + "sqlite 3.8.4.1 1", + "statsmodels 0.6.1 np19py33_0", + "sympy 0.7.6 py33_0", + "system 5.8 2", + "terminado 0.5 py33_0", + "tk 8.5.18 0", + "toolz 0.7.1 py33_0", + "tornado 4.1 py33_0", + "ujson 1.33 py33_0", + "util-linux 2.21 0", + "werkzeug 0.10.1 py33_0", + "xlrd 0.9.3 py33_0", + "xlsxwriter 0.6.7 py33_0", + "xz 5.0.5 0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "md5": "d94384a0bd974cd2302b1992f53cd910", + "name": "anaconda", + "requires": [], + "size": 2915, + "version": "2.2.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np19py33_p0", + "numpy 1.9.2 py33_p0", + "scikit-learn 0.15.2 np19py33_p0", + "scipy 0.15.1 np19py33_p0" + ] + } + }, + "anaconda-2.2.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "_license 1.1 py34_0", + "abstract-rendering 0.5.1 np19py34_0", + "argcomplete 0.8.4 py34_0", + "astropy 1.0.1 np19py34_0", + "bcolz 0.8.1 np19py34_0", + "beautiful-soup 4.3.2 py34_0", + "binstar 0.10.1 py34_3", + "bitarray 0.8.1 py34_0", + "blaze-core 0.7.3 np19py34_0", + "blz 0.6.2 np19py34_0", + "bokeh 0.8.1 np19py34_1", + "boto 2.36.0 py34_0", + "certifi 14.05.14 py34_0", + "cffi 0.9.2 py34_0", + "clyent 0.3.4 py34_0", + "colorama 0.3.3 py34_0", + "configobj 5.0.6 py34_0", + "cryptography 0.8 py34_0", + "curl 7.38.0 0", + "cython 0.22 py34_0", + "cytoolz 0.7.2 py34_0", + "datashape 0.4.4 np19py34_1", + "decorator 3.4.0 py34_0", + "docutils 0.12 py34_0", + "dynd-python 0.6.5 np19py34_0", + "fastcache 1.0.2 py34_0", + "flask 0.10.1 py34_1", + "fontconfig 2.11.1 2", + "freetype 2.5.2 0", + "greenlet 0.4.5 py34_0", + "h5py 2.4.0 np19py34_0", + "hdf5 1.8.14 0", + "ipython 3.0.0 py34_0", + "ipython-notebook 3.0.0 py34_1", + "ipython-qtconsole 3.0.0 py34_0", + "itsdangerous 0.24 py34_0", + "jdcal 1.0 py34_0", + "jedi 0.8.1 py34_0", + "jinja2 2.7.3 py34_1", + "jpeg 8d 0", + "jsonschema 2.4.0 py34_0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.5.13 1", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.0 0", + "libxslt 1.1.28 0", + "llvmlite 0.2.2 py34_1", + "lxml 3.4.2 py34_0", + "markupsafe 0.23 py34_0", + "matplotlib 1.4.3 np19py34_1", + "mistune 0.5.1 py34_0", + "mock 1.0.1 py34_0", + "multipledispatch 0.4.7 py34_0", + "networkx 1.9.1 py34_0", + "nltk 3.0.2 np19py34_0", + "nose 1.3.4 py34_1", + "numba 0.17.0 np19py34_0", + "numexpr 2.3.1 np19py34_0", + "numpy 1.9.2 py34_0", + "odo 0.3.1 np19py34_0", + "openpyxl 1.8.5 py34_0", + "openssl 1.0.1k 1", + "pandas 0.15.2 np19py34_1", + "patsy 0.3.0 np19py34_0", + "pep8 1.6.2 py34_0", + "pillow 2.7.0 py34_1", + "pip 6.0.8 py34_0", + "ply 3.4 py34_0", + "psutil 2.2.1 py34_0", + "ptyprocess 0.4 py34_0", + "py 1.4.26 py34_0", + "pyasn1 0.1.7 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.10 py34_0", + "pycrypto 2.6.1 py34_0", + "pycurl 7.19.5.1 py34_0", + "pyflakes 0.8.1 py34_0", + "pygments 2.0.2 py34_0", + "pyopenssl 0.14 py34_0", + "pyparsing 2.0.3 py34_0", + "pyqt 4.11.3 py34_0", + "pytables 3.1.1 np19py34_2", + "pytest 2.6.4 py34_0", + "python 3.4.3 0", + "python-dateutil 2.4.1 py34_0", + "pytz 2015.2 py34_0", + "pyyaml 3.11 py34_0", + "pyzmq 14.5.0 py34_0", + "qt 4.8.6 0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py34_0", + "requests 2.6.0 py34_0", + "rope 0.9.4 py34_1", + "runipy 0.1.3 py34_0", + "scikit-image 0.11.2 np19py34_0", + "scikit-learn 0.15.2 np19py34_0", + "scipy 0.15.1 np19py34_0", + "setuptools 14.3 py34_0", + "sip 4.16.5 py34_0", + "six 1.9.0 py34_0", + "sockjs-tornado 1.0.1 py34_0", + "sphinx 1.2.3 py34_0", + "spyder 2.3.4 py34_1", + "spyder-app 2.3.4 py34_0", + "sqlalchemy 0.9.9 py34_0", + "sqlite 3.8.4.1 1", + "statsmodels 0.6.1 np19py34_0", + "sympy 0.7.6 py34_0", + "system 5.8 2", + "terminado 0.5 py34_0", + "tk 8.5.18 0", + "toolz 0.7.1 py34_0", + "tornado 4.1 py34_0", + "ujson 1.33 py34_0", + "util-linux 2.21 0", + "werkzeug 0.10.1 py34_0", + "xlrd 0.9.3 py34_0", + "xlsxwriter 0.6.7 py34_0", + "xz 5.0.5 0", + "yaml 0.1.4 0", + "zeromq 4.0.4 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "md5": "b8319d765572e122f6ba2be7af7e2f94", + "name": "anaconda", + "requires": [], + "size": 2941, + "version": "2.2.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.3.1 np19py34_p0", + "numpy 1.9.2 py34_p0", + "scikit-learn 0.15.2 np19py34_p0", + "scipy 0.15.1 np19py34_p0" + ] + } + }, + "anaconda-2.3.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "abstract-rendering 0.5.1 np19py26_0", + "alabaster 0.7.3 py26_0", + "argcomplete 0.8.9 py26_0", + "argparse 1.3.0 py26_0", + "astropy 1.0.3 np19py26_0", + "babel 1.3 py26_0", + "bcolz 0.9.0 np19py26_0", + "beautiful-soup 4.3.2 py26_0", + "bitarray 0.8.1 py26_0", + "blaze-core 0.8.0 np19py26_0", + "blz 0.6.2 np19py26_1", + "boto 2.38.0 py26_0", + "cairo 1.12.18 4", + "cdecimal 2.3 py26_0", + "certifi 14.05.14 py26_0", + "cffi 1.1.0 py26_0", + "colorama 0.3.3 py26_0", + "configobj 5.0.6 py26_0", + "cryptography 0.9.1 py26_0", + "curl 7.43.0 0", + "cython 0.22.1 py26_0", + "cytoolz 0.7.3 py26_0", + "datashape 0.4.5 np19py26_0", + "decorator 3.4.2 py26_0", + "docutils 0.12 py26_0", + "dynd-python 0.6.5 np19py26_0", + "enum34 1.0.4 py26_0", + "fastcache 1.0.2 py26_0", + "flask 0.10.1 py26_1", + "fontconfig 2.11.1 4", + "freetype 2.5.2 2", + "funcsigs 0.4 py26_0", + "gevent 1.0.1 py26_0", + "gevent-websocket 0.9.3 py26_0", + "greenlet 0.4.7 py26_0", + "grin 1.2.1 py26_1", + "h5py 2.5.0 np19py26_3", + "hdf5 1.8.15.1 1", + "idna 2.0 py26_0", + "ipaddress 1.0.7 py26_0", + "itsdangerous 0.24 py26_0", + "jdcal 1.0 py26_0", + "jedi 0.8.1 py26_0", + "jinja2 2.7.3 py26_1", + "jpeg 8d 0", + "jsonschema 2.4.0 py26_0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.6.17 0", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.5.0 py26_0", + "lxml 3.4.4 py26_0", + "markupsafe 0.23 py26_0", + "matplotlib 1.4.3 np19py26_2", + "mistune 0.5.1 py26_1", + "mock 1.0.1 py26_0", + "multipledispatch 0.4.7 py26_0", + "networkx 1.9.1 py26_0", + "nltk 3.0.3 np19py26_0", + "nose 1.3.7 py26_0", + "numba 0.19.1 np19py26_0", + "numexpr 2.4.3 np19py26_0", + "numpy 1.9.2 py26_0", + "odo 0.3.2 np19py26_0", + "openssl 1.0.1k 1", + "ordereddict 1.1 py26_0", + "pandas 0.16.2 np19py26_0", + "patsy 0.3.0 np19py26_0", + "pep8 1.6.2 py26_0", + "pillow 2.8.2 py26_0", + "pip 7.0.3 py26_0", + "pixman 0.26.2 0", + "ply 3.6 py26_0", + "psutil 2.2.1 py26_0", + "py 1.4.27 py26_0", + "py2cairo 1.10.0 py26_2", + "pyasn1 0.1.7 py26_0", + "pycosat 0.6.1 py26_0", + "pycparser 2.14 py26_0", + "pycrypto 2.6.1 py26_0", + "pycurl 7.19.5.1 py26_2", + "pyflakes 0.9.2 py26_0", + "pygments 2.0.2 py26_0", + "pyopenssl 0.15.1 py26_1", + "pyparsing 2.0.3 py26_0", + "pyqt 4.11.3 py26_1", + "pytables 3.2.0 np19py26_0", + "pytest 2.7.1 py26_0", + "python 2.6.9 1", + "python-dateutil 2.4.2 py26_0", + "pytz 2015.4 py26_0", + "pyyaml 3.11 py26_1", + "pyzmq 14.7.0 py26_0", + "qt 4.8.6 3", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py26_0", + "requests 2.7.0 py26_0", + "rope 0.9.4 py26_1", + "scikit-image 0.11.3 np19py26_0", + "scikit-learn 0.16.1 np19py26_0", + "scipy 0.15.1 np19py26_0", + "setuptools 17.1.1 py26_0", + "sip 4.16.5 py26_0", + "six 1.9.0 py26_0", + "snowballstemmer 1.2.0 py26_0", + "sockjs-tornado 1.0.1 py26_0", + "sphinx 1.3.1 py26_0", + "sphinx_rtd_theme 0.1.7 py26_0", + "sqlalchemy 1.0.5 py26_0", + "sqlite 3.8.4.1 1", + "ssl_match_hostname 3.4.0.2 py26_0", + "statsmodels 0.6.1 np19py26_0", + "sympy 0.7.6 py26_0", + "system 5.8 2", + "theano 0.7.0 np19py26_0", + "tk 8.5.18 0", + "toolz 0.7.2 py26_0", + "tornado 4.2 py26_0", + "ujson 1.33 py26_0", + "unicodecsv 0.9.4 py26_0", + "unittest2 0.8.0 py26_0", + "util-linux 2.21 0", + "werkzeug 0.10.4 py26_0", + "xlrd 0.9.3 py26_0", + "xlsxwriter 0.7.3 py26_0", + "xlwt 1.0.0 py26_0", + "yaml 0.1.6 0", + "zeromq 4.0.5 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "2c2da30afb65cdcd8724d0ebf798f7ff", + "name": "anaconda", + "requires": [], + "size": 2748, + "version": "2.3.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.3 np19py26_p0", + "numpy 1.9.2 py26_p0", + "scikit-learn 0.16.1 np19py26_p0", + "scipy 0.15.1 np19py26_p0" + ] + } + }, + "anaconda-2.3.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "_license 1.1 py27_0", + "abstract-rendering 0.5.1 np19py27_0", + "alabaster 0.7.3 py27_0", + "argcomplete 0.8.9 py27_0", + "astropy 1.0.3 np19py27_0", + "babel 1.3 py27_0", + "bcolz 0.9.0 np19py27_0", + "beautiful-soup 4.3.2 py27_0", + "binstar 0.11.0 py27_0", + "bitarray 0.8.1 py27_0", + "blaze-core 0.8.0 np19py27_0", + "blz 0.6.2 np19py27_1", + "bokeh 0.9.0 np19py27_0", + "boto 2.38.0 py27_0", + "bottleneck 1.0.0 np19py27_0", + "cairo 1.12.18 4", + "cdecimal 2.3 py27_0", + "certifi 14.05.14 py27_0", + "cffi 1.1.0 py27_0", + "clyent 0.3.4 py27_0", + "colorama 0.3.3 py27_0", + "configobj 5.0.6 py27_0", + "cryptography 0.9.1 py27_0", + "curl 7.43.0 0", + "cython 0.22.1 py27_0", + "cytoolz 0.7.3 py27_0", + "datashape 0.4.5 np19py27_0", + "decorator 3.4.2 py27_0", + "docutils 0.12 py27_0", + "dynd-python 0.6.5 np19py27_0", + "enum34 1.0.4 py27_0", + "fastcache 1.0.2 py27_0", + "flask 0.10.1 py27_1", + "fontconfig 2.11.1 4", + "freetype 2.5.2 2", + "funcsigs 0.4 py27_0", + "gevent 1.0.1 py27_0", + "gevent-websocket 0.9.3 py27_0", + "greenlet 0.4.7 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.5.0 np19py27_3", + "hdf5 1.8.15.1 1", + "idna 2.0 py27_0", + "ipaddress 1.0.7 py27_0", + "ipython 3.2.0 py27_0", + "ipython-notebook 3.2.0 py27_0", + "ipython-qtconsole 3.2.0 py27_0", + "itsdangerous 0.24 py27_0", + "jdcal 1.0 py27_0", + "jedi 0.8.1 py27_0", + "jinja2 2.7.3 py27_1", + "jpeg 8d 0", + "jsonschema 2.4.0 py27_0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.6.17 0", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.5.0 py27_0", + "lxml 3.4.4 py27_0", + "markupsafe 0.23 py27_0", + "matplotlib 1.4.3 np19py27_2", + "mistune 0.5.1 py27_1", + "mock 1.0.1 py27_0", + "multipledispatch 0.4.7 py27_0", + "networkx 1.9.1 py27_0", + "nltk 3.0.3 np19py27_0", + "nose 1.3.7 py27_0", + "numba 0.19.1 np19py27_0", + "numexpr 2.4.3 np19py27_0", + "numpy 1.9.2 py27_0", + "odo 0.3.2 np19py27_0", + "openpyxl 1.8.5 py27_0", + "openssl 1.0.1k 1", + "pandas 0.16.2 np19py27_0", + "patsy 0.3.0 np19py27_0", + "pep8 1.6.2 py27_0", + "pillow 2.8.2 py27_0", + "pip 7.0.3 py27_0", + "pixman 0.26.2 0", + "ply 3.6 py27_0", + "psutil 2.2.1 py27_0", + "ptyprocess 0.4 py27_0", + "py 1.4.27 py27_0", + "py2cairo 1.10.0 py27_2", + "pyasn1 0.1.7 py27_0", + "pycosat 0.6.1 py27_0", + "pycparser 2.14 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.5.1 py27_2", + "pyflakes 0.9.2 py27_0", + "pygments 2.0.2 py27_0", + "pyopenssl 0.15.1 py27_1", + "pyparsing 2.0.3 py27_0", + "pyqt 4.11.3 py27_1", + "pytables 3.2.0 np19py27_0", + "pytest 2.7.1 py27_0", + "python 2.7.10 0", + "python-dateutil 2.4.2 py27_0", + "pytz 2015.4 py27_0", + "pyyaml 3.11 py27_1", + "pyzmq 14.7.0 py27_0", + "qt 4.8.6 3", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py27_0", + "requests 2.7.0 py27_0", + "rope 0.9.4 py27_1", + "runipy 0.1.3 py27_0", + "scikit-image 0.11.3 np19py27_0", + "scikit-learn 0.16.1 np19py27_0", + "scipy 0.15.1 np19py27_0", + "setuptools 17.1.1 py27_0", + "sip 4.16.5 py27_0", + "six 1.9.0 py27_0", + "snowballstemmer 1.2.0 py27_0", + "sockjs-tornado 1.0.1 py27_0", + "sphinx 1.3.1 py27_0", + "sphinx_rtd_theme 0.1.7 py27_0", + "spyder 2.3.5.2 py27_0", + "spyder-app 2.3.5.2 py27_0", + "sqlalchemy 1.0.5 py27_0", + "sqlite 3.8.4.1 1", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.6.1 np19py27_0", + "sympy 0.7.6 py27_0", + "system 5.8 2", + "terminado 0.5 py27_0", + "theano 0.7.0 np19py27_0", + "tk 8.5.18 0", + "toolz 0.7.2 py27_0", + "tornado 4.2 py27_0", + "ujson 1.33 py27_0", + "unicodecsv 0.9.4 py27_0", + "util-linux 2.21 0", + "werkzeug 0.10.4 py27_0", + "xlrd 0.9.3 py27_0", + "xlsxwriter 0.7.3 py27_0", + "xlwt 1.0.0 py27_0", + "yaml 0.1.6 0", + "zeromq 4.0.5 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "6e475ec54cdc3de438a64438f59b669d", + "name": "anaconda", + "requires": [], + "size": 2893, + "version": "2.3.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.3 np19py27_p0", + "numpy 1.9.2 py27_p0", + "scikit-learn 0.16.1 np19py27_p0", + "scipy 0.15.1 np19py27_p0" + ] + } + }, + "anaconda-2.3.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "abstract-rendering 0.5.1 np19py33_0", + "alabaster 0.7.3 py33_0", + "argcomplete 0.8.9 py33_0", + "astropy 1.0.3 np19py33_0", + "babel 1.3 py33_0", + "bcolz 0.9.0 np19py33_0", + "beautiful-soup 4.3.2 py33_0", + "binstar 0.11.0 py33_0", + "bitarray 0.8.1 py33_0", + "blaze-core 0.8.0 np19py33_0", + "blz 0.6.2 np19py33_1", + "bokeh 0.9.0 np19py33_0", + "boto 2.38.0 py33_0", + "certifi 14.05.14 py33_0", + "cffi 1.1.0 py33_0", + "clyent 0.3.4 py33_0", + "colorama 0.3.3 py33_0", + "configobj 5.0.6 py33_0", + "cryptography 0.9.1 py33_0", + "curl 7.43.0 0", + "cython 0.22.1 py33_0", + "cytoolz 0.7.3 py33_0", + "datashape 0.4.5 np19py33_0", + "decorator 3.4.2 py33_0", + "docutils 0.12 py33_0", + "dynd-python 0.6.5 np19py33_0", + "enum34 1.0.4 py33_0", + "fastcache 1.0.2 py33_0", + "flask 0.10.1 py33_1", + "fontconfig 2.11.1 4", + "freetype 2.5.2 2", + "greenlet 0.4.7 py33_0", + "h5py 2.5.0 np19py33_3", + "hdf5 1.8.15.1 1", + "idna 2.0 py33_0", + "ipython 3.2.0 py33_0", + "ipython-notebook 3.2.0 py33_0", + "ipython-qtconsole 3.2.0 py33_0", + "itsdangerous 0.24 py33_0", + "jdcal 1.0 py33_0", + "jedi 0.8.1 py33_0", + "jinja2 2.7.3 py33_1", + "jpeg 8d 0", + "jsonschema 2.4.0 py33_0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.6.17 0", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.5.0 py33_0", + "lxml 3.4.4 py33_0", + "markupsafe 0.23 py33_0", + "matplotlib 1.4.3 np19py33_2", + "mistune 0.5.1 py33_1", + "mock 1.0.1 py33_0", + "multipledispatch 0.4.7 py33_0", + "networkx 1.9.1 py33_0", + "nltk 3.0.3 np19py33_0", + "nose 1.3.7 py33_0", + "numba 0.19.1 np19py33_0", + "numexpr 2.4.3 np19py33_0", + "numpy 1.9.2 py33_0", + "odo 0.3.2 np19py33_0", + "openpyxl 1.8.5 py33_0", + "openssl 1.0.1k 1", + "pandas 0.16.2 np19py33_0", + "patsy 0.3.0 np19py33_0", + "pep8 1.6.2 py33_0", + "pillow 2.8.2 py33_0", + "pip 7.0.3 py33_0", + "ply 3.6 py33_0", + "psutil 2.2.1 py33_0", + "ptyprocess 0.4 py33_0", + "py 1.4.27 py33_0", + "pyasn1 0.1.7 py33_0", + "pycosat 0.6.1 py33_0", + "pycparser 2.14 py33_0", + "pycrypto 2.6.1 py33_0", + "pycurl 7.19.5.1 py33_2", + "pyflakes 0.9.2 py33_0", + "pygments 2.0.2 py33_0", + "pyopenssl 0.15.1 py33_1", + "pyparsing 2.0.3 py33_0", + "pyqt 4.11.3 py33_1", + "pytables 3.2.0 np19py33_0", + "pytest 2.7.1 py33_0", + "python 3.3.5 4", + "python-dateutil 2.4.2 py33_0", + "pytz 2015.4 py33_0", + "pyyaml 3.11 py33_1", + "pyzmq 14.7.0 py33_0", + "qt 4.8.6 3", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py33_0", + "requests 2.7.0 py33_0", + "rope 0.9.4 py33_1", + "runipy 0.1.3 py33_0", + "scikit-image 0.11.3 np19py33_0", + "scikit-learn 0.16.1 np19py33_0", + "scipy 0.15.1 np19py33_0", + "setuptools 17.1.1 py33_0", + "sip 4.16.5 py33_0", + "six 1.9.0 py33_0", + "snowballstemmer 1.2.0 py33_0", + "sockjs-tornado 1.0.1 py33_0", + "sphinx 1.3.1 py33_0", + "sphinx_rtd_theme 0.1.7 py33_0", + "sqlalchemy 1.0.5 py33_0", + "sqlite 3.8.4.1 1", + "statsmodels 0.6.1 np19py33_0", + "sympy 0.7.6 py33_0", + "system 5.8 2", + "terminado 0.5 py33_0", + "theano 0.7.0 np19py33_0", + "tk 8.5.18 0", + "toolz 0.7.2 py33_0", + "tornado 4.2 py33_0", + "ujson 1.33 py33_0", + "util-linux 2.21 0", + "werkzeug 0.10.4 py33_0", + "xlrd 0.9.3 py33_0", + "xlsxwriter 0.7.3 py33_0", + "xlwt 1.0.0 py33_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.0.5 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "558d4f11ebba2e42a59c543e9502ce5a", + "name": "anaconda", + "requires": [], + "size": 2681, + "version": "2.3.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.3 np19py33_p0", + "numpy 1.9.2 py33_p0", + "scikit-learn 0.16.1 np19py33_p0", + "scipy 0.15.1 np19py33_p0" + ] + } + }, + "anaconda-2.3.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "_license 1.1 py34_0", + "abstract-rendering 0.5.1 np19py34_0", + "alabaster 0.7.3 py34_0", + "argcomplete 0.8.9 py34_0", + "astropy 1.0.3 np19py34_0", + "babel 1.3 py34_0", + "bcolz 0.9.0 np19py34_0", + "beautiful-soup 4.3.2 py34_0", + "binstar 0.11.0 py34_0", + "bitarray 0.8.1 py34_0", + "blaze-core 0.8.0 np19py34_0", + "blz 0.6.2 np19py34_1", + "bokeh 0.9.0 np19py34_0", + "boto 2.38.0 py34_0", + "bottleneck 1.0.0 np19py34_0", + "certifi 14.05.14 py34_0", + "cffi 1.1.0 py34_0", + "clyent 0.3.4 py34_0", + "colorama 0.3.3 py34_0", + "configobj 5.0.6 py34_0", + "cryptography 0.9.1 py34_0", + "curl 7.43.0 0", + "cython 0.22.1 py34_0", + "cytoolz 0.7.3 py34_0", + "datashape 0.4.5 np19py34_0", + "decorator 3.4.2 py34_0", + "docutils 0.12 py34_0", + "dynd-python 0.6.5 np19py34_0", + "fastcache 1.0.2 py34_0", + "flask 0.10.1 py34_1", + "fontconfig 2.11.1 4", + "freetype 2.5.2 2", + "greenlet 0.4.7 py34_0", + "h5py 2.5.0 np19py34_3", + "hdf5 1.8.15.1 1", + "idna 2.0 py34_0", + "ipython 3.2.0 py34_0", + "ipython-notebook 3.2.0 py34_0", + "ipython-qtconsole 3.2.0 py34_0", + "itsdangerous 0.24 py34_0", + "jdcal 1.0 py34_0", + "jedi 0.8.1 py34_0", + "jinja2 2.7.3 py34_1", + "jpeg 8d 0", + "jsonschema 2.4.0 py34_0", + "libdynd 0.6.5 0", + "libffi 3.0.13 0", + "libpng 1.6.17 0", + "libsodium 0.4.5 0", + "libtiff 4.0.2 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.5.0 py34_0", + "lxml 3.4.4 py34_0", + "markupsafe 0.23 py34_0", + "matplotlib 1.4.3 np19py34_2", + "mistune 0.5.1 py34_1", + "mock 1.0.1 py34_0", + "multipledispatch 0.4.7 py34_0", + "networkx 1.9.1 py34_0", + "nltk 3.0.3 np19py34_0", + "nose 1.3.7 py34_0", + "numba 0.19.1 np19py34_0", + "numexpr 2.4.3 np19py34_0", + "numpy 1.9.2 py34_0", + "odo 0.3.2 np19py34_0", + "openpyxl 1.8.5 py34_0", + "openssl 1.0.1k 1", + "pandas 0.16.2 np19py34_0", + "patsy 0.3.0 np19py34_0", + "pep8 1.6.2 py34_0", + "pillow 2.8.2 py34_0", + "pip 7.0.3 py34_0", + "ply 3.6 py34_0", + "psutil 2.2.1 py34_0", + "ptyprocess 0.4 py34_0", + "py 1.4.27 py34_0", + "pyasn1 0.1.7 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.14 py34_0", + "pycrypto 2.6.1 py34_0", + "pycurl 7.19.5.1 py34_2", + "pyflakes 0.9.2 py34_0", + "pygments 2.0.2 py34_0", + "pyopenssl 0.15.1 py34_1", + "pyparsing 2.0.3 py34_0", + "pyqt 4.11.3 py34_1", + "pytables 3.2.0 np19py34_0", + "pytest 2.7.1 py34_0", + "python 3.4.3 1", + "python-dateutil 2.4.2 py34_0", + "pytz 2015.4 py34_0", + "pyyaml 3.11 py34_1", + "pyzmq 14.7.0 py34_0", + "qt 4.8.6 3", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py34_0", + "requests 2.7.0 py34_0", + "rope 0.9.4 py34_1", + "runipy 0.1.3 py34_0", + "scikit-image 0.11.3 np19py34_0", + "scikit-learn 0.16.1 np19py34_0", + "scipy 0.15.1 np19py34_0", + "setuptools 17.1.1 py34_0", + "sip 4.16.5 py34_0", + "six 1.9.0 py34_0", + "snowballstemmer 1.2.0 py34_0", + "sockjs-tornado 1.0.1 py34_0", + "sphinx 1.3.1 py34_0", + "sphinx_rtd_theme 0.1.7 py34_0", + "spyder 2.3.5.2 py34_0", + "spyder-app 2.3.5.2 py34_0", + "sqlalchemy 1.0.5 py34_0", + "sqlite 3.8.4.1 1", + "statsmodels 0.6.1 np19py34_0", + "sympy 0.7.6 py34_0", + "system 5.8 2", + "terminado 0.5 py34_0", + "theano 0.7.0 np19py34_0", + "tk 8.5.18 0", + "toolz 0.7.2 py34_0", + "tornado 4.2 py34_0", + "ujson 1.33 py34_0", + "util-linux 2.21 0", + "werkzeug 0.10.4 py34_0", + "xlrd 0.9.3 py34_0", + "xlsxwriter 0.7.3 py34_0", + "xlwt 1.0.0 py34_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.0.5 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "6ca09d762e4c797266e806a7a7ed2ac4", + "name": "anaconda", + "requires": [], + "size": 2703, + "version": "2.3.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.3 np19py34_p0", + "numpy 1.9.2 py34_p0", + "scikit-learn 0.16.1 np19py34_p0", + "scipy 0.15.1 np19py34_p0" + ] + } + }, + "anaconda-2.4.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-29", + "depends": [ + "abstract-rendering 0.5.1 np110py27_0", + "alabaster 0.7.6 py27_0", + "anaconda-client 1.1.0 py27_0", + "argcomplete 1.0.0 py27_1", + "astropy 1.0.5 np110py27_1", + "babel 2.1.1 py27_0", + "beautifulsoup4 4.4.1 py27_0", + "bitarray 0.8.1 py27_0", + "blaze-core 0.8.3 py27_0", + "bokeh 0.10.0 py27_0", + "boto 2.38.0 py27_0", + "bottleneck 1.0.0 np110py27_0", + "cairo 1.12.18 5", + "cdecimal 2.3 py27_0", + "cffi 1.2.1 py27_0", + "clyent 0.4.0 py27_0", + "colorama 0.3.3 py27_0", + "configobj 5.0.6 py27_0", + "cryptography 1.0.2 py27_0", + "curl 7.45.0 0", + "cython 0.23.4 py27_0", + "cytoolz 0.7.4 py27_0", + "datashape 0.4.7 np110py27_1", + "decorator 4.0.4 py27_0", + "docutils 0.12 py27_0", + "enum34 1.0.4 py27_0", + "fastcache 1.0.2 py27_0", + "flask 0.10.1 py27_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "funcsigs 0.4 py27_0", + "gevent 1.0.1 py27_0", + "gevent-websocket 0.9.3 py27_0", + "greenlet 0.4.9 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.5.0 np110py27_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py27_0", + "ipaddress 1.0.14 py27_0", + "ipykernel 4.1.1 py27_0", + "ipython 4.0.0 py27_0", + "ipython-notebook 4.0.4 py27_0", + "ipython-qtconsole 4.0.1 py27_0", + "ipython_genutils 0.1.0 py27_0", + "ipywidgets 4.1.0 py27_0", + "itsdangerous 0.24 py27_0", + "jdcal 1.0 py27_0", + "jedi 0.9.0 py27_0", + "jinja2 2.8 py27_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py27_0", + "jupyter 1.0.0 py27_0", + "jupyter_client 4.1.1 py27_0", + "jupyter_console 4.0.3 py27_0", + "jupyter_core 4.0.6 py27_0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 0", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.7.0 py27_3", + "lxml 3.4.4 py27_0", + "markupsafe 0.23 py27_0", + "matplotlib 1.4.3 np110py27_2", + "mistune 0.7.1 py27_0", + "multipledispatch 0.4.8 py27_0", + "nbconvert 4.0.0 py27_0", + "nbformat 4.0.1 py27_0", + "networkx 1.10 py27_0", + "nltk 3.1 py27_0", + "nose 1.3.7 py27_0", + "notebook 4.0.6 py27_0", + "numba 0.21.0 np110py27_0", + "numexpr 2.4.4 np110py27_0", + "numpy 1.10.1 py27_0", + "odo 0.3.4 py27_0", + "openblas 0.2.14 3", + "openpyxl 2.2.6 py27_0", + "openssl 1.0.2d 0", + "pandas 0.17.0 np110py27_0", + "patchelf 0.6 0", + "path.py 8.1.2 py27_0", + "patsy 0.4.0 np110py27_0", + "pep8 1.6.2 py27_0", + "pexpect 3.3 py27_0", + "pickleshare 0.5 py27_0", + "pillow 3.0.0 py27_1", + "pip 7.1.2 py27_0", + "pixman 0.26.2 0", + "ply 3.8 py27_0", + "psutil 3.2.2 py27_0", + "ptyprocess 0.5 py27_0", + "py 1.4.30 py27_0", + "py2cairo 1.10.0 py27_2", + "pyasn1 0.1.9 py27_0", + "pycosat 0.6.1 py27_0", + "pycparser 2.14 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.5.1 py27_3", + "pyflakes 1.0.0 py27_0", + "pygments 2.0.2 py27_0", + "pyopenssl 0.15.1 py27_1", + "pyparsing 2.0.3 py27_0", + "pyqt 4.11.4 py27_0", + "pytables 3.2.2 np110py27_0", + "pytest 2.8.1 py27_0", + "python 2.7.10 2", + "python-dateutil 2.4.2 py27_0", + "pytz 2015.6 py27_0", + "pyyaml 3.11 py27_1", + "pyzmq 14.7.0 py27_1", + "qt 4.8.7 1", + "qtconsole 4.1.0 py27_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py27_0", + "requests 2.8.1 py27_0", + "rope 0.9.4 py27_1", + "scikit-image 0.11.3 np110py27_0", + "scikit-learn 0.16.1 np110py27_0", + "scipy 0.16.0 np110py27_1", + "setuptools 18.4 py27_0", + "simplegeneric 0.8.1 py27_0", + "singledispatch 3.4.0.3 py27_0", + "sip 4.16.9 py27_0", + "six 1.10.0 py27_0", + "snowballstemmer 1.2.0 py27_0", + "sockjs-tornado 1.0.1 py27_0", + "sphinx 1.3.1 py27_0", + "sphinx_rtd_theme 0.1.7 py27_0", + "spyder 2.3.7 py27_1", + "spyder-app 2.3.7 py27_0", + "sqlalchemy 1.0.9 py27_0", + "sqlite 3.8.4.1 1", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.6.1 np110py27_0", + "sympy 0.7.6.1 py27_0", + "terminado 0.5 py27_1", + "theano 0.7.0 np110py27_0", + "tk 8.5.18 0", + "toolz 0.7.4 py27_0", + "tornado 4.2.1 py27_1", + "traitlets 4.0.0 py27_0", + "ujson 1.33 py27_0", + "unicodecsv 0.14.1 py27_0", + "util-linux 2.21 0", + "werkzeug 0.10.4 py27_0", + "wheel 0.26.0 py27_1", + "xlrd 0.9.4 py27_0", + "xlsxwriter 0.7.7 py27_0", + "xlwt 1.0.0 py27_0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "1acf9dacbc5c4a431e4c7e2e5ba65d6e", + "name": "anaconda", + "requires": [], + "size": 3128, + "version": "2.4.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.4 np110py27_p0", + "numpy 1.10.1 py27_p0", + "scipy 0.16.0 np110py27_p1" + ] + } + }, + "anaconda-2.4.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-29", + "depends": [ + "abstract-rendering 0.5.1 np110py34_0", + "alabaster 0.7.6 py34_0", + "anaconda-client 1.1.0 py34_0", + "argcomplete 1.0.0 py34_1", + "astropy 1.0.5 np110py34_1", + "babel 2.1.1 py34_0", + "beautifulsoup4 4.4.1 py34_0", + "bitarray 0.8.1 py34_0", + "blaze-core 0.8.3 py34_0", + "bokeh 0.10.0 py34_0", + "boto 2.38.0 py34_0", + "bottleneck 1.0.0 np110py34_0", + "cffi 1.2.1 py34_0", + "clyent 0.4.0 py34_0", + "colorama 0.3.3 py34_0", + "configobj 5.0.6 py34_0", + "cryptography 1.0.2 py34_0", + "curl 7.45.0 0", + "cython 0.23.4 py34_0", + "cytoolz 0.7.4 py34_0", + "datashape 0.4.7 np110py34_1", + "decorator 4.0.4 py34_0", + "docutils 0.12 py34_0", + "fastcache 1.0.2 py34_0", + "flask 0.10.1 py34_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "greenlet 0.4.9 py34_0", + "h5py 2.5.0 np110py34_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py34_0", + "ipykernel 4.1.1 py34_0", + "ipython 4.0.0 py34_0", + "ipython-notebook 4.0.4 py34_0", + "ipython-qtconsole 4.0.1 py34_0", + "ipython_genutils 0.1.0 py34_0", + "ipywidgets 4.1.0 py34_0", + "itsdangerous 0.24 py34_0", + "jdcal 1.0 py34_0", + "jedi 0.9.0 py34_0", + "jinja2 2.8 py34_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py34_0", + "jupyter 1.0.0 py34_0", + "jupyter_client 4.1.1 py34_0", + "jupyter_console 4.0.3 py34_0", + "jupyter_core 4.0.6 py34_0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 0", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.7.0 py34_3", + "lxml 3.4.4 py34_0", + "markupsafe 0.23 py34_0", + "matplotlib 1.4.3 np110py34_2", + "mistune 0.7.1 py34_0", + "multipledispatch 0.4.8 py34_0", + "nbconvert 4.0.0 py34_0", + "nbformat 4.0.1 py34_0", + "networkx 1.10 py34_0", + "nltk 3.1 py34_0", + "nose 1.3.7 py34_0", + "notebook 4.0.6 py34_0", + "numba 0.21.0 np110py34_0", + "numexpr 2.4.4 np110py34_0", + "numpy 1.10.1 py34_0", + "odo 0.3.4 py34_0", + "openblas 0.2.14 3", + "openpyxl 2.2.6 py34_0", + "openssl 1.0.2d 0", + "pandas 0.17.0 np110py34_0", + "patchelf 0.6 0", + "path.py 8.1.2 py34_0", + "patsy 0.4.0 np110py34_0", + "pep8 1.6.2 py34_0", + "pexpect 3.3 py34_0", + "pickleshare 0.5 py34_0", + "pillow 3.0.0 py34_1", + "pip 7.1.2 py34_0", + "ply 3.8 py34_0", + "psutil 3.2.2 py34_0", + "ptyprocess 0.5 py34_0", + "py 1.4.30 py34_0", + "pyasn1 0.1.9 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.14 py34_0", + "pycrypto 2.6.1 py34_0", + "pycurl 7.19.5.1 py34_3", + "pyflakes 1.0.0 py34_0", + "pygments 2.0.2 py34_0", + "pyopenssl 0.15.1 py34_1", + "pyparsing 2.0.3 py34_0", + "pyqt 4.11.4 py34_0", + "pytables 3.2.2 np110py34_0", + "pytest 2.8.1 py34_0", + "python 3.4.3 2", + "python-dateutil 2.4.2 py34_0", + "pytz 2015.6 py34_0", + "pyyaml 3.11 py34_1", + "pyzmq 14.7.0 py34_1", + "qt 4.8.7 1", + "qtconsole 4.1.0 py34_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py34_0", + "requests 2.8.1 py34_0", + "rope 0.9.4 py34_1", + "scikit-image 0.11.3 np110py34_0", + "scikit-learn 0.16.1 np110py34_0", + "scipy 0.16.0 np110py34_1", + "setuptools 18.4 py34_0", + "simplegeneric 0.8.1 py34_0", + "sip 4.16.9 py34_0", + "six 1.10.0 py34_0", + "snowballstemmer 1.2.0 py34_0", + "sockjs-tornado 1.0.1 py34_0", + "sphinx 1.3.1 py34_0", + "sphinx_rtd_theme 0.1.7 py34_0", + "spyder 2.3.7 py34_1", + "spyder-app 2.3.7 py34_0", + "sqlalchemy 1.0.9 py34_0", + "sqlite 3.8.4.1 1", + "statsmodels 0.6.1 np110py34_0", + "sympy 0.7.6.1 py34_0", + "terminado 0.5 py34_1", + "theano 0.7.0 np110py34_0", + "tk 8.5.18 0", + "toolz 0.7.4 py34_0", + "tornado 4.2.1 py34_1", + "traitlets 4.0.0 py34_0", + "ujson 1.33 py34_0", + "unicodecsv 0.14.1 py34_0", + "util-linux 2.21 0", + "werkzeug 0.10.4 py34_0", + "wheel 0.26.0 py34_1", + "xlrd 0.9.4 py34_0", + "xlsxwriter 0.7.7 py34_0", + "xlwt 1.0.0 py34_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "bab9d52a21f790604e5a923e5f952120", + "name": "anaconda", + "requires": [], + "size": 2932, + "version": "2.4.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.4 np110py34_p0", + "numpy 1.10.1 py34_p0", + "scipy 0.16.0 np110py34_p1" + ] + } + }, + "anaconda-2.4.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-29", + "depends": [ + "abstract-rendering 0.5.1 np110py35_0", + "alabaster 0.7.6 py35_0", + "anaconda-client 1.1.0 py35_0", + "argcomplete 1.0.0 py35_1", + "astropy 1.0.5 np110py35_1", + "babel 2.1.1 py35_0", + "beautifulsoup4 4.4.1 py35_0", + "bitarray 0.8.1 py35_0", + "blaze-core 0.8.3 py35_0", + "bokeh 0.10.0 py35_0", + "boto 2.38.0 py35_0", + "cffi 1.2.1 py35_0", + "clyent 0.4.0 py35_0", + "colorama 0.3.3 py35_0", + "configobj 5.0.6 py35_0", + "cryptography 1.0.2 py35_0", + "curl 7.45.0 0", + "cython 0.23.4 py35_0", + "cytoolz 0.7.4 py35_0", + "datashape 0.4.7 np110py35_1", + "decorator 4.0.4 py35_0", + "docutils 0.12 py35_0", + "fastcache 1.0.2 py35_0", + "flask 0.10.1 py35_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "greenlet 0.4.9 py35_0", + "h5py 2.5.0 np110py35_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py35_0", + "ipykernel 4.1.1 py35_0", + "ipython 4.0.0 py35_0", + "ipython-notebook 4.0.4 py35_0", + "ipython-qtconsole 4.0.1 py35_0", + "ipython_genutils 0.1.0 py35_0", + "ipywidgets 4.1.0 py35_0", + "itsdangerous 0.24 py35_0", + "jdcal 1.0 py35_0", + "jedi 0.9.0 py35_0", + "jinja2 2.8 py35_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py35_0", + "jupyter 1.0.0 py35_0", + "jupyter_client 4.1.1 py35_0", + "jupyter_console 4.0.3 py35_0", + "jupyter_core 4.0.6 py35_0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 0", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "lxml 3.4.4 py35_0", + "markupsafe 0.23 py35_0", + "matplotlib 1.4.3 np110py35_2", + "mistune 0.7.1 py35_0", + "multipledispatch 0.4.8 py35_0", + "nbconvert 4.0.0 py35_0", + "nbformat 4.0.1 py35_0", + "networkx 1.10 py35_0", + "nltk 3.1 py35_0", + "nose 1.3.7 py35_0", + "notebook 4.0.6 py35_0", + "numexpr 2.4.4 np110py35_0", + "numpy 1.10.1 py35_0", + "odo 0.3.4 py35_0", + "openblas 0.2.14 3", + "openpyxl 2.2.6 py35_0", + "openssl 1.0.2d 0", + "pandas 0.17.0 np110py35_0", + "patchelf 0.6 0", + "path.py 8.1.2 py35_0", + "patsy 0.4.0 np110py35_0", + "pep8 1.6.2 py35_0", + "pexpect 3.3 py35_0", + "pickleshare 0.5 py35_0", + "pillow 3.0.0 py35_1", + "pip 7.1.2 py35_0", + "ply 3.8 py35_0", + "psutil 3.2.2 py35_0", + "ptyprocess 0.5 py35_0", + "py 1.4.30 py35_0", + "pyasn1 0.1.9 py35_0", + "pycosat 0.6.1 py35_0", + "pycparser 2.14 py35_0", + "pycrypto 2.6.1 py35_0", + "pycurl 7.19.5.1 py35_3", + "pyflakes 1.0.0 py35_0", + "pygments 2.0.2 py35_0", + "pyopenssl 0.15.1 py35_1", + "pyparsing 2.0.3 py35_0", + "pyqt 4.11.4 py35_0", + "pytables 3.2.2 np110py35_0", + "pytest 2.8.1 py35_0", + "python 3.5.0 1", + "python-dateutil 2.4.2 py35_0", + "pytz 2015.6 py35_0", + "pyyaml 3.11 py35_1", + "pyzmq 14.7.0 py35_1", + "qt 4.8.7 1", + "qtconsole 4.1.0 py35_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py35_0", + "requests 2.8.1 py35_0", + "rope 0.9.4 py35_1", + "scikit-image 0.11.3 np110py35_0", + "scikit-learn 0.16.1 np110py35_0", + "scipy 0.16.0 np110py35_1", + "setuptools 18.4 py35_0", + "simplegeneric 0.8.1 py35_0", + "sip 4.16.9 py35_0", + "six 1.10.0 py35_0", + "snowballstemmer 1.2.0 py35_0", + "sockjs-tornado 1.0.1 py35_0", + "sphinx 1.3.1 py35_0", + "sphinx_rtd_theme 0.1.7 py35_0", + "spyder 2.3.7 py35_1", + "spyder-app 2.3.7 py35_0", + "sqlalchemy 1.0.9 py35_0", + "sqlite 3.8.4.1 1", + "statsmodels 0.6.1 np110py35_0", + "sympy 0.7.6.1 py35_0", + "terminado 0.5 py35_1", + "theano 0.7.0 np110py35_0", + "tk 8.5.18 0", + "toolz 0.7.4 py35_0", + "tornado 4.2.1 py35_1", + "traitlets 4.0.0 py35_0", + "ujson 1.33 py35_0", + "unicodecsv 0.14.1 py35_0", + "util-linux 2.21 0", + "werkzeug 0.10.4 py35_0", + "wheel 0.26.0 py35_1", + "xlrd 0.9.4 py35_0", + "xlsxwriter 0.7.7 py35_0", + "xlwt 1.0.0 py35_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "f5d2cfcc440ec141abd84d5f78120e93", + "name": "anaconda", + "requires": [], + "size": 2872, + "version": "2.4.0", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.4 np110py35_p0", + "numpy 1.10.1 py35_p0", + "scipy 0.16.0 np110py35_p1" + ] + } + }, + "anaconda-2.4.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "_license 1.1 py27_1", + "abstract-rendering 0.5.1 np110py27_0", + "alabaster 0.7.6 py27_0", + "anaconda-client 1.2.1 py27_0", + "argcomplete 1.0.0 py27_1", + "astropy 1.0.6 np110py27_0", + "babel 2.1.1 py27_0", + "backports_abc 0.4 py27_0", + "beautifulsoup4 4.4.1 py27_0", + "bitarray 0.8.1 py27_0", + "blaze-core 0.8.3 py27_0", + "bokeh 0.10.0 py27_0", + "boto 2.38.0 py27_0", + "bottleneck 1.0.0 np110py27_0", + "cairo 1.12.18 6", + "cdecimal 2.3 py27_0", + "cffi 1.2.1 py27_0", + "clyent 1.2.0 py27_0", + "colorama 0.3.3 py27_0", + "configobj 5.0.6 py27_0", + "cryptography 1.0.2 py27_0", + "curl 7.45.0 0", + "cycler 0.9.0 py27_0", + "cython 0.23.4 py27_0", + "cytoolz 0.7.4 py27_0", + "datashape 0.4.7 np110py27_1", + "decorator 4.0.4 py27_0", + "docutils 0.12 py27_0", + "dynd-python 0.7.0 py27_0", + "enum34 1.0.4 py27_0", + "fastcache 1.0.2 py27_0", + "flask 0.10.1 py27_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "funcsigs 0.4 py27_0", + "gevent 1.0.1 py27_0", + "gevent-websocket 0.9.3 py27_0", + "greenlet 0.4.9 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.5.0 np110py27_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py27_0", + "ipaddress 1.0.14 py27_0", + "ipykernel 4.1.1 py27_0", + "ipython 4.0.1 py27_0", + "ipython-notebook 4.0.4 py27_0", + "ipython-qtconsole 4.0.1 py27_0", + "ipython_genutils 0.1.0 py27_0", + "ipywidgets 4.1.0 py27_0", + "itsdangerous 0.24 py27_0", + "jbig 2.1 0", + "jdcal 1.0 py27_0", + "jedi 0.9.0 py27_0", + "jinja2 2.8 py27_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py27_0", + "jupyter 1.0.0 py27_1", + "jupyter_client 4.1.1 py27_0", + "jupyter_console 4.0.3 py27_0", + "jupyter_core 4.0.6 py27_0", + "libdynd 0.7.0 0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.8.0 py27_0", + "lxml 3.4.4 py27_0", + "markupsafe 0.23 py27_0", + "matplotlib 1.5.0 np110py27_0", + "mistune 0.7.1 py27_0", + "multipledispatch 0.4.8 py27_0", + "nbconvert 4.0.0 py27_0", + "nbformat 4.0.1 py27_0", + "networkx 1.10 py27_0", + "nltk 3.1 py27_0", + "nose 1.3.7 py27_0", + "notebook 4.0.6 py27_0", + "numba 0.22.1 np110py27_0", + "numexpr 2.4.4 np110py27_0", + "numpy 1.10.1 py27_0", + "odo 0.3.4 py27_0", + "openblas 0.2.14 3", + "openpyxl 2.2.6 py27_0", + "openssl 1.0.2d 0", + "pandas 0.17.1 np110py27_0", + "patchelf 0.6 0", + "path.py 8.1.2 py27_1", + "patsy 0.4.0 np110py27_0", + "pep8 1.6.2 py27_0", + "pexpect 3.3 py27_0", + "pickleshare 0.5 py27_0", + "pillow 3.0.0 py27_1", + "pip 7.1.2 py27_0", + "pixman 0.32.6 0", + "ply 3.8 py27_0", + "psutil 3.3.0 py27_0", + "ptyprocess 0.5 py27_0", + "py 1.4.30 py27_0", + "pyasn1 0.1.9 py27_0", + "pycairo 1.10.0 py27_0", + "pycosat 0.6.1 py27_0", + "pycparser 2.14 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.5.1 py27_3", + "pyflakes 1.0.0 py27_0", + "pygments 2.0.2 py27_0", + "pyopenssl 0.15.1 py27_1", + "pyparsing 2.0.3 py27_0", + "pyqt 4.11.4 py27_1", + "pytables 3.2.2 np110py27_0", + "pytest 2.8.1 py27_0", + "python 2.7.11 0", + "python-dateutil 2.4.2 py27_0", + "pytz 2015.7 py27_0", + "pyyaml 3.11 py27_1", + "pyzmq 14.7.0 py27_1", + "qt 4.8.7 1", + "qtconsole 4.1.1 py27_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py27_0", + "requests 2.8.1 py27_0", + "rope 0.9.4 py27_1", + "scikit-image 0.11.3 np110py27_0", + "scikit-learn 0.17 np110py27_1", + "scipy 0.16.0 np110py27_1", + "setuptools 18.5 py27_0", + "simplegeneric 0.8.1 py27_0", + "singledispatch 3.4.0.3 py27_0", + "sip 4.16.9 py27_0", + "six 1.10.0 py27_0", + "snowballstemmer 1.2.0 py27_0", + "sockjs-tornado 1.0.1 py27_0", + "sphinx 1.3.1 py27_0", + "sphinx_rtd_theme 0.1.7 py27_0", + "spyder 2.3.8 py27_0", + "spyder-app 2.3.8 py27_0", + "sqlalchemy 1.0.9 py27_0", + "sqlite 3.8.4.1 1", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.6.1 np110py27_0", + "sympy 0.7.6.1 py27_0", + "terminado 0.5 py27_1", + "theano 0.7.0 np110py27_0", + "tk 8.5.18 0", + "toolz 0.7.4 py27_0", + "tornado 4.3 py27_0", + "traitlets 4.0.0 py27_0", + "ujson 1.33 py27_0", + "unicodecsv 0.14.1 py27_0", + "util-linux 2.21 0", + "werkzeug 0.11.2 py27_0", + "wheel 0.26.0 py27_1", + "xlrd 0.9.4 py27_0", + "xlsxwriter 0.7.7 py27_0", + "xlwt 1.0.0 py27_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "2d9f9a3fe53104de26be8ae51b098d64", + "name": "anaconda", + "requires": [], + "size": 3196, + "version": "2.4.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.4 np110py27_p0", + "numpy 1.10.1 py27_p0", + "scikit-learn 0.17 np110py27_p1", + "scipy 0.16.0 np110py27_p1" + ] + } + }, + "anaconda-2.4.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "abstract-rendering 0.5.1 np110py34_0", + "alabaster 0.7.6 py34_0", + "anaconda-client 1.2.1 py34_0", + "argcomplete 1.0.0 py34_1", + "astropy 1.0.6 np110py34_0", + "babel 2.1.1 py34_0", + "backports_abc 0.4 py34_0", + "beautifulsoup4 4.4.1 py34_0", + "bitarray 0.8.1 py34_0", + "blaze-core 0.8.3 py34_0", + "bokeh 0.10.0 py34_0", + "boto 2.38.0 py34_0", + "bottleneck 1.0.0 np110py34_0", + "cffi 1.2.1 py34_0", + "clyent 1.2.0 py34_0", + "colorama 0.3.3 py34_0", + "configobj 5.0.6 py34_0", + "cryptography 1.0.2 py34_0", + "curl 7.45.0 0", + "cycler 0.9.0 py34_0", + "cython 0.23.4 py34_0", + "cytoolz 0.7.4 py34_0", + "datashape 0.4.7 np110py34_1", + "decorator 4.0.4 py34_0", + "docutils 0.12 py34_0", + "fastcache 1.0.2 py34_0", + "flask 0.10.1 py34_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "greenlet 0.4.9 py34_0", + "h5py 2.5.0 np110py34_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py34_0", + "ipykernel 4.1.1 py34_0", + "ipython 4.0.1 py34_0", + "ipython-notebook 4.0.4 py34_0", + "ipython-qtconsole 4.0.1 py34_0", + "ipython_genutils 0.1.0 py34_0", + "ipywidgets 4.1.0 py34_0", + "itsdangerous 0.24 py34_0", + "jbig 2.1 0", + "jdcal 1.0 py34_0", + "jedi 0.9.0 py34_0", + "jinja2 2.8 py34_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py34_0", + "jupyter 1.0.0 py34_1", + "jupyter_client 4.1.1 py34_0", + "jupyter_console 4.0.3 py34_0", + "jupyter_core 4.0.6 py34_0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.8.0 py34_0", + "lxml 3.4.4 py34_0", + "markupsafe 0.23 py34_0", + "matplotlib 1.5.0 np110py34_0", + "mistune 0.7.1 py34_0", + "multipledispatch 0.4.8 py34_0", + "nbconvert 4.0.0 py34_0", + "nbformat 4.0.1 py34_0", + "networkx 1.10 py34_0", + "nltk 3.1 py34_0", + "nose 1.3.7 py34_0", + "notebook 4.0.6 py34_0", + "numba 0.22.1 np110py34_0", + "numexpr 2.4.4 np110py34_0", + "numpy 1.10.1 py34_0", + "odo 0.3.4 py34_0", + "openblas 0.2.14 3", + "openpyxl 2.2.6 py34_0", + "openssl 1.0.2d 0", + "pandas 0.17.1 np110py34_0", + "patchelf 0.6 0", + "path.py 8.1.2 py34_1", + "patsy 0.4.0 np110py34_0", + "pep8 1.6.2 py34_0", + "pexpect 3.3 py34_0", + "pickleshare 0.5 py34_0", + "pillow 3.0.0 py34_1", + "pip 7.1.2 py34_0", + "ply 3.8 py34_0", + "psutil 3.3.0 py34_0", + "ptyprocess 0.5 py34_0", + "py 1.4.30 py34_0", + "pyasn1 0.1.9 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.14 py34_0", + "pycrypto 2.6.1 py34_0", + "pycurl 7.19.5.1 py34_3", + "pyflakes 1.0.0 py34_0", + "pygments 2.0.2 py34_0", + "pyopenssl 0.15.1 py34_1", + "pyparsing 2.0.3 py34_0", + "pyqt 4.11.4 py34_1", + "pytables 3.2.2 np110py34_0", + "pytest 2.8.1 py34_0", + "python 3.4.3 2", + "python-dateutil 2.4.2 py34_0", + "pytz 2015.7 py34_0", + "pyyaml 3.11 py34_1", + "pyzmq 14.7.0 py34_1", + "qt 4.8.7 1", + "qtconsole 4.1.1 py34_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py34_0", + "requests 2.8.1 py34_0", + "rope 0.9.4 py34_1", + "scikit-image 0.11.3 np110py34_0", + "scikit-learn 0.17 np110py34_1", + "scipy 0.16.0 np110py34_1", + "setuptools 18.5 py34_0", + "simplegeneric 0.8.1 py34_0", + "sip 4.16.9 py34_0", + "six 1.10.0 py34_0", + "snowballstemmer 1.2.0 py34_0", + "sockjs-tornado 1.0.1 py34_0", + "sphinx 1.3.1 py34_0", + "sphinx_rtd_theme 0.1.7 py34_0", + "spyder 2.3.8 py34_0", + "spyder-app 2.3.8 py34_0", + "sqlalchemy 1.0.9 py34_0", + "sqlite 3.8.4.1 1", + "statsmodels 0.6.1 np110py34_0", + "sympy 0.7.6.1 py34_0", + "terminado 0.5 py34_1", + "theano 0.7.0 np110py34_0", + "tk 8.5.18 0", + "toolz 0.7.4 py34_0", + "tornado 4.3 py34_0", + "traitlets 4.0.0 py34_0", + "ujson 1.33 py34_0", + "unicodecsv 0.14.1 py34_0", + "util-linux 2.21 0", + "werkzeug 0.11.2 py34_0", + "wheel 0.26.0 py34_1", + "xlrd 0.9.4 py34_0", + "xlsxwriter 0.7.7 py34_0", + "xlwt 1.0.0 py34_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "ed138821d1a944aebdfd5e5226b80e10", + "name": "anaconda", + "requires": [], + "size": 2968, + "version": "2.4.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.4 np110py34_p0", + "numpy 1.10.1 py34_p0", + "scikit-learn 0.17 np110py34_p1", + "scipy 0.16.0 np110py34_p1" + ] + } + }, + "anaconda-2.4.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "_license 1.1 py35_1", + "abstract-rendering 0.5.1 np110py35_0", + "alabaster 0.7.6 py35_0", + "anaconda-client 1.2.1 py35_0", + "argcomplete 1.0.0 py35_1", + "astropy 1.0.6 np110py35_0", + "babel 2.1.1 py35_0", + "beautifulsoup4 4.4.1 py35_0", + "bitarray 0.8.1 py35_0", + "blaze-core 0.8.3 py35_0", + "bokeh 0.10.0 py35_0", + "boto 2.38.0 py35_0", + "bottleneck 1.0.0 np110py35_0", + "cffi 1.2.1 py35_0", + "clyent 1.2.0 py35_0", + "colorama 0.3.3 py35_0", + "configobj 5.0.6 py35_0", + "cryptography 1.0.2 py35_0", + "curl 7.45.0 0", + "cycler 0.9.0 py35_0", + "cython 0.23.4 py35_0", + "cytoolz 0.7.4 py35_0", + "datashape 0.4.7 np110py35_1", + "decorator 4.0.4 py35_0", + "docutils 0.12 py35_0", + "dynd-python 0.7.0 py35_0", + "fastcache 1.0.2 py35_0", + "flask 0.10.1 py35_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "greenlet 0.4.9 py35_0", + "h5py 2.5.0 np110py35_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py35_0", + "ipykernel 4.1.1 py35_0", + "ipython 4.0.1 py35_0", + "ipython-notebook 4.0.4 py35_0", + "ipython-qtconsole 4.0.1 py35_0", + "ipython_genutils 0.1.0 py35_0", + "ipywidgets 4.1.0 py35_0", + "itsdangerous 0.24 py35_0", + "jbig 2.1 0", + "jdcal 1.0 py35_0", + "jedi 0.9.0 py35_0", + "jinja2 2.8 py35_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py35_0", + "jupyter 1.0.0 py35_1", + "jupyter_client 4.1.1 py35_0", + "jupyter_console 4.0.3 py35_0", + "jupyter_core 4.0.6 py35_0", + "libdynd 0.7.0 0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.8.0 py35_0", + "lxml 3.4.4 py35_0", + "markupsafe 0.23 py35_0", + "matplotlib 1.5.0 np110py35_0", + "mistune 0.7.1 py35_0", + "multipledispatch 0.4.8 py35_0", + "nbconvert 4.0.0 py35_0", + "nbformat 4.0.1 py35_0", + "networkx 1.10 py35_0", + "nltk 3.1 py35_0", + "nose 1.3.7 py35_0", + "notebook 4.0.6 py35_0", + "numba 0.22.1 np110py35_0", + "numexpr 2.4.4 np110py35_0", + "numpy 1.10.1 py35_0", + "odo 0.3.4 py35_0", + "openblas 0.2.14 3", + "openpyxl 2.2.6 py35_0", + "openssl 1.0.2d 0", + "pandas 0.17.1 np110py35_0", + "patchelf 0.6 0", + "path.py 8.1.2 py35_1", + "patsy 0.4.0 np110py35_0", + "pep8 1.6.2 py35_0", + "pexpect 3.3 py35_0", + "pickleshare 0.5 py35_0", + "pillow 3.0.0 py35_1", + "pip 7.1.2 py35_0", + "ply 3.8 py35_0", + "psutil 3.3.0 py35_0", + "ptyprocess 0.5 py35_0", + "py 1.4.30 py35_0", + "pyasn1 0.1.9 py35_0", + "pycosat 0.6.1 py35_0", + "pycparser 2.14 py35_0", + "pycrypto 2.6.1 py35_0", + "pycurl 7.19.5.1 py35_3", + "pyflakes 1.0.0 py35_0", + "pygments 2.0.2 py35_0", + "pyopenssl 0.15.1 py35_1", + "pyparsing 2.0.3 py35_0", + "pyqt 4.11.4 py35_1", + "pytables 3.2.2 np110py35_0", + "pytest 2.8.1 py35_0", + "python 3.5.1 0", + "python-dateutil 2.4.2 py35_0", + "pytz 2015.7 py35_0", + "pyyaml 3.11 py35_1", + "pyzmq 14.7.0 py35_1", + "qt 4.8.7 1", + "qtconsole 4.1.1 py35_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py35_0", + "requests 2.8.1 py35_0", + "rope 0.9.4 py35_1", + "scikit-image 0.11.3 np110py35_0", + "scikit-learn 0.17 np110py35_1", + "scipy 0.16.0 np110py35_1", + "setuptools 18.5 py35_0", + "simplegeneric 0.8.1 py35_0", + "sip 4.16.9 py35_0", + "six 1.10.0 py35_0", + "snowballstemmer 1.2.0 py35_0", + "sockjs-tornado 1.0.1 py35_0", + "sphinx 1.3.1 py35_0", + "sphinx_rtd_theme 0.1.7 py35_0", + "spyder 2.3.8 py35_0", + "spyder-app 2.3.8 py35_0", + "sqlalchemy 1.0.9 py35_0", + "sqlite 3.8.4.1 1", + "statsmodels 0.6.1 np110py35_0", + "sympy 0.7.6.1 py35_0", + "terminado 0.5 py35_1", + "theano 0.7.0 np110py35_0", + "tk 8.5.18 0", + "toolz 0.7.4 py35_0", + "tornado 4.3 py35_0", + "traitlets 4.0.0 py35_0", + "ujson 1.33 py35_0", + "unicodecsv 0.14.1 py35_0", + "util-linux 2.21 0", + "werkzeug 0.11.2 py35_0", + "wheel 0.26.0 py35_1", + "xlrd 0.9.4 py35_0", + "xlsxwriter 0.7.7 py35_0", + "xlwt 1.0.0 py35_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "878623b2bfa794e8aa442da79049c562", + "name": "anaconda", + "requires": [], + "size": 2984, + "version": "2.4.1", + "with_features_depends": { + "mkl": [ + "mkl-rt 11.1 p0", + "numexpr 2.4.4 np110py35_p0", + "numpy 1.10.1 py35_p0", + "scikit-learn 0.17 np110py35_p1", + "scipy 0.16.0 np110py35_p1" + ] + } + }, + "anaconda-2.5.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-02-03", + "depends": [ + "abstract-rendering 0.5.1 np110py27_0", + "alabaster 0.7.7 py27_0", + "anaconda-client 1.2.2 py27_0", + "argcomplete 1.0.0 py27_1", + "astropy 1.1.1 np110py27_0", + "babel 2.2.0 py27_0", + "backports_abc 0.4 py27_0", + "beautifulsoup4 4.4.1 py27_0", + "bitarray 0.8.1 py27_0", + "blaze-core 0.9.0 py27_0", + "bokeh 0.11.0 py27_0", + "boto 2.39.0 py27_0", + "bottleneck 1.0.0 np110py27_0", + "cairo 1.12.18 6", + "cdecimal 2.3 py27_0", + "cffi 1.2.1 py27_0", + "clyent 1.2.0 py27_0", + "colorama 0.3.6 py27_0", + "configobj 5.0.6 py27_0", + "cryptography 1.0.2 py27_0", + "curl 7.45.0 0", + "cycler 0.9.0 py27_0", + "cython 0.23.4 py27_0", + "cytoolz 0.7.5 py27_0", + "datashape 0.5.0 py27_0", + "decorator 4.0.6 py27_0", + "docutils 0.12 py27_0", + "dynd-python 0.7.1 py27_0", + "enum34 1.1.2 py27_0", + "et_xmlfile 1.0.1 py27_0", + "fastcache 1.0.2 py27_0", + "flask 0.10.1 py27_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "funcsigs 0.4 py27_0", + "futures 3.0.3 py27_0", + "gevent 1.0.2 py27_0", + "gevent-websocket 0.9.5 py27_0", + "greenlet 0.4.9 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.5.0 np110py27_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py27_0", + "ipaddress 1.0.14 py27_0", + "ipykernel 4.2.2 py27_0", + "ipython 4.0.3 py27_0", + "ipython-notebook 4.0.4 py27_0", + "ipython-qtconsole 4.0.1 py27_0", + "ipython_genutils 0.1.0 py27_0", + "ipywidgets 4.1.1 py27_0", + "itsdangerous 0.24 py27_0", + "jbig 2.1 0", + "jdcal 1.2 py27_0", + "jedi 0.9.0 py27_0", + "jinja2 2.8 py27_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py27_0", + "jupyter 1.0.0 py27_1", + "jupyter_client 4.1.1 py27_0", + "jupyter_console 4.1.0 py27_0", + "jupyter_core 4.0.6 py27_0", + "libdynd 0.7.1 0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.8.0 py27_0", + "lxml 3.5.0 py27_0", + "markupsafe 0.23 py27_0", + "matplotlib 1.5.1 np110py27_0", + "mistune 0.7.1 py27_0", + "mkl 11.3.1 0", + "mkl-service 1.1.2 py27_0", + "multipledispatch 0.4.8 py27_0", + "nbconvert 4.1.0 py27_0", + "nbformat 4.0.1 py27_0", + "networkx 1.11 py27_0", + "nltk 3.1 py27_0", + "nose 1.3.7 py27_0", + "notebook 4.1.0 py27_0", + "numba 0.23.1 np110py27_0", + "numexpr 2.4.6 np110py27_1", + "numpy 1.10.4 py27_0", + "odo 0.4.0 py27_0", + "openpyxl 2.3.2 py27_0", + "openssl 1.0.2f 0", + "pandas 0.17.1 np110py27_0", + "patchelf 0.8 0", + "path.py 8.1.2 py27_1", + "patsy 0.4.0 np110py27_0", + "pep8 1.7.0 py27_0", + "pexpect 3.3 py27_0", + "pickleshare 0.5 py27_0", + "pillow 3.1.0 py27_0", + "pip 8.0.2 py27_0", + "pixman 0.32.6 0", + "ply 3.8 py27_0", + "psutil 3.4.2 py27_0", + "ptyprocess 0.5 py27_0", + "py 1.4.31 py27_0", + "pyasn1 0.1.9 py27_0", + "pycairo 1.10.0 py27_0", + "pycosat 0.6.1 py27_0", + "pycparser 2.14 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.5.3 py27_0", + "pyflakes 1.0.0 py27_0", + "pygments 2.1 py27_0", + "pyopenssl 0.15.1 py27_1", + "pyparsing 2.0.3 py27_0", + "pyqt 4.11.4 py27_1", + "pytables 3.2.2 np110py27_0", + "pytest 2.8.5 py27_0", + "python 2.7.11 0", + "python-dateutil 2.4.2 py27_0", + "pytz 2015.7 py27_0", + "pyyaml 3.11 py27_1", + "pyzmq 15.2.0 py27_0", + "qt 4.8.7 1", + "qtconsole 4.1.1 py27_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py27_0", + "requests 2.9.1 py27_0", + "rope 0.9.4 py27_1", + "scikit-image 0.11.3 np110py27_0", + "scikit-learn 0.17 np110py27_2", + "scipy 0.17.0 np110py27_0", + "setuptools 19.6.2 py27_0", + "simplegeneric 0.8.1 py27_0", + "singledispatch 3.4.0.3 py27_0", + "sip 4.16.9 py27_0", + "six 1.10.0 py27_0", + "snowballstemmer 1.2.1 py27_0", + "sockjs-tornado 1.0.1 py27_0", + "sphinx 1.3.5 py27_0", + "sphinx_rtd_theme 0.1.9 py27_0", + "spyder 2.3.8 py27_0", + "spyder-app 2.3.8 py27_0", + "sqlalchemy 1.0.11 py27_0", + "sqlite 3.9.2 0", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.6.1 np110py27_0", + "sympy 0.7.6.1 py27_0", + "terminado 0.5 py27_1", + "tk 8.5.18 0", + "toolz 0.7.4 py27_0", + "tornado 4.3 py27_0", + "traitlets 4.1.0 py27_0", + "unicodecsv 0.14.1 py27_0", + "util-linux 2.21 0", + "werkzeug 0.11.3 py27_0", + "wheel 0.26.0 py27_1", + "xlrd 0.9.4 py27_0", + "xlsxwriter 0.8.4 py27_0", + "xlwt 1.0.0 py27_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "3a9c28eff7a049a264680a2f4cf964d4", + "name": "anaconda", + "requires": [], + "size": 3200, + "version": "2.5.0" + }, + "anaconda-2.5.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-02-03", + "depends": [ + "abstract-rendering 0.5.1 np110py34_0", + "alabaster 0.7.7 py34_0", + "anaconda-client 1.2.2 py34_0", + "argcomplete 1.0.0 py34_1", + "astropy 1.1.1 np110py34_0", + "babel 2.2.0 py34_0", + "backports_abc 0.4 py34_0", + "beautifulsoup4 4.4.1 py34_0", + "bitarray 0.8.1 py34_0", + "blaze-core 0.9.0 py34_0", + "bokeh 0.11.0 py34_0", + "boto 2.39.0 py34_0", + "bottleneck 1.0.0 np110py34_0", + "cffi 1.2.1 py34_0", + "clyent 1.2.0 py34_0", + "colorama 0.3.6 py34_0", + "configobj 5.0.6 py34_0", + "cryptography 1.0.2 py34_0", + "curl 7.45.0 0", + "cycler 0.9.0 py34_0", + "cython 0.23.4 py34_0", + "cytoolz 0.7.5 py34_0", + "datashape 0.5.0 py34_0", + "decorator 4.0.6 py34_0", + "docutils 0.12 py34_0", + "et_xmlfile 1.0.1 py34_0", + "fastcache 1.0.2 py34_0", + "flask 0.10.1 py34_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "futures 3.0.3 py34_0", + "greenlet 0.4.9 py34_0", + "h5py 2.5.0 np110py34_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py34_0", + "ipykernel 4.2.2 py34_0", + "ipython 4.0.3 py34_0", + "ipython-notebook 4.0.4 py34_0", + "ipython-qtconsole 4.0.1 py34_0", + "ipython_genutils 0.1.0 py34_0", + "ipywidgets 4.1.1 py34_0", + "itsdangerous 0.24 py34_0", + "jbig 2.1 0", + "jdcal 1.2 py34_0", + "jedi 0.9.0 py34_0", + "jinja2 2.8 py34_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py34_0", + "jupyter 1.0.0 py34_1", + "jupyter_client 4.1.1 py34_0", + "jupyter_console 4.1.0 py34_0", + "jupyter_core 4.0.6 py34_0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.8.0 py34_0", + "lxml 3.5.0 py34_0", + "markupsafe 0.23 py34_0", + "matplotlib 1.5.1 np110py34_0", + "mistune 0.7.1 py34_0", + "mkl 11.3.1 0", + "mkl-service 1.1.2 py34_0", + "multipledispatch 0.4.8 py34_0", + "nbconvert 4.1.0 py34_0", + "nbformat 4.0.1 py34_0", + "networkx 1.11 py34_0", + "nltk 3.1 py34_0", + "nose 1.3.7 py34_0", + "notebook 4.1.0 py34_0", + "numba 0.23.1 np110py34_0", + "numexpr 2.4.6 np110py34_1", + "numpy 1.10.4 py34_0", + "odo 0.4.0 py34_0", + "openpyxl 2.3.2 py34_0", + "openssl 1.0.2f 0", + "pandas 0.17.1 np110py34_0", + "patchelf 0.8 0", + "path.py 8.1.2 py34_1", + "patsy 0.4.0 np110py34_0", + "pep8 1.7.0 py34_0", + "pexpect 3.3 py34_0", + "pickleshare 0.5 py34_0", + "pillow 3.1.0 py34_0", + "pip 8.0.2 py34_0", + "ply 3.8 py34_0", + "psutil 3.4.2 py34_0", + "ptyprocess 0.5 py34_0", + "py 1.4.31 py34_0", + "pyasn1 0.1.9 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.14 py34_0", + "pycrypto 2.6.1 py34_0", + "pycurl 7.19.5.3 py34_0", + "pyflakes 1.0.0 py34_0", + "pygments 2.1 py34_0", + "pyopenssl 0.15.1 py34_1", + "pyparsing 2.0.3 py34_0", + "pyqt 4.11.4 py34_1", + "pytables 3.2.2 np110py34_0", + "pytest 2.8.5 py34_0", + "python 3.4.4 0", + "python-dateutil 2.4.2 py34_0", + "pytz 2015.7 py34_0", + "pyyaml 3.11 py34_1", + "pyzmq 15.2.0 py34_0", + "qt 4.8.7 1", + "qtconsole 4.1.1 py34_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py34_0", + "requests 2.9.1 py34_0", + "rope 0.9.4 py34_1", + "scikit-image 0.11.3 np110py34_0", + "scikit-learn 0.17 np110py34_2", + "scipy 0.17.0 np110py34_0", + "setuptools 19.6.2 py34_0", + "simplegeneric 0.8.1 py34_0", + "sip 4.16.9 py34_0", + "six 1.10.0 py34_0", + "snowballstemmer 1.2.1 py34_0", + "sockjs-tornado 1.0.1 py34_0", + "sphinx 1.3.5 py34_0", + "sphinx_rtd_theme 0.1.9 py34_0", + "spyder 2.3.8 py34_0", + "spyder-app 2.3.8 py34_0", + "sqlalchemy 1.0.11 py34_0", + "sqlite 3.9.2 0", + "statsmodels 0.6.1 np110py34_0", + "sympy 0.7.6.1 py34_0", + "terminado 0.5 py34_1", + "tk 8.5.18 0", + "toolz 0.7.4 py34_0", + "tornado 4.3 py34_0", + "traitlets 4.1.0 py34_0", + "unicodecsv 0.14.1 py34_0", + "util-linux 2.21 0", + "werkzeug 0.11.3 py34_0", + "wheel 0.26.0 py34_1", + "xlrd 0.9.4 py34_0", + "xlsxwriter 0.8.4 py34_0", + "xlwt 1.0.0 py34_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "5d5502b05481533c5cae680341a1e31c", + "name": "anaconda", + "requires": [], + "size": 2962, + "version": "2.5.0" + }, + "anaconda-2.5.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-02-03", + "depends": [ + "abstract-rendering 0.5.1 np110py35_0", + "alabaster 0.7.7 py35_0", + "anaconda-client 1.2.2 py35_0", + "argcomplete 1.0.0 py35_1", + "astropy 1.1.1 np110py35_0", + "babel 2.2.0 py35_0", + "beautifulsoup4 4.4.1 py35_0", + "bitarray 0.8.1 py35_0", + "blaze-core 0.9.0 py35_0", + "bokeh 0.11.0 py35_0", + "boto 2.39.0 py35_0", + "bottleneck 1.0.0 np110py35_0", + "cffi 1.2.1 py35_0", + "clyent 1.2.0 py35_0", + "colorama 0.3.6 py35_0", + "configobj 5.0.6 py35_0", + "cryptography 1.0.2 py35_0", + "curl 7.45.0 0", + "cycler 0.9.0 py35_0", + "cython 0.23.4 py35_0", + "cytoolz 0.7.5 py35_0", + "datashape 0.5.0 py35_0", + "decorator 4.0.6 py35_0", + "docutils 0.12 py35_0", + "dynd-python 0.7.1 py35_0", + "et_xmlfile 1.0.1 py35_0", + "fastcache 1.0.2 py35_0", + "flask 0.10.1 py35_1", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "futures 3.0.3 py35_0", + "greenlet 0.4.9 py35_0", + "h5py 2.5.0 np110py35_4", + "hdf5 1.8.15.1 2", + "idna 2.0 py35_0", + "ipykernel 4.2.2 py35_0", + "ipython 4.0.3 py35_0", + "ipython-notebook 4.0.4 py35_0", + "ipython-qtconsole 4.0.1 py35_0", + "ipython_genutils 0.1.0 py35_0", + "ipywidgets 4.1.1 py35_0", + "itsdangerous 0.24 py35_0", + "jbig 2.1 0", + "jdcal 1.2 py35_0", + "jedi 0.9.0 py35_0", + "jinja2 2.8 py35_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py35_0", + "jupyter 1.0.0 py35_1", + "jupyter_client 4.1.1 py35_0", + "jupyter_console 4.1.0 py35_0", + "jupyter_core 4.0.6 py35_0", + "libdynd 0.7.1 0", + "libffi 3.0.13 0", + "libgfortran 1.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.8.0 py35_0", + "lxml 3.5.0 py35_0", + "markupsafe 0.23 py35_0", + "matplotlib 1.5.1 np110py35_0", + "mistune 0.7.1 py35_0", + "mkl 11.3.1 0", + "mkl-service 1.1.2 py35_0", + "multipledispatch 0.4.8 py35_0", + "nbconvert 4.1.0 py35_0", + "nbformat 4.0.1 py35_0", + "networkx 1.11 py35_0", + "nltk 3.1 py35_0", + "nose 1.3.7 py35_0", + "notebook 4.1.0 py35_0", + "numba 0.23.1 np110py35_0", + "numexpr 2.4.6 np110py35_1", + "numpy 1.10.4 py35_0", + "odo 0.4.0 py35_0", + "openpyxl 2.3.2 py35_0", + "openssl 1.0.2f 0", + "pandas 0.17.1 np110py35_0", + "patchelf 0.8 0", + "path.py 8.1.2 py35_1", + "patsy 0.4.0 np110py35_0", + "pep8 1.7.0 py35_0", + "pexpect 3.3 py35_0", + "pickleshare 0.5 py35_0", + "pillow 3.1.0 py35_0", + "pip 8.0.2 py35_0", + "ply 3.8 py35_0", + "psutil 3.4.2 py35_0", + "ptyprocess 0.5 py35_0", + "py 1.4.31 py35_0", + "pyasn1 0.1.9 py35_0", + "pycosat 0.6.1 py35_0", + "pycparser 2.14 py35_0", + "pycrypto 2.6.1 py35_0", + "pycurl 7.19.5.3 py35_0", + "pyflakes 1.0.0 py35_0", + "pygments 2.1 py35_0", + "pyopenssl 0.15.1 py35_1", + "pyparsing 2.0.3 py35_0", + "pyqt 4.11.4 py35_1", + "pytables 3.2.2 np110py35_0", + "pytest 2.8.5 py35_0", + "python 3.5.1 0", + "python-dateutil 2.4.2 py35_0", + "pytz 2015.7 py35_0", + "pyyaml 3.11 py35_1", + "pyzmq 15.2.0 py35_0", + "qt 4.8.7 1", + "qtconsole 4.1.1 py35_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py35_0", + "requests 2.9.1 py35_0", + "rope 0.9.4 py35_1", + "scikit-image 0.11.3 np110py35_0", + "scikit-learn 0.17 np110py35_2", + "scipy 0.17.0 np110py35_0", + "setuptools 19.6.2 py35_0", + "simplegeneric 0.8.1 py35_0", + "sip 4.16.9 py35_0", + "six 1.10.0 py35_0", + "snowballstemmer 1.2.1 py35_0", + "sockjs-tornado 1.0.1 py35_0", + "sphinx 1.3.5 py35_0", + "sphinx_rtd_theme 0.1.9 py35_0", + "spyder 2.3.8 py35_0", + "spyder-app 2.3.8 py35_0", + "sqlalchemy 1.0.11 py35_0", + "sqlite 3.9.2 0", + "statsmodels 0.6.1 np110py35_0", + "sympy 0.7.6.1 py35_0", + "terminado 0.5 py35_1", + "tk 8.5.18 0", + "toolz 0.7.4 py35_0", + "tornado 4.3 py35_0", + "traitlets 4.1.0 py35_0", + "unicodecsv 0.14.1 py35_0", + "util-linux 2.21 0", + "werkzeug 0.11.3 py35_0", + "wheel 0.26.0 py35_1", + "xlrd 0.9.4 py35_0", + "xlsxwriter 0.8.4 py35_0", + "xlwt 1.0.0 py35_0", + "xz 5.0.5 0", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "license_family": "Proprietary", + "md5": "65cbd57a062fab73f85735a2485086fb", + "name": "anaconda", + "requires": [], + "size": 2974, + "version": "2.5.0" + }, + "anaconda-4.0.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "alabaster 0.7.7 py27_0", + "anaconda-client 1.4.0 py27_0", + "anaconda-navigator 1.1.0 py27_0", + "argcomplete 1.0.0 py27_1", + "astropy 1.1.2 np110py27_0", + "babel 2.2.0 py27_0", + "backports_abc 0.4 py27_0", + "beautifulsoup4 4.4.1 py27_0", + "bitarray 0.8.1 py27_0", + "blaze 0.9.1 py27_0", + "bokeh 0.11.1 py27_0", + "boto 2.39.0 py27_0", + "bottleneck 1.0.0 np110py27_0", + "cairo 1.12.18 6", + "cdecimal 2.3 py27_0", + "cffi 1.5.2 py27_0", + "chest 0.2.3 py27_0", + "cloudpickle 0.1.1 py27_0", + "clyent 1.2.1 py27_0", + "colorama 0.3.7 py27_0", + "conda-manager 0.3.1 py27_0", + "configobj 5.0.6 py27_0", + "cryptography 1.3 py27_0", + "curl 7.45.0 0", + "cycler 0.10.0 py27_0", + "cython 0.23.4 py27_0", + "cytoolz 0.7.5 py27_0", + "dask 0.8.1 py27_0", + "datashape 0.5.1 py27_0", + "decorator 4.0.9 py27_0", + "dill 0.2.4 py27_0", + "docutils 0.12 py27_0", + "dynd-python 0.7.2 py27_0", + "enum34 1.1.2 py27_0", + "et_xmlfile 1.0.1 py27_0", + "fastcache 1.0.2 py27_0", + "flask 0.10.1 py27_1", + "flask-cors 2.1.2 py27_0", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "funcsigs 0.4 py27_0", + "futures 3.0.3 py27_0", + "gevent 1.1.0 py27_0", + "greenlet 0.4.9 py27_0", + "grin 1.2.1 py27_1", + "h5py 2.5.0 np110py27_4", + "hdf5 1.8.15.1 2", + "heapdict 1.0.0 py27_0", + "idna 2.0 py27_0", + "ipaddress 1.0.14 py27_0", + "ipykernel 4.3.1 py27_0", + "ipython 4.1.2 py27_1", + "ipython_genutils 0.1.0 py27_0", + "ipywidgets 4.1.1 py27_0", + "itsdangerous 0.24 py27_0", + "jbig 2.1 0", + "jdcal 1.2 py27_0", + "jedi 0.9.0 py27_0", + "jinja2 2.8 py27_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py27_0", + "jupyter 1.0.0 py27_2", + "jupyter_client 4.2.2 py27_0", + "jupyter_console 4.1.1 py27_0", + "jupyter_core 4.1.0 py27_0", + "libdynd 0.7.2 0", + "libffi 3.0.13 0", + "libgfortran 3.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.9.0 py27_0", + "locket 0.2.0 py27_0", + "lxml 3.6.0 py27_0", + "markupsafe 0.23 py27_0", + "matplotlib 1.5.1 np110py27_0", + "mistune 0.7.2 py27_0", + "mkl 11.3.1 0", + "mkl-service 1.1.2 py27_0", + "mpmath 0.19 py27_0", + "multipledispatch 0.4.8 py27_0", + "nbconvert 4.1.0 py27_0", + "nbformat 4.0.1 py27_0", + "networkx 1.11 py27_0", + "nltk 3.2 py27_0", + "nose 1.3.7 py27_0", + "notebook 4.1.0 py27_1", + "numba 0.24.0 np110py27_0", + "numexpr 2.5 np110py27_0", + "numpy 1.10.4 py27_1", + "odo 0.4.2 py27_0", + "openpyxl 2.3.2 py27_0", + "openssl 1.0.2g 0", + "pandas 0.18.0 np110py27_0", + "partd 0.3.2 py27_1", + "patchelf 0.8 0", + "path.py 8.1.2 py27_1", + "patsy 0.4.0 np110py27_0", + "pep8 1.7.0 py27_0", + "pexpect 4.0.1 py27_0", + "pickleshare 0.5 py27_0", + "pillow 3.1.1 py27_0", + "pip 8.1.1 py27_1", + "pixman 0.32.6 0", + "ply 3.8 py27_0", + "psutil 4.1.0 py27_0", + "ptyprocess 0.5 py27_0", + "py 1.4.31 py27_0", + "pyasn1 0.1.9 py27_0", + "pycairo 1.10.0 py27_0", + "pycosat 0.6.1 py27_0", + "pycparser 2.14 py27_0", + "pycrypto 2.6.1 py27_0", + "pycurl 7.19.5.3 py27_0", + "pyflakes 1.1.0 py27_0", + "pygments 2.1.1 py27_0", + "pyopenssl 0.15.1 py27_2", + "pyparsing 2.0.3 py27_0", + "pyqt 4.11.4 py27_1", + "pytables 3.2.2 np110py27_1", + "pytest 2.8.5 py27_0", + "python 2.7.11 0", + "python-dateutil 2.5.1 py27_0", + "pytz 2016.2 py27_0", + "pyyaml 3.11 py27_1", + "pyzmq 15.2.0 py27_0", + "qt 4.8.7 1", + "qtawesome 0.3.2 py27_0", + "qtconsole 4.2.0 py27_0", + "qtpy 1.0 py27_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py27_0", + "requests 2.9.1 py27_0", + "rope 0.9.4 py27_1", + "scikit-image 0.12.3 np110py27_0", + "scikit-learn 0.17.1 np110py27_0", + "scipy 0.17.0 np110py27_2", + "setuptools 20.3 py27_0", + "simplegeneric 0.8.1 py27_0", + "singledispatch 3.4.0.3 py27_0", + "sip 4.16.9 py27_0", + "six 1.10.0 py27_0", + "snowballstemmer 1.2.1 py27_0", + "sockjs-tornado 1.0.1 py27_0", + "sphinx 1.3.5 py27_0", + "sphinx_rtd_theme 0.1.9 py27_0", + "spyder 2.3.8 py27_1", + "sqlalchemy 1.0.12 py27_0", + "sqlite 3.9.2 0", + "ssl_match_hostname 3.4.0.2 py27_0", + "statsmodels 0.6.1 np110py27_0", + "sympy 1.0 py27_0", + "terminado 0.5 py27_1", + "tk 8.5.18 0", + "toolz 0.7.4 py27_0", + "tornado 4.3 py27_0", + "traitlets 4.2.1 py27_0", + "unicodecsv 0.14.1 py27_0", + "util-linux 2.21 0", + "werkzeug 0.11.4 py27_0", + "wheel 0.29.0 py27_0", + "xlrd 0.9.4 py27_0", + "xlsxwriter 0.8.4 py27_0", + "xlwt 1.0.0 py27_0", + "xz 5.0.5 1", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "md5": "7c07051a1b3bc1f3399205f7bce9a787", + "name": "anaconda", + "requires": [], + "size": 5494, + "version": "4.0.0" + }, + "anaconda-4.0.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "alabaster 0.7.7 py34_0", + "anaconda-client 1.4.0 py34_0", + "argcomplete 1.0.0 py34_1", + "astropy 1.1.2 np110py34_0", + "babel 2.2.0 py34_0", + "backports_abc 0.4 py34_0", + "beautifulsoup4 4.4.1 py34_0", + "bitarray 0.8.1 py34_0", + "blaze 0.9.1 py34_0", + "bokeh 0.11.1 py34_0", + "boto 2.39.0 py34_0", + "bottleneck 1.0.0 np110py34_0", + "cffi 1.5.2 py34_0", + "chest 0.2.3 py34_0", + "cloudpickle 0.1.1 py34_0", + "clyent 1.2.1 py34_0", + "colorama 0.3.7 py34_0", + "conda-manager 0.3.1 py34_0", + "configobj 5.0.6 py34_0", + "cryptography 1.3 py34_0", + "curl 7.45.0 0", + "cycler 0.10.0 py34_0", + "cython 0.23.4 py34_0", + "cytoolz 0.7.5 py34_0", + "dask 0.8.1 py34_0", + "datashape 0.5.1 py34_0", + "decorator 4.0.9 py34_0", + "dill 0.2.4 py34_0", + "docutils 0.12 py34_0", + "et_xmlfile 1.0.1 py34_0", + "fastcache 1.0.2 py34_0", + "flask 0.10.1 py34_1", + "flask-cors 2.1.2 py34_0", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "gevent 1.1.0 py34_0", + "greenlet 0.4.9 py34_0", + "h5py 2.5.0 np110py34_4", + "hdf5 1.8.15.1 2", + "heapdict 1.0.0 py34_0", + "idna 2.0 py34_0", + "ipykernel 4.3.1 py34_0", + "ipython 4.1.2 py34_1", + "ipython_genutils 0.1.0 py34_0", + "ipywidgets 4.1.1 py34_0", + "itsdangerous 0.24 py34_0", + "jbig 2.1 0", + "jdcal 1.2 py34_0", + "jedi 0.9.0 py34_0", + "jinja2 2.8 py34_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py34_0", + "jupyter 1.0.0 py34_2", + "jupyter_client 4.2.2 py34_0", + "jupyter_console 4.1.1 py34_0", + "jupyter_core 4.1.0 py34_0", + "libffi 3.0.13 0", + "libgfortran 3.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.9.0 py34_0", + "locket 0.2.0 py34_0", + "lxml 3.6.0 py34_0", + "markupsafe 0.23 py34_0", + "matplotlib 1.5.1 np110py34_0", + "mistune 0.7.2 py34_0", + "mkl 11.3.1 0", + "mkl-service 1.1.2 py34_0", + "mpmath 0.19 py34_0", + "multipledispatch 0.4.8 py34_0", + "nbconvert 4.1.0 py34_0", + "nbformat 4.0.1 py34_0", + "networkx 1.11 py34_0", + "nltk 3.2 py34_0", + "nose 1.3.7 py34_0", + "notebook 4.1.0 py34_1", + "numba 0.24.0 np110py34_0", + "numexpr 2.5 np110py34_0", + "numpy 1.10.4 py34_1", + "odo 0.4.2 py34_0", + "openpyxl 2.3.2 py34_0", + "openssl 1.0.2g 0", + "pandas 0.18.0 np110py34_0", + "partd 0.3.2 py34_1", + "patchelf 0.8 0", + "path.py 8.1.2 py34_1", + "patsy 0.4.0 np110py34_0", + "pep8 1.7.0 py34_0", + "pexpect 4.0.1 py34_0", + "pickleshare 0.5 py34_0", + "pillow 3.1.1 py34_0", + "pip 8.1.1 py34_1", + "ply 3.8 py34_0", + "psutil 4.1.0 py34_0", + "ptyprocess 0.5 py34_0", + "py 1.4.31 py34_0", + "pyasn1 0.1.9 py34_0", + "pycosat 0.6.1 py34_0", + "pycparser 2.14 py34_0", + "pycrypto 2.6.1 py34_0", + "pycurl 7.19.5.3 py34_0", + "pyflakes 1.1.0 py34_0", + "pygments 2.1.1 py34_0", + "pyopenssl 0.15.1 py34_2", + "pyparsing 2.0.3 py34_0", + "pyqt 4.11.4 py34_1", + "pytables 3.2.2 np110py34_1", + "pytest 2.8.5 py34_0", + "python 3.4.4 0", + "python-dateutil 2.5.1 py34_0", + "pytz 2016.2 py34_0", + "pyyaml 3.11 py34_1", + "pyzmq 15.2.0 py34_0", + "qt 4.8.7 1", + "qtawesome 0.3.2 py34_0", + "qtconsole 4.2.0 py34_0", + "qtpy 1.0 py34_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py34_0", + "requests 2.9.1 py34_0", + "rope 0.9.4 py34_1", + "scikit-image 0.12.3 np110py34_0", + "scikit-learn 0.17.1 np110py34_0", + "scipy 0.17.0 np110py34_2", + "setuptools 20.3 py34_0", + "simplegeneric 0.8.1 py34_0", + "singledispatch 3.4.0.3 py34_0", + "sip 4.16.9 py34_0", + "six 1.10.0 py34_0", + "snowballstemmer 1.2.1 py34_0", + "sockjs-tornado 1.0.1 py34_0", + "sphinx 1.3.5 py34_0", + "sphinx_rtd_theme 0.1.9 py34_0", + "spyder 2.3.8 py34_1", + "sqlalchemy 1.0.12 py34_0", + "sqlite 3.9.2 0", + "statsmodels 0.6.1 np110py34_0", + "sympy 1.0 py34_0", + "terminado 0.5 py34_1", + "tk 8.5.18 0", + "toolz 0.7.4 py34_0", + "tornado 4.3 py34_0", + "traitlets 4.2.1 py34_0", + "unicodecsv 0.14.1 py34_0", + "util-linux 2.21 0", + "werkzeug 0.11.4 py34_0", + "wheel 0.29.0 py34_0", + "xlrd 0.9.4 py34_0", + "xlsxwriter 0.8.4 py34_0", + "xlwt 1.0.0 py34_0", + "xz 5.0.5 1", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "md5": "38b23f04e826921bbfd0905c55745956", + "name": "anaconda", + "requires": [], + "size": 5284, + "version": "4.0.0" + }, + "anaconda-4.0.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "alabaster 0.7.7 py35_0", + "anaconda-client 1.4.0 py35_0", + "anaconda-navigator 1.1.0 py35_0", + "argcomplete 1.0.0 py35_1", + "astropy 1.1.2 np110py35_0", + "babel 2.2.0 py35_0", + "beautifulsoup4 4.4.1 py35_0", + "bitarray 0.8.1 py35_0", + "blaze 0.9.1 py35_0", + "bokeh 0.11.1 py35_0", + "boto 2.39.0 py35_0", + "bottleneck 1.0.0 np110py35_0", + "cffi 1.5.2 py35_0", + "chest 0.2.3 py35_0", + "cloudpickle 0.1.1 py35_0", + "clyent 1.2.1 py35_0", + "colorama 0.3.7 py35_0", + "conda-manager 0.3.1 py35_0", + "configobj 5.0.6 py35_0", + "cryptography 1.3 py35_0", + "curl 7.45.0 0", + "cycler 0.10.0 py35_0", + "cython 0.23.4 py35_0", + "cytoolz 0.7.5 py35_0", + "dask 0.8.1 py35_0", + "datashape 0.5.1 py35_0", + "decorator 4.0.9 py35_0", + "dill 0.2.4 py35_0", + "docutils 0.12 py35_0", + "dynd-python 0.7.2 py35_0", + "et_xmlfile 1.0.1 py35_0", + "fastcache 1.0.2 py35_0", + "flask 0.10.1 py35_1", + "flask-cors 2.1.2 py35_0", + "fontconfig 2.11.1 5", + "freetype 2.5.5 0", + "gevent 1.1.0 py35_0", + "greenlet 0.4.9 py35_0", + "h5py 2.5.0 np110py35_4", + "hdf5 1.8.15.1 2", + "heapdict 1.0.0 py35_0", + "idna 2.0 py35_0", + "ipykernel 4.3.1 py35_0", + "ipython 4.1.2 py35_1", + "ipython_genutils 0.1.0 py35_0", + "ipywidgets 4.1.1 py35_0", + "itsdangerous 0.24 py35_0", + "jbig 2.1 0", + "jdcal 1.2 py35_0", + "jedi 0.9.0 py35_0", + "jinja2 2.8 py35_0", + "jpeg 8d 0", + "jsonschema 2.4.0 py35_0", + "jupyter 1.0.0 py35_2", + "jupyter_client 4.2.2 py35_0", + "jupyter_console 4.1.1 py35_0", + "jupyter_core 4.1.0 py35_0", + "libdynd 0.7.2 0", + "libffi 3.0.13 0", + "libgfortran 3.0 0", + "libpng 1.6.17 0", + "libsodium 1.0.3 0", + "libtiff 4.0.6 1", + "libxml2 2.9.2 0", + "libxslt 1.1.28 0", + "llvmlite 0.9.0 py35_0", + "locket 0.2.0 py35_0", + "lxml 3.6.0 py35_0", + "markupsafe 0.23 py35_0", + "matplotlib 1.5.1 np110py35_0", + "mistune 0.7.2 py35_0", + "mkl 11.3.1 0", + "mkl-service 1.1.2 py35_0", + "mpmath 0.19 py35_0", + "multipledispatch 0.4.8 py35_0", + "nbconvert 4.1.0 py35_0", + "nbformat 4.0.1 py35_0", + "networkx 1.11 py35_0", + "nltk 3.2 py35_0", + "nose 1.3.7 py35_0", + "notebook 4.1.0 py35_1", + "numba 0.24.0 np110py35_0", + "numexpr 2.5 np110py35_0", + "numpy 1.10.4 py35_1", + "odo 0.4.2 py35_0", + "openpyxl 2.3.2 py35_0", + "openssl 1.0.2g 0", + "pandas 0.18.0 np110py35_0", + "partd 0.3.2 py35_1", + "patchelf 0.8 0", + "path.py 8.1.2 py35_1", + "patsy 0.4.0 np110py35_0", + "pep8 1.7.0 py35_0", + "pexpect 4.0.1 py35_0", + "pickleshare 0.5 py35_0", + "pillow 3.1.1 py35_0", + "pip 8.1.1 py35_1", + "ply 3.8 py35_0", + "psutil 4.1.0 py35_0", + "ptyprocess 0.5 py35_0", + "py 1.4.31 py35_0", + "pyasn1 0.1.9 py35_0", + "pycosat 0.6.1 py35_0", + "pycparser 2.14 py35_0", + "pycrypto 2.6.1 py35_0", + "pycurl 7.19.5.3 py35_0", + "pyflakes 1.1.0 py35_0", + "pygments 2.1.1 py35_0", + "pyopenssl 0.15.1 py35_2", + "pyparsing 2.0.3 py35_0", + "pyqt 4.11.4 py35_1", + "pytables 3.2.2 np110py35_1", + "pytest 2.8.5 py35_0", + "python 3.5.1 0", + "python-dateutil 2.5.1 py35_0", + "pytz 2016.2 py35_0", + "pyyaml 3.11 py35_1", + "pyzmq 15.2.0 py35_0", + "qt 4.8.7 1", + "qtawesome 0.3.2 py35_0", + "qtconsole 4.2.0 py35_0", + "qtpy 1.0 py35_0", + "readline 6.2 2", + "redis 2.6.9 0", + "redis-py 2.10.3 py35_0", + "requests 2.9.1 py35_0", + "rope 0.9.4 py35_1", + "scikit-image 0.12.3 np110py35_0", + "scikit-learn 0.17.1 np110py35_0", + "scipy 0.17.0 np110py35_2", + "setuptools 20.3 py35_0", + "simplegeneric 0.8.1 py35_0", + "singledispatch 3.4.0.3 py35_0", + "sip 4.16.9 py35_0", + "six 1.10.0 py35_0", + "snowballstemmer 1.2.1 py35_0", + "sockjs-tornado 1.0.1 py35_0", + "sphinx 1.3.5 py35_0", + "sphinx_rtd_theme 0.1.9 py35_0", + "spyder 2.3.8 py35_1", + "sqlalchemy 1.0.12 py35_0", + "sqlite 3.9.2 0", + "statsmodels 0.6.1 np110py35_0", + "sympy 1.0 py35_0", + "terminado 0.5 py35_1", + "tk 8.5.18 0", + "toolz 0.7.4 py35_0", + "tornado 4.3 py35_0", + "traitlets 4.2.1 py35_0", + "unicodecsv 0.14.1 py35_0", + "util-linux 2.21 0", + "werkzeug 0.11.4 py35_0", + "wheel 0.29.0 py35_0", + "xlrd 0.9.4 py35_0", + "xlsxwriter 0.8.4 py35_0", + "xlwt 1.0.0 py35_0", + "xz 5.0.5 1", + "yaml 0.1.6 0", + "zeromq 4.1.3 0", + "zlib 1.2.8 0" + ], + "license": "BSD", + "md5": "691f140e398c7201a16e4a77b5103976", + "name": "anaconda", + "requires": [], + "size": 5294, + "version": "4.0.0" + }, + "anaconda-build-0.10.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-31", + "depends": [ + "anaconda-client 1.0.1", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "a26b22ab155b9c1b582ff0a3e5ed6782", + "name": "anaconda-build", + "requires": [], + "size": 66530, + "version": "0.10.7" + }, + "anaconda-build-0.10.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-31", + "depends": [ + "anaconda-client 1.0.1", + "jinja2", + "psutil", + "python 3.3*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "0416df152a6ac92d35ec00f4fe40a584", + "name": "anaconda-build", + "requires": [], + "size": 67876, + "version": "0.10.7" + }, + "anaconda-build-0.10.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-31", + "depends": [ + "anaconda-client 1.0.1", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "a8d7d5cec95732ac90d2a36e50c19b9e", + "name": "anaconda-build", + "requires": [], + "size": 68084, + "version": "0.10.7" + }, + "anaconda-build-0.10.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "anaconda-client 1.0.2", + "jinja2", + "psutil", + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "99d3fce760ca61e069a51f24a41aafdb", + "name": "anaconda-build", + "requires": [], + "size": 67764, + "version": "0.10.7" + }, + "anaconda-build-0.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "57b8f95123794b668eb5f63f32592483", + "name": "anaconda-build", + "requires": [], + "size": 69883, + "version": "0.11.0" + }, + "anaconda-build-0.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "4661f6c0200f4933f4fe1258b0ab7a07", + "name": "anaconda-build", + "requires": [], + "size": 71327, + "version": "0.11.0" + }, + "anaconda-build-0.11.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "444f796b5bc8bf0ace862e013b76a9b2", + "name": "anaconda-build", + "requires": [], + "size": 71143, + "version": "0.11.0" + }, + "anaconda-build-0.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "7624ccad20b70fa6f0d1b89393827a91", + "name": "anaconda-build", + "requires": [], + "size": 70444, + "version": "0.12.0" + }, + "anaconda-build-0.12.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "bbb91d70458b3d397c8dad412b16f366", + "name": "anaconda-build", + "requires": [], + "size": 71956, + "version": "0.12.0" + }, + "anaconda-build-0.12.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "b9f899d5136730af9cd148b1b8b72956", + "name": "anaconda-build", + "requires": [], + "size": 71695, + "version": "0.12.0" + }, + "anaconda-build-0.13.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-04", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "79c3c685403b30982f97f7749fea5b9f", + "name": "anaconda-build", + "requires": [], + "size": 84817, + "version": "0.13.1" + }, + "anaconda-build-0.13.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-04", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "75b0d8cfaa4a10b2203b8e46f56d1725", + "name": "anaconda-build", + "requires": [], + "size": 86933, + "version": "0.13.1" + }, + "anaconda-build-0.13.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-04", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "fb4476db2adc17d31382c4dd7650d8a3", + "name": "anaconda-build", + "requires": [], + "size": 86534, + "version": "0.13.1" + }, + "anaconda-build-0.13.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "a6a6964ea07f2da9c597c4405cc62ef3", + "name": "anaconda-build", + "requires": [], + "size": 85353, + "version": "0.13.2" + }, + "anaconda-build-0.13.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "06fde705d47cb4b1f2447fb6f6df9a0d", + "name": "anaconda-build", + "requires": [], + "size": 87690, + "version": "0.13.2" + }, + "anaconda-build-0.13.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "2b4f01b5341823472c44cd4e343c5234", + "name": "anaconda-build", + "requires": [], + "size": 87137, + "version": "0.13.2" + }, + "anaconda-build-0.14.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "7fa61635135b073d9847d27e56e3df4d", + "name": "anaconda-build", + "requires": [], + "size": 93164, + "version": "0.14.0" + }, + "anaconda-build-0.14.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "0c813926fcfa35e6426a4244302db99a", + "name": "anaconda-build", + "requires": [], + "size": 95825, + "version": "0.14.0" + }, + "anaconda-build-0.14.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "aa48d3f5cf5e7cf71fecddc008f14f2c", + "name": "anaconda-build", + "requires": [], + "size": 95374, + "version": "0.14.0" + }, + "anaconda-build-0.14.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "e1ca6c794e7f98f607ec17a06ccc29d5", + "name": "anaconda-build", + "requires": [], + "size": 95168, + "version": "0.14.1" + }, + "anaconda-build-0.14.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "4a545765cbabf55801b7b42336c0b002", + "name": "anaconda-build", + "requires": [], + "size": 97691, + "version": "0.14.1" + }, + "anaconda-build-0.14.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "589d4d3e13d0c0112348d745da817aa2", + "name": "anaconda-build", + "requires": [], + "size": 97157, + "version": "0.14.1" + }, + "anaconda-build-1.15.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "d6d79ecc55198d4a34b91c301ae6e01d", + "name": "anaconda-build", + "requires": [], + "size": 107544, + "version": "1.15.0" + }, + "anaconda-build-1.15.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "c61ae57dc3ee498f3c84f02f0fe1bdea", + "name": "anaconda-build", + "requires": [], + "size": 110810, + "version": "1.15.0" + }, + "anaconda-build-1.15.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "anaconda-client", + "jinja2", + "psutil", + "python 3.5*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "a878585a9702d2e8504c12ab40088f63", + "name": "anaconda-build", + "requires": [], + "size": 110283, + "version": "1.15.0" + }, + "anaconda-client-0.14.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "clyent", + "pillow", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "701698bb1da37f39a7aca81bda9b8719", + "name": "anaconda-client", + "requires": [], + "size": 91737, + "version": "0.14.0" + }, + "anaconda-client-0.14.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "clyent", + "pillow", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "fedc1d73e0dee0ec07a58a94f934a04e", + "name": "anaconda-client", + "requires": [], + "size": 93425, + "version": "0.14.0" + }, + "anaconda-client-0.14.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "clyent", + "pillow", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "7eb96fa74dad1de96d7e054189aa5e24", + "name": "anaconda-client", + "requires": [], + "size": 93393, + "version": "0.14.0" + }, + "anaconda-client-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "clyent", + "pillow", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "ac9aa00f175377b2a291c180322c973e", + "name": "anaconda-client", + "requires": [], + "size": 92204, + "version": "1.0.1" + }, + "anaconda-client-1.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "clyent", + "pillow", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "400e5d57a517ff7310ed7fe30c66b104", + "name": "anaconda-client", + "requires": [], + "size": 94075, + "version": "1.0.1" + }, + "anaconda-client-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "clyent", + "pillow", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "c6046c0704deb3c80b9726f6d74fe262", + "name": "anaconda-client", + "requires": [], + "size": 94019, + "version": "1.0.1" + }, + "anaconda-client-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "clyent", + "pillow", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "b1a45312217b5c64b8822c6bdd24c106", + "name": "anaconda-client", + "requires": [], + "size": 92865, + "version": "1.0.2" + }, + "anaconda-client-1.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "clyent", + "pillow", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "5ed86d2afc9d8db644ba2868c8d80e07", + "name": "anaconda-client", + "requires": [], + "size": 94737, + "version": "1.0.2" + }, + "anaconda-client-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "clyent", + "pillow", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "9ba9442f29292331ec6e2c59dd6c95f4", + "name": "anaconda-client", + "requires": [], + "size": 94686, + "version": "1.0.2" + }, + "anaconda-client-1.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "clyent", + "pillow", + "python 3.5*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "a200cf1cce1f9967da8c3702aba615bf", + "name": "anaconda-client", + "requires": [], + "size": 94058, + "version": "1.0.2" + }, + "anaconda-client-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-26", + "depends": [ + "clyent", + "pillow", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "7f1cdedc9a1b001ec84178b31329517a", + "name": "anaconda-client", + "requires": [], + "size": 93980, + "version": "1.1.0" + }, + "anaconda-client-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-26", + "depends": [ + "clyent", + "pillow", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "1b53e0c9ac38f94c05bc54c87775fd3c", + "name": "anaconda-client", + "requires": [], + "size": 95981, + "version": "1.1.0" + }, + "anaconda-client-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-26", + "depends": [ + "clyent", + "pillow", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "416b58a141ad34ef3d127a2cf2002367", + "name": "anaconda-client", + "requires": [], + "size": 96039, + "version": "1.1.0" + }, + "anaconda-client-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-26", + "depends": [ + "clyent", + "pillow", + "python 3.5*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "9e5a93e37ae7a56f5a12bfbe9248ed97", + "name": "anaconda-client", + "requires": [], + "size": 95544, + "version": "1.1.0" + }, + "anaconda-client-1.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "clyent", + "pillow", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "f143f2622c9b345f1a8e589ab5021e47", + "name": "anaconda-client", + "requires": [], + "size": 94109, + "version": "1.1.2" + }, + "anaconda-client-1.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "clyent", + "pillow", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "4856635de524091ea645d5c4d7d5a0df", + "name": "anaconda-client", + "requires": [], + "size": 95932, + "version": "1.1.2" + }, + "anaconda-client-1.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "clyent", + "pillow", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "622396d16bbf61ec6991a343b800df27", + "name": "anaconda-client", + "requires": [], + "size": 95949, + "version": "1.1.2" + }, + "anaconda-client-1.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "clyent", + "pillow", + "python 3.5*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "1ed584e4f27773caf9125c8a809e292b", + "name": "anaconda-client", + "requires": [], + "size": 95370, + "version": "1.1.2" + }, + "anaconda-client-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-03", + "depends": [ + "clyent", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "b49760022eb1506fe1fed3cacb0a8d2d", + "name": "anaconda-client", + "requires": [], + "size": 94433, + "version": "1.2.1" + }, + "anaconda-client-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-03", + "depends": [ + "clyent", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "4f2ab06117f01e78716ca37655113ae8", + "name": "anaconda-client", + "requires": [], + "size": 96400, + "version": "1.2.1" + }, + "anaconda-client-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-03", + "depends": [ + "clyent", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "79fe0e54fb54e97204b571dabf6958e0", + "name": "anaconda-client", + "requires": [], + "size": 96081, + "version": "1.2.1" + }, + "anaconda-client-1.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-03", + "depends": [ + "clyent", + "python 3.5*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "c7547dfe834f674d36a7692613fa7514", + "name": "anaconda-client", + "requires": [], + "size": 95753, + "version": "1.2.1" + }, + "anaconda-client-1.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "clyent", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "183f63e8459052fea7407ff981c4d1f4", + "name": "anaconda-client", + "requires": [], + "size": 96738, + "version": "1.2.2" + }, + "anaconda-client-1.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "clyent", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "7cca78510ba69744bfe3858b6259cc7d", + "name": "anaconda-client", + "requires": [], + "size": 98693, + "version": "1.2.2" + }, + "anaconda-client-1.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "clyent", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "65d13f2a40969d8938f929a00057e10d", + "name": "anaconda-client", + "requires": [], + "size": 98683, + "version": "1.2.2" + }, + "anaconda-client-1.2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "clyent", + "python 3.5*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "44906b2387d7f1d3f86c96eced43e795", + "name": "anaconda-client", + "requires": [], + "size": 97997, + "version": "1.2.2" + }, + "anaconda-client-1.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "clyent", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "49f2d7445f501a02ac2be556deb5556c", + "name": "anaconda-client", + "requires": [], + "size": 100912, + "version": "1.3.1" + }, + "anaconda-client-1.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "clyent", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "4f9186b97c70eb4d939e072db78700b2", + "name": "anaconda-client", + "requires": [], + "size": 102894, + "version": "1.3.1" + }, + "anaconda-client-1.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "clyent", + "python 3.5*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "c9d700152b08d8ddff5eb8e771432961", + "name": "anaconda-client", + "requires": [], + "size": 102277, + "version": "1.3.1" + }, + "anaconda-client-1.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "clyent", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "45362d0c6a521c22abf16ba2a16b4719", + "name": "anaconda-client", + "requires": [], + "size": 102198, + "version": "1.4.0" + }, + "anaconda-client-1.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "clyent", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "965f76ceb2c817cda90e6783f649c4f4", + "name": "anaconda-client", + "requires": [], + "size": 104068, + "version": "1.4.0" + }, + "anaconda-client-1.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "clyent", + "python 3.5*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "f8001358391b23cd833b92b1651a5d59", + "name": "anaconda-client", + "requires": [], + "size": 103601, + "version": "1.4.0" + }, + "anaconda-custom-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8288aef529d5a46d07bd84b4fcf4308a", + "name": "anaconda", + "requires": [], + "size": 2751, + "version": "custom" + }, + "anaconda-custom-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "767a59923372d998b8c83fb16ac035a1", + "name": "anaconda", + "requires": [], + "size": 2767, + "version": "custom" + }, + "anaconda-custom-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "47c237b38bfc175cb73aed8b8b33ade7", + "name": "anaconda", + "requires": [], + "size": 2762, + "version": "custom" + }, + "anaconda-navigator-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "anaconda-client >=1.4.0", + "conda-manager >=0.3.1", + "jinja2", + "pillow", + "pyqt", + "python 2.7*", + "pyyaml", + "qtawesome >=0.3.2", + "qtpy >=1.0" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "a1dd7ca7b2b3ea1389159441ae39a85f", + "name": "anaconda-navigator", + "requires": [], + "size": 1227411, + "version": "1.1.0" + }, + "anaconda-navigator-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "anaconda-client >=1.4.0", + "conda-manager >=0.3.1", + "jinja2", + "pillow", + "pyqt", + "python 3.5*", + "pyyaml", + "qtawesome >=0.3.2", + "qtpy >=1.0" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "a1dee82c16d3ff70edad6bdeacbff2e5", + "name": "anaconda-navigator", + "requires": [], + "size": 1235168, + "version": "1.1.0" + }, + "ansi2html-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "ordereddict", + "python 2.6*", + "setuptools", + "six" + ], + "license": "GPLv3+", + "license_family": "GPL3", + "md5": "805cbdf1e8cd55d77ff7fce58ac43cd5", + "name": "ansi2html", + "requires": [], + "size": 16089, + "version": "1.1.0" + }, + "ansi2html-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 2.7*", + "setuptools", + "six" + ], + "license": "GPLv3+", + "license_family": "GPL3", + "md5": "1846ba331af44b433a232b01e60cede9", + "name": "ansi2html", + "requires": [], + "size": 16028, + "version": "1.1.0" + }, + "ansi2html-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 3.3*", + "setuptools", + "six" + ], + "license": "GPLv3+", + "license_family": "GPL3", + "md5": "2383f9f99626bab94a948c7657e09bb0", + "name": "ansi2html", + "requires": [], + "size": 16441, + "version": "1.1.0" + }, + "ansi2html-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 3.4*", + "setuptools", + "six" + ], + "license": "GPLv3+", + "license_family": "GPL3", + "md5": "a5b8461b1e217996861683a09a343bb5", + "name": "ansi2html", + "requires": [], + "size": 16428, + "version": "1.1.0" + }, + "ansi2html-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "setuptools", + "six" + ], + "license": "GPLv3+", + "license_family": "GPL3", + "md5": "01dcfbd2510f3da0fdfc316968e4f0f5", + "name": "ansi2html", + "requires": [], + "size": 16168, + "version": "1.1.0" + }, + "apptools-4.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "configobj", + "python 2.7*", + "traitsui 4.3.0" + ], + "license": "BSD", + "md5": "ae95eac5d1a0b6be174f84daa6818b46", + "name": "apptools", + "requires": [], + "size": 277032, + "version": "4.2.0" + }, + "apptools-4.2.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "configobj", + "python 2.7*", + "traitsui 4.4.0" + ], + "license": "BSD", + "md5": "4808b4335eb28adb87d5004b7b8dda75", + "name": "apptools", + "requires": [], + "size": 277142, + "version": "4.2.0" + }, + "apptools-4.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "configobj", + "python 2.7*", + "traitsui 4.4.0" + ], + "license": "BSD", + "md5": "a7ccf0bfa3a63809418daca1fda63074", + "name": "apptools", + "requires": [], + "size": 289061, + "version": "4.2.1" + }, + "apptools-4.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "configobj", + "python 2.7*", + "traitsui 4.5.1" + ], + "license": "BSD", + "md5": "5ebfd021613b35b154636de1bf921797", + "name": "apptools", + "requires": [], + "size": 356248, + "version": "4.3.0" + }, + "apr-1.5.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-13", + "depends": [], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "4d94889d75f4c3235532c364cf12be24", + "name": "apr", + "requires": [], + "size": 2851704, + "version": "1.5.2" + }, + "argcomplete-0.6.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "python 2.6*", + "setuptools" + ], + "license": "Apache", + "md5": "83f4c17975ae95cca5439df11501c6b7", + "name": "argcomplete", + "requires": [], + "size": 25811, + "version": "0.6.7" + }, + "argcomplete-0.6.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "c8d8b95f7f2e0284ba28cb4485ec8bbc", + "name": "argcomplete", + "requires": [], + "size": 25659, + "version": "0.6.7" + }, + "argcomplete-0.6.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "Apache", + "md5": "3f8b974cdee3f770022c9e9cd169900d", + "name": "argcomplete", + "requires": [], + "size": 26184, + "version": "0.6.7" + }, + "argcomplete-0.6.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "782732517add0cf6171878a3d251ecbc", + "name": "argcomplete", + "requires": [], + "size": 26253, + "version": "0.6.7" + }, + "argcomplete-0.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "argparse", + "python 2.6*", + "setuptools" + ], + "license": "Apache", + "md5": "9d74245f6df914ad75124441e1691be8", + "name": "argcomplete", + "requires": [], + "size": 27935, + "version": "0.8.1" + }, + "argcomplete-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "6ad27139f777c60bc187ee1ae371a4db", + "name": "argcomplete", + "requires": [], + "size": 27818, + "version": "0.8.1" + }, + "argcomplete-0.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "Apache", + "md5": "89606399cbd683c8bd7f22a9eca3cfeb", + "name": "argcomplete", + "requires": [], + "size": 28374, + "version": "0.8.1" + }, + "argcomplete-0.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "948caec0961c6630347c084572f20285", + "name": "argcomplete", + "requires": [], + "size": 28377, + "version": "0.8.1" + }, + "argcomplete-0.8.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-14", + "depends": [ + "argparse", + "python 2.6*", + "setuptools" + ], + "license": "Apache", + "md5": "d884cbe1307d5da33f49ce44c173a9d6", + "name": "argcomplete", + "requires": [], + "size": 28890, + "version": "0.8.3" + }, + "argcomplete-0.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-14", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "904cae90ae8d61a09aeece25eb622bd0", + "name": "argcomplete", + "requires": [], + "size": 28744, + "version": "0.8.3" + }, + "argcomplete-0.8.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-14", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "Apache", + "md5": "02a1704f73db017535a24121ae1dcd0b", + "name": "argcomplete", + "requires": [], + "size": 29259, + "version": "0.8.3" + }, + "argcomplete-0.8.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-14", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "c24eb5aa86085946a476e03194234b46", + "name": "argcomplete", + "requires": [], + "size": 29278, + "version": "0.8.3" + }, + "argcomplete-0.8.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "argparse", + "python 2.6*", + "setuptools" + ], + "license": "Apache", + "md5": "ada71f55d77b8ad1b0ea40b2be50fa15", + "name": "argcomplete", + "requires": [], + "size": 28832, + "version": "0.8.4" + }, + "argcomplete-0.8.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "b3039892fe729acd9c2f86bb62bfcf61", + "name": "argcomplete", + "requires": [], + "size": 28693, + "version": "0.8.4" + }, + "argcomplete-0.8.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "Apache", + "md5": "8c38f21b605e6d2bf5d779374a0323c6", + "name": "argcomplete", + "requires": [], + "size": 29229, + "version": "0.8.4" + }, + "argcomplete-0.8.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "e3fbd684ee6878899a06c9c9fecef451", + "name": "argcomplete", + "requires": [], + "size": 29237, + "version": "0.8.4" + }, + "argcomplete-0.8.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "argparse", + "python 2.6*", + "setuptools" + ], + "license": "Apache", + "md5": "015ff370d602c167d3457c4bece602a4", + "name": "argcomplete", + "requires": [], + "size": 32110, + "version": "0.8.9" + }, + "argcomplete-0.8.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "1ed87876c99bf4c68fc073a4f73f280e", + "name": "argcomplete", + "requires": [], + "size": 31977, + "version": "0.8.9" + }, + "argcomplete-0.8.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "Apache", + "md5": "2d42b2c5e310f79ba9884448914e2bcf", + "name": "argcomplete", + "requires": [], + "size": 32637, + "version": "0.8.9" + }, + "argcomplete-0.8.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "191ca72f0da3dff9262f1a712ed5fba1", + "name": "argcomplete", + "requires": [], + "size": 32673, + "version": "0.8.9" + }, + "argcomplete-0.9.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "argparse", + "python 2.6*", + "setuptools" + ], + "license": "Apache", + "md5": "b1a94c1f971a09bbbfb2c7bc599183c1", + "name": "argcomplete", + "requires": [], + "size": 32032, + "version": "0.9.0" + }, + "argcomplete-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "677c2ffce64445e16f81e8d4f4925496", + "name": "argcomplete", + "requires": [], + "size": 31872, + "version": "0.9.0" + }, + "argcomplete-0.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "Apache", + "md5": "c56e0e4241a5f0301c96e3732fdec72a", + "name": "argcomplete", + "requires": [], + "size": 32614, + "version": "0.9.0" + }, + "argcomplete-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "0c381922c5f8c4fd9175a681894f7784", + "name": "argcomplete", + "requires": [], + "size": 32660, + "version": "0.9.0" + }, + "argcomplete-0.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "f14b202bf4c052bcd890fe53b281729b", + "name": "argcomplete", + "requires": [], + "size": 32527, + "version": "0.9.0" + }, + "argcomplete-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "25744ae6330db2c29e115b1fd422231d", + "name": "argcomplete", + "requires": [], + "size": 32025, + "version": "1.0.0" + }, + "argcomplete-1.0.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "7aaf2d135a7de3dfe96ccafd9dd891d4", + "name": "argcomplete", + "requires": [], + "size": 32502, + "version": "1.0.0" + }, + "argcomplete-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "bc5936a0dad774baa5c0639ce94ed331", + "name": "argcomplete", + "requires": [], + "size": 32827, + "version": "1.0.0" + }, + "argcomplete-1.0.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "91c8f525435e99821f030c00eeb29307", + "name": "argcomplete", + "requires": [], + "size": 33222, + "version": "1.0.0" + }, + "argcomplete-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "e8037b2b22f9940c87adab243d456f83", + "name": "argcomplete", + "requires": [], + "size": 32643, + "version": "1.0.0" + }, + "argcomplete-1.0.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "adc560cff856828ac9dbf5373765ebe2", + "name": "argcomplete", + "requires": [], + "size": 33092, + "version": "1.0.0" + }, + "argparse-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "425ba30b4412348ef453b3cd1cd9a23c", + "name": "argparse", + "requires": [], + "size": 34231, + "version": "1.2.1" + }, + "argparse-1.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "725a4be333b5f89cf8668a4dffdbd67b", + "name": "argparse", + "requires": [], + "size": 34919, + "version": "1.3.0" + }, + "arraymanagement-0.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "python 2.7*" + ], + "license": "BSD", + "md5": "7e7a3b85d101ce7db45dd9e34fe02cd0", + "name": "arraymanagement", + "requires": [], + "size": 31697, + "version": "0.1" + }, + "astroid-1.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 2.6*" + ], + "license": "LGPL", + "md5": "0088de1906f23b2e6741aaa8cc2889bc", + "name": "astroid", + "requires": [], + "size": 147970, + "version": "1.0.1" + }, + "astroid-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 2.7*" + ], + "license": "LGPL", + "md5": "332f9d4657123f5ee53ebe1917871aa3", + "name": "astroid", + "requires": [], + "size": 147717, + "version": "1.0.1" + }, + "astroid-1.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 3.3*" + ], + "license": "LGPL", + "md5": "cb63293fdc7d292e8c401c477413a914", + "name": "astroid", + "requires": [], + "size": 162171, + "version": "1.0.1" + }, + "astroid-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 3.4*" + ], + "license": "LGPL", + "md5": "aefa0f647849bfb27fbe2e9d67119c3c", + "name": "astroid", + "requires": [], + "size": 155019, + "version": "1.0.1" + }, + "astroid-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 2.6*" + ], + "license": "LGPL", + "md5": "929e3c8e096bb31e80cb848ae152c120", + "name": "astroid", + "requires": [], + "size": 159948, + "version": "1.1.0" + }, + "astroid-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 2.7*" + ], + "license": "LGPL", + "md5": "e6bbe4a0b228a7e06970800be859c776", + "name": "astroid", + "requires": [], + "size": 159562, + "version": "1.1.0" + }, + "astroid-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 3.3*" + ], + "license": "LGPL", + "md5": "63f35a32c0a8ca2763beaf4f6c5e85cb", + "name": "astroid", + "requires": [], + "size": 172935, + "version": "1.1.0" + }, + "astroid-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 3.4*" + ], + "license": "LGPL", + "md5": "4894e237f48a3b1af3245887bfde6d89", + "name": "astroid", + "requires": [], + "size": 163751, + "version": "1.1.0" + }, + "astroid-1.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 2.6*" + ], + "license": "LGPL", + "md5": "110697685fee8634c07e3833aafd57f2", + "name": "astroid", + "requires": [], + "size": 162776, + "version": "1.1.1" + }, + "astroid-1.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 2.7*" + ], + "license": "LGPL", + "md5": "b05deab8e35d719836a8963e28eb6201", + "name": "astroid", + "requires": [], + "size": 162176, + "version": "1.1.1" + }, + "astroid-1.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 3.3*" + ], + "license": "LGPL", + "md5": "7c8dd9dcbf020e42a654201d15ccab06", + "name": "astroid", + "requires": [], + "size": 174861, + "version": "1.1.1" + }, + "astroid-1.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.61.0", + "python 3.4*" + ], + "license": "LGPL", + "md5": "5ce2e2af131f6be6a80e06fb10dbdfb2", + "name": "astroid", + "requires": [], + "size": 166129, + "version": "1.1.1" + }, + "astroid-1.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.62.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "a4749ce25349ec745bed456f7f14e2d4", + "name": "astroid", + "requires": [], + "size": 184766, + "version": "1.2.0" + }, + "astroid-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.62.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "283dd909ead730fc0dff0d54a7135f9b", + "name": "astroid", + "requires": [], + "size": 183538, + "version": "1.2.0" + }, + "astroid-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.62.1", + "python 3.3*" + ], + "license": "LGPL", + "md5": "59769327c1961a09c3939b2dfc965ade", + "name": "astroid", + "requires": [], + "size": 196674, + "version": "1.2.0" + }, + "astroid-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "logilab-common 0.62.1", + "python 3.4*" + ], + "license": "LGPL", + "md5": "c8e11c77fd8feee27d4f5b7a66c4b5b4", + "name": "astroid", + "requires": [], + "size": 190754, + "version": "1.2.0" + }, + "astroid-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "logilab-common 0.62.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "132bc6d5e70ed85447f24bc4c56a7d9c", + "name": "astroid", + "requires": [], + "size": 188009, + "version": "1.2.1" + }, + "astroid-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "logilab-common 0.62.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "bcf65471ec00c471ca88801c10a50cdd", + "name": "astroid", + "requires": [], + "size": 186932, + "version": "1.2.1" + }, + "astroid-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "logilab-common 0.62.1", + "python 3.3*" + ], + "license": "LGPL", + "md5": "daa03145d2bdb97d064270af801fd9d9", + "name": "astroid", + "requires": [], + "size": 199255, + "version": "1.2.1" + }, + "astroid-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "logilab-common 0.62.1", + "python 3.4*" + ], + "license": "LGPL", + "md5": "e0c4fa005c3ba72b31b8d54a5273691f", + "name": "astroid", + "requires": [], + "size": 194030, + "version": "1.2.1" + }, + "astroid-1.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "logilab-common 0.63.2", + "python 2.7*", + "six" + ], + "license": "LGPL", + "md5": "f251536a9996dd15f7555043f5df7839", + "name": "astroid", + "requires": [], + "size": 197010, + "version": "1.3.2" + }, + "astroid-1.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "logilab-common 0.63.2", + "python 3.3*", + "six" + ], + "license": "LGPL", + "md5": "297bf14419224ec04aa24c4c4ec7490a", + "name": "astroid", + "requires": [], + "size": 206382, + "version": "1.3.2" + }, + "astroid-1.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "logilab-common 0.63.2", + "python 3.4*", + "six" + ], + "license": "LGPL", + "md5": "683c4143f26a3de1b3aeea23f3f81893", + "name": "astroid", + "requires": [], + "size": 204744, + "version": "1.3.2" + }, + "astroid-1.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "logilab-common 0.63.2", + "python 2.7*", + "six" + ], + "license": "LGPL", + "md5": "79f6d086c3eb99c4b5f5f6791c960c68", + "name": "astroid", + "requires": [], + "size": 210282, + "version": "1.3.4" + }, + "astroid-1.3.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "logilab-common 0.63.2", + "python 3.3*", + "six" + ], + "license": "LGPL", + "md5": "3359a0cc79419b46724705f22215e87c", + "name": "astroid", + "requires": [], + "size": 218805, + "version": "1.3.4" + }, + "astroid-1.3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "logilab-common 0.63.2", + "python 3.4*", + "six" + ], + "license": "LGPL", + "md5": "5788d408806fca726852d277337cb146", + "name": "astroid", + "requires": [], + "size": 222718, + "version": "1.3.4" + }, + "astroid-1.3.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "logilab-common 0.63.2", + "python 3.5*", + "six" + ], + "license": "LGPL", + "md5": "2eb76e271fcec56676973aec4c431c49", + "name": "astroid", + "requires": [], + "size": 222684, + "version": "1.3.4" + }, + "astroid-1.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "enum34", + "lazy-object-proxy 1.2.1", + "logilab-common 1.0.2", + "python 2.7*", + "singledispatch 3.4.0.3", + "six", + "wrapt 1.10.6" + ], + "license": "LGPL", + "md5": "3b40509c48a7469cde018b8d4e3d3150", + "name": "astroid", + "requires": [], + "size": 247951, + "version": "1.4.4" + }, + "astroid-1.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "lazy-object-proxy 1.2.1", + "logilab-common 1.0.2", + "python 3.4*", + "six", + "wrapt 1.10.6" + ], + "license": "LGPL", + "md5": "ac63aed4fded94c1b89419f828bb2960", + "name": "astroid", + "requires": [], + "size": 263477, + "version": "1.4.4" + }, + "astroid-1.4.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "lazy-object-proxy 1.2.1", + "logilab-common 1.0.2", + "python 3.5*", + "six", + "wrapt 1.10.6" + ], + "license": "LGPL", + "md5": "007415c3e3bb2ed8ad9cec0acda911e6", + "name": "astroid", + "requires": [], + "size": 262518, + "version": "1.4.4" + }, + "astropy-0.2-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD", + "md5": "cb3dc46412ec39cbcaf6a98560492191", + "name": "astropy", + "requires": [], + "size": 4958630, + "version": "0.2" + }, + "astropy-0.2-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7afc3f2157fe2f118b7b0a3dcc420d5c", + "name": "astropy", + "requires": [], + "size": 4952017, + "version": "0.2" + }, + "astropy-0.2-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "6b5698f4343da053f5b0d1114cafd709", + "name": "astropy", + "requires": [], + "size": 4963946, + "version": "0.2" + }, + "astropy-0.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "b67029b2d840ac5bedec740a5dfabe21", + "name": "astropy", + "requires": [], + "size": 4953321, + "version": "0.2" + }, + "astropy-0.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "ab7208b5e968c56bdb1c7d370aa5f3c7", + "name": "astropy", + "requires": [], + "size": 4959120, + "version": "0.2" + }, + "astropy-0.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "dde4897bc38cae63923d1da40ec5fd46", + "name": "astropy", + "requires": [], + "size": 4953087, + "version": "0.2" + }, + "astropy-0.2-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "980d5cdfdd4f44572afdd08c0432caa7", + "name": "astropy", + "requires": [], + "size": 5087667, + "version": "0.2" + }, + "astropy-0.2.1-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD", + "md5": "55c509cc98f3792ad56b2c08d07db8bd", + "name": "astropy", + "requires": [], + "size": 5031192, + "version": "0.2.1" + }, + "astropy-0.2.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "58a25028d42a459c7ac1de4b387fdd97", + "name": "astropy", + "requires": [], + "size": 4995286, + "version": "0.2.1" + }, + "astropy-0.2.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "12b6141606ed9ab9fb1a305887f22b92", + "name": "astropy", + "requires": [], + "size": 5033800, + "version": "0.2.1" + }, + "astropy-0.2.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c8be5bb92a7b06c578e3c529baf579bc", + "name": "astropy", + "requires": [], + "size": 4995291, + "version": "0.2.1" + }, + "astropy-0.2.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "9562a42f87236c373bd35843083b7f8a", + "name": "astropy", + "requires": [], + "size": 5029204, + "version": "0.2.1" + }, + "astropy-0.2.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9adf2f5f70dbdb3779168cab6121fc3d", + "name": "astropy", + "requires": [], + "size": 4996431, + "version": "0.2.1" + }, + "astropy-0.2.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "27bcff75f7019b66c3ae579f39e3a868", + "name": "astropy", + "requires": [], + "size": 5099999, + "version": "0.2.1" + }, + "astropy-0.2.3-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "5c4e1e4e8e009cb251f5b905f49b8605", + "name": "astropy", + "requires": [], + "size": 5073093, + "version": "0.2.3" + }, + "astropy-0.2.3-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e92afccd52cd14e81305646d9bac4ad5", + "name": "astropy", + "requires": [], + "size": 5033275, + "version": "0.2.3" + }, + "astropy-0.2.3-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "baab822f57b152a5c385405887996df9", + "name": "astropy", + "requires": [], + "size": 5071218, + "version": "0.2.3" + }, + "astropy-0.2.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "3ed763b21b5b2da05376611160a889a1", + "name": "astropy", + "requires": [], + "size": 5036625, + "version": "0.2.3" + }, + "astropy-0.2.3-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "8033b689aca34b939fe8bc785e9d66c8", + "name": "astropy", + "requires": [], + "size": 5135838, + "version": "0.2.3" + }, + "astropy-0.2.4-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "1a5eb0b674d310ba9c1e15091a9d040f", + "name": "astropy", + "requires": [], + "size": 5087019, + "version": "0.2.4" + }, + "astropy-0.2.4-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "06e3d81a56f65d45914f0bf030c7bbcf", + "name": "astropy", + "requires": [], + "size": 5088110, + "version": "0.2.4" + }, + "astropy-0.2.4-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d70ff634a276b39ebd853171707b298b", + "name": "astropy", + "requires": [], + "size": 5050310, + "version": "0.2.4" + }, + "astropy-0.2.4-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c5a684beed6174df06f288e84ee274e4", + "name": "astropy", + "requires": [], + "size": 5048620, + "version": "0.2.4" + }, + "astropy-0.2.4-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "701445caa1824b8fce0d8a90b7855fe5", + "name": "astropy", + "requires": [], + "size": 5084404, + "version": "0.2.4" + }, + "astropy-0.2.4-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "ada6249e1a80f4c68c19f98e57a5ed6f", + "name": "astropy", + "requires": [], + "size": 5083476, + "version": "0.2.4" + }, + "astropy-0.2.4-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6e8f1137bd285856d92d0fce20c11a40", + "name": "astropy", + "requires": [], + "size": 5052496, + "version": "0.2.4" + }, + "astropy-0.2.4-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "95c75194dd758740aaa505ffaae7d3ea", + "name": "astropy", + "requires": [], + "size": 5050894, + "version": "0.2.4" + }, + "astropy-0.2.4-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "4ac796ee381d4f8c370793529cf873e9", + "name": "astropy", + "requires": [], + "size": 5139323, + "version": "0.2.4" + }, + "astropy-0.2.4-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "2205f126313be79f0522ccf200c7aca3", + "name": "astropy", + "requires": [], + "size": 5139408, + "version": "0.2.4" + }, + "astropy-0.2.5-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "72d48e1f205fe83da6b7e86b45e0995a", + "name": "astropy", + "requires": [], + "size": 5121265, + "version": "0.2.5" + }, + "astropy-0.2.5-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "42b3747098ea2d360c2025e358cf89a6", + "name": "astropy", + "requires": [], + "size": 5086492, + "version": "0.2.5" + }, + "astropy-0.2.5-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "9da1d3e6092ec114a6356d947bf96a9e", + "name": "astropy", + "requires": [], + "size": 5118668, + "version": "0.2.5" + }, + "astropy-0.2.5-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a3a7337e5392e78f747ebc1e7722842d", + "name": "astropy", + "requires": [], + "size": 5086894, + "version": "0.2.5" + }, + "astropy-0.2.5-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "3a158d27d16680a3f45a384dcff65515", + "name": "astropy", + "requires": [], + "size": 5145322, + "version": "0.2.5" + }, + "astropy-0.3.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "02e9fc1b5b3e0a843407691e00e7cdc3", + "name": "astropy", + "requires": [], + "size": 6188206, + "version": "0.3.0" + }, + "astropy-0.3.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "3b215a23347e4e776f6fcd2d6e49800c", + "name": "astropy", + "requires": [], + "size": 6162842, + "version": "0.3.0" + }, + "astropy-0.3.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "f132a2ba7a360ec3d456eabb52f82240", + "name": "astropy", + "requires": [], + "size": 6191688, + "version": "0.3.0" + }, + "astropy-0.3.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "66db905a1531f16981fb9ea93ae5147a", + "name": "astropy", + "requires": [], + "size": 6168768, + "version": "0.3.0" + }, + "astropy-0.3.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "a9704fee53ce8bd1e83d9c56927b33eb", + "name": "astropy", + "requires": [], + "size": 6225811, + "version": "0.3.0" + }, + "astropy-0.3.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "0946593e9de96450666f77d5d5ab89c0", + "name": "astropy", + "requires": [], + "size": 6191480, + "version": "0.3.0" + }, + "astropy-0.3.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "4a7e206b1e9ab31ca574f24e3d71e4b4", + "name": "astropy", + "requires": [], + "size": 6173078, + "version": "0.3.0" + }, + "astropy-0.3.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "92aeabe310ce849df67ce26296ad726c", + "name": "astropy", + "requires": [], + "size": 6227230, + "version": "0.3.0" + }, + "astropy-0.3.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "552fe19db000886db40c32e478a24411", + "name": "astropy", + "requires": [], + "size": 6119277, + "version": "0.3.1" + }, + "astropy-0.3.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d3ad22cb7a1464de27210820cfb8237d", + "name": "astropy", + "requires": [], + "size": 6161095, + "version": "0.3.1" + }, + "astropy-0.3.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "c5cf39f844e8a3a8ef5e85cb2b64206f", + "name": "astropy", + "requires": [], + "size": 6336693, + "version": "0.3.1" + }, + "astropy-0.3.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "a077287cf4ca3a43f0cb3aa506cfc8c3", + "name": "astropy", + "requires": [], + "size": 6407095, + "version": "0.3.2" + }, + "astropy-0.3.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d13f8fabcaa01a9f28ebb2b034c2616a", + "name": "astropy", + "requires": [], + "size": 6399281, + "version": "0.3.2" + }, + "astropy-0.3.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "0296c8d8a467cef571db11a305be0fc2", + "name": "astropy", + "requires": [], + "size": 6506043, + "version": "0.3.2" + }, + "astropy-0.3.2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "2ecd94e646f9e3dbf541bce0cb649b8f", + "name": "astropy", + "requires": [], + "size": 6467909, + "version": "0.3.2" + }, + "astropy-0.4-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "259be6d8931767cfbb6e217d1c2c9928", + "name": "astropy", + "requires": [], + "size": 6711284, + "version": "0.4" + }, + "astropy-0.4-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "09db049f82e53ae5624d81c7b70c637a", + "name": "astropy", + "requires": [], + "size": 6709222, + "version": "0.4" + }, + "astropy-0.4-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "bdcc2f763bb4619b043e164f8c3fdf3e", + "name": "astropy", + "requires": [], + "size": 6880091, + "version": "0.4" + }, + "astropy-0.4-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "e06966b33c647d1375ddda7ef9121eb7", + "name": "astropy", + "requires": [], + "size": 7042689, + "version": "0.4" + }, + "astropy-0.4.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "7b0d43a8d832640e55149641b6fc8078", + "name": "astropy", + "requires": [], + "size": 6765620, + "version": "0.4.1" + }, + "astropy-0.4.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "3e0cd23f9325fef943cc8e948840a1cf", + "name": "astropy", + "requires": [], + "size": 6761717, + "version": "0.4.1" + }, + "astropy-0.4.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "e3a09e916a734094289120976c3483c7", + "name": "astropy", + "requires": [], + "size": 6870703, + "version": "0.4.1" + }, + "astropy-0.4.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "1228a4b58e119002382f9dc2ec4af16e", + "name": "astropy", + "requires": [], + "size": 7060601, + "version": "0.4.1" + }, + "astropy-0.4.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "argparse", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "36ad8d4293d7ec61ad06a568bd8e8388", + "name": "astropy", + "requires": [], + "size": 7065158, + "version": "0.4.1" + }, + "astropy-0.4.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "2463db7b3d4e0481600370c084ef1bf7", + "name": "astropy", + "requires": [], + "size": 7082706, + "version": "0.4.1" + }, + "astropy-0.4.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "f19ebbe572092a8a3c7f7d8383ef2f59", + "name": "astropy", + "requires": [], + "size": 7039786, + "version": "0.4.1" + }, + "astropy-0.4.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "f58c6c699043fd339d77f2bccb137113", + "name": "astropy", + "requires": [], + "size": 7149020, + "version": "0.4.1" + }, + "astropy-0.4.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "argparse", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "41f9055f052dc97a28d01c9c6036eeb2", + "name": "astropy", + "requires": [], + "size": 7046800, + "version": "0.4.2" + }, + "astropy-0.4.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "bc91242390e700cdfe4410c82a5733d9", + "name": "astropy", + "requires": [], + "size": 7106148, + "version": "0.4.2" + }, + "astropy-0.4.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "8692ef433c81aaf7b1ed437df3912e92", + "name": "astropy", + "requires": [], + "size": 7062476, + "version": "0.4.2" + }, + "astropy-0.4.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "2b545d5b72eddacbaa81215737f76aee", + "name": "astropy", + "requires": [], + "size": 7153028, + "version": "0.4.2" + }, + "astropy-0.4.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "argparse", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "f809a010a23558bf022a763a169996db", + "name": "astropy", + "requires": [], + "size": 7029880, + "version": "0.4.3" + }, + "astropy-0.4.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "78763454b18a7e8e599bef97685a6944", + "name": "astropy", + "requires": [], + "size": 7080823, + "version": "0.4.3" + }, + "astropy-0.4.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "ecd8e320ce94e4fab9c6b0c823652fbd", + "name": "astropy", + "requires": [], + "size": 7178332, + "version": "0.4.3" + }, + "astropy-0.4.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "66d7e9922da95360960381d40ad3e309", + "name": "astropy", + "requires": [], + "size": 7239539, + "version": "0.4.3" + }, + "astropy-0.4.4-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "argparse", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "aadc478c389b911c7930c3d89de62885", + "name": "astropy", + "requires": [], + "size": 7030096, + "version": "0.4.4" + }, + "astropy-0.4.4-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7ae8fc8701639639bbbf6f9d61c97293", + "name": "astropy", + "requires": [], + "size": 7080497, + "version": "0.4.4" + }, + "astropy-0.4.4-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "5dfc9c9f65621cb24bcf8d9db762b183", + "name": "astropy", + "requires": [], + "size": 7179580, + "version": "0.4.4" + }, + "astropy-0.4.4-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "3c473d408bf79d2f704e96038a1e64cb", + "name": "astropy", + "requires": [], + "size": 7239952, + "version": "0.4.4" + }, + "astropy-0.4rc1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "707577eadb38f2d99681d98d15222e58", + "name": "astropy", + "requires": [], + "size": 6830191, + "version": "0.4rc1" + }, + "astropy-0.4rc1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "1c67f2b10dcef47bb32e0a8c7e62f0ee", + "name": "astropy", + "requires": [], + "size": 6692804, + "version": "0.4rc1" + }, + "astropy-0.4rc1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "08e0d70c7e1e0679defcc7e6ee68d65c", + "name": "astropy", + "requires": [], + "size": 7000942, + "version": "0.4rc1" + }, + "astropy-0.4rc1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "faaf500174abeaa498c32d285adf7b32", + "name": "astropy", + "requires": [], + "size": 7161339, + "version": "0.4rc1" + }, + "astropy-1.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "argparse", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "935532e5a0cebc1ab4a06d9552e116c0", + "name": "astropy", + "requires": [], + "size": 7664482, + "version": "1.0" + }, + "astropy-1.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0592f666dcf844fd8ba2800029523b97", + "name": "astropy", + "requires": [], + "size": 7654627, + "version": "1.0" + }, + "astropy-1.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "8c3f88ef7cd81cca5c31c9b43030a2a0", + "name": "astropy", + "requires": [], + "size": 7871316, + "version": "1.0" + }, + "astropy-1.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "fe61c8fee0d4811b59b9f25a5b0a05db", + "name": "astropy", + "requires": [], + "size": 7961415, + "version": "1.0" + }, + "astropy-1.0.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "argparse", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "7e3bf77b5031d717473f9d9c7b6bda5c", + "name": "astropy", + "requires": [], + "size": 7503694, + "version": "1.0.1" + }, + "astropy-1.0.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "cfcd33dc146ab1abeecca348641c1e8c", + "name": "astropy", + "requires": [], + "size": 7564346, + "version": "1.0.1" + }, + "astropy-1.0.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "a9eecbcd39d6eb4bfbeee3c5cb1e9fd4", + "name": "astropy", + "requires": [], + "size": 7736741, + "version": "1.0.1" + }, + "astropy-1.0.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "3df959ddef3b2bedf8e82db39087a84a", + "name": "astropy", + "requires": [], + "size": 7831063, + "version": "1.0.1" + }, + "astropy-1.0.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "argparse", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "c06db288278507b70a36da0b1df69b57", + "name": "astropy", + "requires": [], + "size": 7497440, + "version": "1.0.2" + }, + "astropy-1.0.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7f28139eabfb0d2fb18d733c1b653c36", + "name": "astropy", + "requires": [], + "size": 7499268, + "version": "1.0.2" + }, + "astropy-1.0.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "46a7bbc5b045744b4b45427ad6620005", + "name": "astropy", + "requires": [], + "size": 7896700, + "version": "1.0.2" + }, + "astropy-1.0.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "15d35685017a7bb0d764a99dd2e80db7", + "name": "astropy", + "requires": [], + "size": 7893000, + "version": "1.0.2" + }, + "astropy-1.0.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "argparse", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "53345698d05a1d5cfd429120b85cb995", + "name": "astropy", + "requires": [], + "size": 7499555, + "version": "1.0.3" + }, + "astropy-1.0.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "09de11d8c2b29e58cf6356a7554eb6a2", + "name": "astropy", + "requires": [], + "size": 7504995, + "version": "1.0.3" + }, + "astropy-1.0.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "8ece8afe263d52e013eef221b2908957", + "name": "astropy", + "requires": [], + "size": 7926326, + "version": "1.0.3" + }, + "astropy-1.0.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "8979facad6c49959f59cadcec0e1e017", + "name": "astropy", + "requires": [], + "size": 7904393, + "version": "1.0.3" + }, + "astropy-1.0.4-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-08-11", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7eb8bf1ee1ef24483dfba4bd4cbab6d7", + "name": "astropy", + "requires": [], + "size": 7521946, + "version": "1.0.4" + }, + "astropy-1.0.4-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-08-11", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "c294515e75dc3aee1ffe1ed7fa55785e", + "name": "astropy", + "requires": [], + "size": 7910577, + "version": "1.0.4" + }, + "astropy-1.0.4-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "4985b21b5fa9e23bd6441669a2d36b89", + "name": "astropy", + "requires": [], + "size": 7909428, + "version": "1.0.4" + }, + "astropy-1.0.5-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2015-10-08", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a1a9c1937d94d8c0da3409852e35dcdf", + "name": "astropy", + "requires": [], + "size": 7561660, + "version": "1.0.5" + }, + "astropy-1.0.5-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2015-10-08", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "a0bbd1b8dffc44d22c1d1e1bca57bdad", + "name": "astropy", + "requires": [], + "size": 8022584, + "version": "1.0.5" + }, + "astropy-1.0.5-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2015-10-08", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "a0ff55b7e2b7848d68a5771874e12b75", + "name": "astropy", + "requires": [], + "size": 8013419, + "version": "1.0.5" + }, + "astropy-1.0.6-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "59ecb4e5f3e77f164e443810ef491ee9", + "name": "astropy", + "requires": [], + "size": 7581962, + "version": "1.0.6" + }, + "astropy-1.0.6-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "ad4cc53e583c41d024c606df62eddfb0", + "name": "astropy", + "requires": [], + "size": 8063832, + "version": "1.0.6" + }, + "astropy-1.0.6-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "ba44afcbf65a69dad4900ea65dc547d1", + "name": "astropy", + "requires": [], + "size": 8060658, + "version": "1.0.6" + }, + "astropy-1.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "3b444fa61f0e55d4c7ab67d07719f26d", + "name": "astropy", + "requires": [], + "size": 8456317, + "version": "1.1" + }, + "astropy-1.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "87aafeb63ca5ff00d91ed5ab5b232248", + "name": "astropy", + "requires": [], + "size": 8981752, + "version": "1.1" + }, + "astropy-1.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "29746f708e111d1af8bd884701b986e0", + "name": "astropy", + "requires": [], + "size": 8828240, + "version": "1.1" + }, + "astropy-1.1.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "4c6b7595416aa1ffef47e2a13a855d77", + "name": "astropy", + "requires": [], + "size": 8454377, + "version": "1.1.1" + }, + "astropy-1.1.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "198dd3306503097e52aefe76ff624fdf", + "name": "astropy", + "requires": [], + "size": 8989484, + "version": "1.1.1" + }, + "astropy-1.1.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "3b10c254399e0332e0ad29fc8878e128", + "name": "astropy", + "requires": [], + "size": 8841868, + "version": "1.1.1" + }, + "astropy-1.1.2-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-03-12", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d5ad289bd0db6003e8306746f79c515c", + "name": "astropy", + "requires": [], + "size": 8446740, + "version": "1.1.2" + }, + "astropy-1.1.2-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-03-12", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "004549573ce597bf25c48435fb613350", + "name": "astropy", + "requires": [], + "size": 8964699, + "version": "1.1.2" + }, + "astropy-1.1.2-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-03-12", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "0454d01bdc78f73dcb6dc684a9f0c53c", + "name": "astropy", + "requires": [], + "size": 8810911, + "version": "1.1.2" + }, + "astropy-1.1.2-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 2.7*" + ], + "license": "BSD", + "md5": "79579be1648c62c3515def4a52646c6d", + "name": "astropy", + "requires": [], + "size": 8447593, + "version": "1.1.2" + }, + "astropy-1.1.2-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "numpy 1.11*", + "python 3.4*" + ], + "license": "BSD", + "md5": "ebc3228c521b0d8ccd87b43d205392b8", + "name": "astropy", + "requires": [], + "size": 8936601, + "version": "1.1.2" + }, + "astropy-1.1.2-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "numpy 1.11*", + "python 3.5*" + ], + "license": "BSD", + "md5": "63cf8980c012781c2f7cf2a0e0e83c50", + "name": "astropy", + "requires": [], + "size": 8827125, + "version": "1.1.2" + }, + "aterm-2.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "LGPL", + "md5": "0698c1eb5793d83ba6a5a4a495ec99a5", + "name": "aterm", + "requires": [], + "size": 295918, + "version": "2.5" + }, + "atlas-3.8.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD-like", + "license_family": "BSD", + "md5": "1b042a70574aaecec816a81620165a38", + "name": "atlas", + "requires": [], + "size": 3191955, + "version": "3.8.4" + }, + "atom-0.2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "e739a64c1721d177c6615966e53f4f03", + "name": "atom", + "requires": [], + "size": 372058, + "version": "0.2.3" + }, + "atom-0.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2fed2773d9438d86e304214778400674", + "name": "atom", + "requires": [], + "size": 371936, + "version": "0.2.3" + }, + "atom-0.3.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "cc8c2d0299dced3c923e8f3d555ee2c5", + "name": "atom", + "requires": [], + "size": 692429, + "version": "0.3.10" + }, + "atom-0.3.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "5d7e6a8c0a4220c6593c500345f96148", + "name": "atom", + "requires": [], + "size": 514310, + "version": "0.3.2" + }, + "atom-0.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f18d6e16af8285dd57dade19a05a8778", + "name": "atom", + "requires": [], + "size": 515335, + "version": "0.3.2" + }, + "atom-0.3.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "fe04a0808e6722e0131b559b88cb354e", + "name": "atom", + "requires": [], + "size": 544391, + "version": "0.3.4" + }, + "atom-0.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "16864543ad4619aad55e833b1af563af", + "name": "atom", + "requires": [], + "size": 544791, + "version": "0.3.4" + }, + "atom-0.3.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "9974263f9eb8ad95591205b30d3dc416", + "name": "atom", + "requires": [], + "size": 547473, + "version": "0.3.5" + }, + "atom-0.3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d129ad38d0da75c37ae4e7eb431336d2", + "name": "atom", + "requires": [], + "size": 548577, + "version": "0.3.5" + }, + "atom-0.3.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "593dfccbf172fa2439a06bf03d8a75a4", + "name": "atom", + "requires": [], + "size": 549592, + "version": "0.3.6" + }, + "atom-0.3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "6a200566e1521ca25c1bfbac12356227", + "name": "atom", + "requires": [], + "size": 550553, + "version": "0.3.6" + }, + "atom-0.3.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "dc0b378b7cc30c2549b0eda9aaf1bfac", + "name": "atom", + "requires": [], + "size": 550373, + "version": "0.3.7" + }, + "atom-0.3.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "a1f6e23ece469d1262428c708e8c0c5b", + "name": "atom", + "requires": [], + "size": 551387, + "version": "0.3.7" + }, + "atom-0.3.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "0b07f19518e860d6d9792b41ea4df954", + "name": "atom", + "requires": [], + "size": 576024, + "version": "0.3.9" + }, + "atom-0.3.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "gdata" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ee2098804af73f86fa9c743d74a093eb", + "name": "atom", + "requires": [], + "size": 576737, + "version": "0.3.9" + }, + "attrs-15.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "829783c4f23f3199b774d26429db7bf5", + "name": "attrs", + "requires": [], + "size": 18097, + "version": "15.2.0" + }, + "attrs-15.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "4b79e67aa5dfc78eb10361a42d0f1de9", + "name": "attrs", + "requires": [], + "size": 18535, + "version": "15.2.0" + }, + "attrs-15.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "c7969316cd1c6f0ddfacd4c510070959", + "name": "attrs", + "requires": [], + "size": 18500, + "version": "15.2.0" + }, + "azure-0.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "futures 2.2.0", + "pyopenssl 0.14", + "python 2.7*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "3d8671efb06baa90c55b1ab51655bd89", + "name": "azure", + "requires": [], + "size": 170091, + "version": "0.10.0" + }, + "azure-0.10.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "futures 2.2.0", + "pyopenssl 0.14", + "python 3.3*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "a699225a7e054c03b79f32c12362ee61", + "name": "azure", + "requires": [], + "size": 187182, + "version": "0.10.0" + }, + "azure-0.10.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "futures 2.2.0", + "pyopenssl 0.14", + "python 3.4*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "a84c6f15b9e1d066cefb994222bdf92f", + "name": "azure", + "requires": [], + "size": 176580, + "version": "0.10.0" + }, + "azure-0.10.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "futures 2.2.0", + "pyopenssl 0.15.1", + "python 2.7*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "e1a735054d0bc08ebc7cde06b87b4857", + "name": "azure", + "requires": [], + "size": 170015, + "version": "0.10.2" + }, + "azure-0.10.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "futures 2.2.0", + "pyopenssl 0.15.1", + "python 3.3*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "2c91d28ccbae094aab676f8d8d1f07b8", + "name": "azure", + "requires": [], + "size": 186917, + "version": "0.10.2" + }, + "azure-0.10.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "futures 2.2.0", + "pyopenssl 0.15.1", + "python 3.4*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "55602e4c1f2dec801bd8b0633f189d07", + "name": "azure", + "requires": [], + "size": 176459, + "version": "0.10.2" + }, + "azure-0.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "futures 3.0.2", + "pyopenssl 0.15.1", + "python 2.7*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "fc6949515ba3eceb2b1e54eeaa07351f", + "name": "azure", + "requires": [], + "size": 176490, + "version": "0.11.0" + }, + "azure-0.11.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "futures 3.0.2", + "pyopenssl 0.15.1", + "python 3.3*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "9ff4ce7ee1f7f5807cdcea06d801e21f", + "name": "azure", + "requires": [], + "size": 192591, + "version": "0.11.0" + }, + "azure-0.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "futures 3.0.2", + "pyopenssl 0.15.1", + "python 3.4*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "0bebc7848102c835099dd80a8ef5b327", + "name": "azure", + "requires": [], + "size": 181265, + "version": "0.11.0" + }, + "azure-0.11.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "futures 3.0.3", + "pyopenssl 0.15.1", + "python 2.7*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "eddafdb3d974c2689f533f18ab354e33", + "name": "azure", + "requires": [], + "size": 178170, + "version": "0.11.1" + }, + "azure-0.11.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "futures 3.0.3", + "pyopenssl 0.15.1", + "python 3.3*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "ff5591d1309616c818c8f83c1cc5e6b8", + "name": "azure", + "requires": [], + "size": 193971, + "version": "0.11.1" + }, + "azure-0.11.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "futures 3.0.3", + "pyopenssl 0.15.1", + "python 3.4*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "8861c1f73dc0c1a409842737637e3309", + "name": "azure", + "requires": [], + "size": 183152, + "version": "0.11.1" + }, + "azure-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "futures", + "pyopenssl", + "python 2.7*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "1ccbfc4f2c5703228cd6ab4d0fc5e2c1", + "name": "azure", + "requires": [], + "size": 368295, + "version": "1.0.0" + }, + "azure-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "futures", + "pyopenssl", + "python 3.4*", + "python-dateutil" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "e8a75999c8bb6051a176483f2a85e704", + "name": "azure", + "requires": [], + "size": 376152, + "version": "1.0.0" + }, + "azure-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-15", + "depends": [ + "python 2.7*", + "requests", + "setuptools" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "483c587e2333ce3748e2eee77301ff72", + "name": "azure", + "requires": [], + "size": 367572, + "version": "1.0.1" + }, + "azure-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-15", + "depends": [ + "python 3.4*", + "requests", + "setuptools" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "593f08b959762ead453ecb5109c426bf", + "name": "azure", + "requires": [], + "size": 375214, + "version": "1.0.1" + }, + "azure-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "python 2.7*", + "requests", + "setuptools" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "43a9d442d41933be21228553710bf4d5", + "name": "azure", + "requires": [], + "size": 367779, + "version": "1.0.2" + }, + "azure-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "python 3.4*", + "requests", + "setuptools" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "af97044aa5bd007297efef8b8a9147e2", + "name": "azure", + "requires": [], + "size": 375643, + "version": "1.0.2" + }, + "azure-1.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "python 3.5*", + "requests", + "setuptools" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "f1b81e2dd1f5a45c1bec3590c06a760f", + "name": "azure", + "requires": [], + "size": 371490, + "version": "1.0.2" + }, + "babel-1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*", + "pytz" + ], + "license": "BSD", + "md5": "682bd8b772a5c3f5006f03384d73f757", + "name": "babel", + "requires": [], + "size": 2370594, + "version": "1.3" + }, + "babel-1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "49de01e57f86068059fd00267c5d5cf7", + "name": "babel", + "requires": [], + "size": 2370328, + "version": "1.3" + }, + "babel-1.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*", + "pytz" + ], + "license": "BSD", + "md5": "77ecf9ac5299b54f398cdf16494ac679", + "name": "babel", + "requires": [], + "size": 2383731, + "version": "1.3" + }, + "babel-1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*", + "pytz" + ], + "license": "BSD", + "md5": "bcfe31a67458bf0ccc11b53cb581dbde", + "name": "babel", + "requires": [], + "size": 2386523, + "version": "1.3" + }, + "babel-2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.6*", + "pytz" + ], + "license": "BSD", + "md5": "cdc2c068552b236b46dc717d2370f22c", + "name": "babel", + "requires": [], + "size": 2382947, + "version": "2.0" + }, + "babel-2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "edf0a1ee18569c335f2a60f83fe15911", + "name": "babel", + "requires": [], + "size": 2382514, + "version": "2.0" + }, + "babel-2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.3*", + "pytz" + ], + "license": "BSD", + "md5": "7893f49c6cf3c86267e15fe88da4d3aa", + "name": "babel", + "requires": [], + "size": 2390103, + "version": "2.0" + }, + "babel-2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.4*", + "pytz" + ], + "license": "BSD", + "md5": "ead21a44b89b993107d4b9b251cca6ae", + "name": "babel", + "requires": [], + "size": 2398221, + "version": "2.0" + }, + "babel-2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "pytz" + ], + "license": "BSD", + "md5": "3d7b894a1171b705e8f8527c85bcd2ab", + "name": "babel", + "requires": [], + "size": 2398460, + "version": "2.0" + }, + "babel-2.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-30", + "depends": [ + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "34bef41ae2c9b50c3126306f95a5dab8", + "name": "babel", + "requires": [], + "size": 2380466, + "version": "2.1.1" + }, + "babel-2.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-30", + "depends": [ + "python 3.4*", + "pytz" + ], + "license": "BSD", + "md5": "cead347419f115c4fdef97012a0ed87f", + "name": "babel", + "requires": [], + "size": 2395305, + "version": "2.1.1" + }, + "babel-2.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-30", + "depends": [ + "python 3.5*", + "pytz" + ], + "license": "BSD", + "md5": "dd99f8fa3d8fc0158e8cbd8eb4024050", + "name": "babel", + "requires": [], + "size": 2395069, + "version": "2.1.1" + }, + "babel-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "44496eb92cc750f34b040e60d9f2f888", + "name": "babel", + "requires": [], + "size": 4525682, + "version": "2.2.0" + }, + "babel-2.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.4*", + "pytz" + ], + "license": "BSD", + "md5": "e7f856957b1e2e019033b733ad3ae479", + "name": "babel", + "requires": [], + "size": 4537868, + "version": "2.2.0" + }, + "babel-2.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.5*", + "pytz" + ], + "license": "BSD", + "md5": "e79fc3023cd3cc1d9cd494d20356e3f1", + "name": "babel", + "requires": [], + "size": 4535360, + "version": "2.2.0" + }, + "backports_abc-0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "011fd16fb415b72d9b6f90c04dff1766", + "name": "backports_abc", + "requires": [], + "size": 4844, + "version": "0.4" + }, + "backports_abc-0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "python 3.4*" + ], + "license": "PSF", + "md5": "fe7f11e3c6bb1957dea4158072a3e675", + "name": "backports_abc", + "requires": [], + "size": 5011, + "version": "0.4" + }, + "bandersnatch-1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "mock", + "python 2.7*", + "setuptools", + "xmlrpc2 0.3.1" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "f032e55a513574c95185c7dd2de4ce70", + "name": "bandersnatch", + "requires": [], + "size": 20464, + "version": "1.4" + }, + "basemap-1.0.6-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "matplotlib", + "numpy 1.7*", + "python 2.7*" + ], + "license": "PSF", + "md5": "e71c5ce6fbf7dd35b3dd195f487fc095", + "name": "basemap", + "requires": [], + "size": 139784979, + "version": "1.0.6" + }, + "basemap-1.0.7-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.10*", + "python 2.7*" + ], + "license": "PSF", + "md5": "8e0672658cf4ae330b23e12ee27449a3", + "name": "basemap", + "requires": [], + "size": 124747134, + "version": "1.0.7" + }, + "basemap-1.0.7-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.10*", + "python 3.4*" + ], + "license": "PSF", + "md5": "fc758d7cfe30117201061a6244e87bdf", + "name": "basemap", + "requires": [], + "size": 124687146, + "version": "1.0.7" + }, + "basemap-1.0.7-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.10*", + "python 3.5*" + ], + "license": "PSF", + "md5": "abd7879e0965bfe677f0751479e05510", + "name": "basemap", + "requires": [], + "size": 124694263, + "version": "1.0.7" + }, + "basemap-1.0.7-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.7*", + "python 2.7*" + ], + "license": "PSF", + "md5": "6f4d40676ac5db8de1bc630abe2dec8d", + "name": "basemap", + "requires": [], + "size": 124541158, + "version": "1.0.7" + }, + "basemap-1.0.7-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.8*", + "python 2.6*" + ], + "license": "PSF", + "md5": "acc9c14d1c1c7575bf414c5441b02457", + "name": "basemap", + "requires": [], + "size": 124535739, + "version": "1.0.7" + }, + "basemap-1.0.7-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.8*", + "python 2.7*" + ], + "license": "PSF", + "md5": "b744e87aad0eecdb256affcfb0a8b2de", + "name": "basemap", + "requires": [], + "size": 124535907, + "version": "1.0.7" + }, + "basemap-1.0.7-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.8*", + "python 3.3*" + ], + "license": "PSF", + "md5": "bb30ceb6e32be4c504277a41de17687b", + "name": "basemap", + "requires": [], + "size": 124506774, + "version": "1.0.7" + }, + "basemap-1.0.7-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.8*", + "python 3.4*" + ], + "license": "PSF", + "md5": "f25f9818ea215b5051e7dca1832ac225", + "name": "basemap", + "requires": [], + "size": 124517955, + "version": "1.0.7" + }, + "basemap-1.0.7-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.9*", + "python 2.6*" + ], + "license": "PSF", + "md5": "e040fd6091a3a6b337b11ea742ab937f", + "name": "basemap", + "requires": [], + "size": 124747960, + "version": "1.0.7" + }, + "basemap-1.0.7-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.9*", + "python 2.7*" + ], + "license": "PSF", + "md5": "d2ded8d6dd0ec564420fad32ea06ac46", + "name": "basemap", + "requires": [], + "size": 124751413, + "version": "1.0.7" + }, + "basemap-1.0.7-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.9*", + "python 3.3*" + ], + "license": "PSF", + "md5": "a6af6035c87461b92030ae6fef735f37", + "name": "basemap", + "requires": [], + "size": 124662277, + "version": "1.0.7" + }, + "basemap-1.0.7-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.9*", + "python 3.4*" + ], + "license": "PSF", + "md5": "35902074a8bb433412e9f430587fd491", + "name": "basemap", + "requires": [], + "size": 124688248, + "version": "1.0.7" + }, + "basemap-1.0.7-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "geos 3.3.3", + "matplotlib", + "numpy 1.9*", + "python 3.5*" + ], + "license": "PSF", + "md5": "657df2633a1d8e58d5ef3a874aba1b43", + "name": "basemap", + "requires": [], + "size": 124695623, + "version": "1.0.7" + }, + "bcolz-0.10.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "fad7277eefb0949248de982cea7b0df3", + "name": "bcolz", + "requires": [], + "size": 990042, + "version": "0.10.0" + }, + "bcolz-0.10.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "324df5eaa6d68c87981aeadcc086e7b7", + "name": "bcolz", + "requires": [], + "size": 990476, + "version": "0.10.0" + }, + "bcolz-0.10.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "74e764afbec94692ba18592fad9c7ef3", + "name": "bcolz", + "requires": [], + "size": 1048111, + "version": "0.10.0" + }, + "bcolz-0.10.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "1fec9305c918faa10801f7950d16fb68", + "name": "bcolz", + "requires": [], + "size": 1164425, + "version": "0.10.0" + }, + "bcolz-0.10.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "44201ad815bc111ea26163d83be5cbce", + "name": "bcolz", + "requires": [], + "size": 1164361, + "version": "0.10.0" + }, + "bcolz-0.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "numpy", + "python 2.7*" + ], + "license": "BSD", + "md5": "eef5c4433801adf1f9195b95058b5dae", + "name": "bcolz", + "requires": [], + "size": 1090931, + "version": "0.11.0" + }, + "bcolz-0.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "numpy", + "python 3.4*" + ], + "license": "BSD", + "md5": "718d79acd7188c1a0c488cffa4d07505", + "name": "bcolz", + "requires": [], + "size": 1186727, + "version": "0.11.0" + }, + "bcolz-0.11.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "numpy", + "python 3.5*" + ], + "license": "BSD", + "md5": "29cd1e5df30a72c017a51079632a8e7f", + "name": "bcolz", + "requires": [], + "size": 1186673, + "version": "0.11.0" + }, + "bcolz-0.11.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "numpy", + "python 2.7*" + ], + "license": "BSD", + "md5": "5f04f4fa6971484af6bb83b0edefdfb1", + "name": "bcolz", + "requires": [], + "size": 1098274, + "version": "0.11.3" + }, + "bcolz-0.11.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "numpy", + "python 3.4*" + ], + "license": "BSD", + "md5": "4bf9022c77c3e8f00a47e54f71348a31", + "name": "bcolz", + "requires": [], + "size": 1192378, + "version": "0.11.3" + }, + "bcolz-0.11.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "numpy", + "python 3.5*" + ], + "license": "BSD", + "md5": "43f5baf5fb1a5a9d782966faae1ca6e6", + "name": "bcolz", + "requires": [], + "size": 1191810, + "version": "0.11.3" + }, + "bcolz-0.11.4-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "f87070095430e476fbb3432c15c6d963", + "name": "bcolz", + "requires": [], + "size": 1095071, + "version": "0.11.4" + }, + "bcolz-0.11.4-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "80486e478c13e0e0aeb19ec0d585e234", + "name": "bcolz", + "requires": [], + "size": 1187897, + "version": "0.11.4" + }, + "bcolz-0.11.4-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "891b76226ec22a42985eca347f94e139", + "name": "bcolz", + "requires": [], + "size": 1189109, + "version": "0.11.4" + }, + "bcolz-0.12.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e84d2e365176093c4a8c8c7776327a04", + "name": "bcolz", + "requires": [], + "size": 1098033, + "version": "0.12.0" + }, + "bcolz-0.12.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "32325ef91e276dd8a05e27d8eb0a1aee", + "name": "bcolz", + "requires": [], + "size": 1191425, + "version": "0.12.0" + }, + "bcolz-0.12.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "1116e021c88273bad8a8e6b42b6139be", + "name": "bcolz", + "requires": [], + "size": 1191531, + "version": "0.12.0" + }, + "bcolz-0.12.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "57f8d482683144366bf1a2bc9ba8992d", + "name": "bcolz", + "requires": [], + "size": 1097490, + "version": "0.12.1" + }, + "bcolz-0.12.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "944f21f2e2f59e3c40a62e123c6b75eb", + "name": "bcolz", + "requires": [], + "size": 1191086, + "version": "0.12.1" + }, + "bcolz-0.12.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "fe1d5d278381af2fddc3ff8debf4d1d1", + "name": "bcolz", + "requires": [], + "size": 1160245, + "version": "0.12.1" + }, + "bcolz-0.7.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "f728ee9bd4e360f0ee37038acf86b207", + "name": "bcolz", + "requires": [], + "size": 948968, + "version": "0.7.0" + }, + "bcolz-0.7.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "36af0288d1172fda40211b9911367934", + "name": "bcolz", + "requires": [], + "size": 948285, + "version": "0.7.0" + }, + "bcolz-0.7.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "9f92d299d951baa665cff582948aeb6c", + "name": "bcolz", + "requires": [], + "size": 950644, + "version": "0.7.0" + }, + "bcolz-0.7.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "344bd5c7c4d30823e5fa5d26b0e3744b", + "name": "bcolz", + "requires": [], + "size": 1022776, + "version": "0.7.0" + }, + "bcolz-0.7.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "6f4fe732e05e9a5c8c86aa72f6e2c8a2", + "name": "bcolz", + "requires": [], + "size": 948841, + "version": "0.7.1" + }, + "bcolz-0.7.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "cfffc9da900716403e8793b47102012a", + "name": "bcolz", + "requires": [], + "size": 947889, + "version": "0.7.1" + }, + "bcolz-0.7.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "8b70fd3cbd772af87564d14e2ac26f83", + "name": "bcolz", + "requires": [], + "size": 950415, + "version": "0.7.1" + }, + "bcolz-0.7.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "ae5ba9f8de085c01d6910da3d0bd0805", + "name": "bcolz", + "requires": [], + "size": 1022342, + "version": "0.7.1" + }, + "bcolz-0.7.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "e150b50587b08bf9e58a8b34f7ac15fd", + "name": "bcolz", + "requires": [], + "size": 906815, + "version": "0.7.1" + }, + "bcolz-0.7.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "1a6d44a316e67dddca2e6f3cd2bf36cb", + "name": "bcolz", + "requires": [], + "size": 911194, + "version": "0.7.1" + }, + "bcolz-0.7.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "5d976b82bf96fc0a8747bafc8b9f74c5", + "name": "bcolz", + "requires": [], + "size": 939830, + "version": "0.7.1" + }, + "bcolz-0.7.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "13845db7d1fa0d916be9b8e7dc9dff4e", + "name": "bcolz", + "requires": [], + "size": 1043971, + "version": "0.7.1" + }, + "bcolz-0.7.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-17", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "4d182e621fe8e0a3c9b667ae9fc73572", + "name": "bcolz", + "requires": [], + "size": 977813, + "version": "0.7.2" + }, + "bcolz-0.7.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-10-17", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "972d0b3aa981f9821ba4ac976892884e", + "name": "bcolz", + "requires": [], + "size": 1031517, + "version": "0.7.2" + }, + "bcolz-0.7.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-10-17", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "7a2b2a87964ed44ad814af305b14529d", + "name": "bcolz", + "requires": [], + "size": 1146423, + "version": "0.7.2" + }, + "bcolz-0.7.2.dev-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "99522d4db9dac2ba3e4e70ce4e411722", + "name": "bcolz", + "requires": [], + "size": 978047, + "version": "0.7.2.dev" + }, + "bcolz-0.7.2.dev-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "0d4d804e00e2e2720a33b97883166f19", + "name": "bcolz", + "requires": [], + "size": 1033599, + "version": "0.7.2.dev" + }, + "bcolz-0.7.2.dev-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "8f0151f4a6ef4fe6201ea2e2c85f7cb9", + "name": "bcolz", + "requires": [], + "size": 1149246, + "version": "0.7.2.dev" + }, + "bcolz-0.7.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "bb4ce898f43641d0b47f0ddde05e71ac", + "name": "bcolz", + "requires": [], + "size": 976922, + "version": "0.7.3" + }, + "bcolz-0.7.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "f34bad37b84a4669cbf52f4db8e7f0bc", + "name": "bcolz", + "requires": [], + "size": 1032542, + "version": "0.7.3" + }, + "bcolz-0.7.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "3975a3181f295279db13a20b9bbf3101", + "name": "bcolz", + "requires": [], + "size": 1146918, + "version": "0.7.3" + }, + "bcolz-0.8.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "13f4efa0ecce68075c3ce9135000626b", + "name": "bcolz", + "requires": [], + "size": 974768, + "version": "0.8.0" + }, + "bcolz-0.8.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-13", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0fa8727de928117dede5fb52ddf8bed1", + "name": "bcolz", + "requires": [], + "size": 975869, + "version": "0.8.0" + }, + "bcolz-0.8.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-13", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "a24dbe729ce826955943375a7aa82b1b", + "name": "bcolz", + "requires": [], + "size": 1031643, + "version": "0.8.0" + }, + "bcolz-0.8.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-13", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "42525c6a78f1cd9387c24d1f35c60d8f", + "name": "bcolz", + "requires": [], + "size": 1145997, + "version": "0.8.0" + }, + "bcolz-0.8.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "125ce5bc72ebaf71ca8343a5e363ef1a", + "name": "bcolz", + "requires": [], + "size": 974034, + "version": "0.8.1" + }, + "bcolz-0.8.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "f8ce0523ec650a6d826a780d9527998a", + "name": "bcolz", + "requires": [], + "size": 976620, + "version": "0.8.1" + }, + "bcolz-0.8.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "b7d1fccc9c55c89d0e4e5d830b615145", + "name": "bcolz", + "requires": [], + "size": 1032490, + "version": "0.8.1" + }, + "bcolz-0.8.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "9cb22a366c2ed67f0ccb8e303ce33ba8", + "name": "bcolz", + "requires": [], + "size": 1147671, + "version": "0.8.1" + }, + "bcolz-0.9.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "b6d12e883d45447b9c6fb31eeda9e698", + "name": "bcolz", + "requires": [], + "size": 981377, + "version": "0.9.0" + }, + "bcolz-0.9.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "00c0e589bd41e36e62b071f82e2feb34", + "name": "bcolz", + "requires": [], + "size": 985672, + "version": "0.9.0" + }, + "bcolz-0.9.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "843fca75a6e499ec0e729850c2768a8c", + "name": "bcolz", + "requires": [], + "size": 1041771, + "version": "0.9.0" + }, + "bcolz-0.9.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "c28442d5f11d4d7e4a7bc1f18de15db4", + "name": "bcolz", + "requires": [], + "size": 1155471, + "version": "0.9.0" + }, + "bcrypt-2.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-26", + "depends": [ + "cffi >=1.1", + "python 2.7*", + "six >=1.4.1" + ], + "license": "Apache License, Version 2.0", + "license_family": "Apache", + "md5": "426c47f8a716e7e595c7eb69de1a2497", + "name": "bcrypt", + "requires": [], + "size": 40362, + "version": "2.0.0" + }, + "bcrypt-2.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-26", + "depends": [ + "cffi >=1.1", + "python 3.4*", + "six >=1.4.1" + ], + "license": "Apache License, Version 2.0", + "license_family": "Apache", + "md5": "7e4bc26289b0007cac542159c2747384", + "name": "bcrypt", + "requires": [], + "size": 40673, + "version": "2.0.0" + }, + "bcrypt-2.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-26", + "depends": [ + "cffi >=1.1", + "python 3.5*", + "six >=1.4.1" + ], + "license": "Apache License, Version 2.0", + "license_family": "Apache", + "md5": "5a07b025cee99a8acd8d8f0e553ada48", + "name": "bcrypt", + "requires": [], + "size": 40801, + "version": "2.0.0" + }, + "beautiful-soup-4.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license_family": "PSF", + "md5": "90881fbcd875fe59e54f5de99659782c", + "name": "beautiful-soup", + "requires": [], + "size": 111337, + "version": "4.3.1" + }, + "beautiful-soup-4.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "PSF", + "md5": "9eff1a1fe8682f29dccc923ed5d06a84", + "name": "beautiful-soup", + "requires": [], + "size": 111265, + "version": "4.3.1" + }, + "beautiful-soup-4.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license_family": "PSF", + "md5": "b07dcdec2014b557cf38a8b78dd3f2ab", + "name": "beautiful-soup", + "requires": [], + "size": 115854, + "version": "4.3.1" + }, + "beautiful-soup-4.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF/MIT", + "license_family": "PSF", + "md5": "b679280b735d86aaca485b6a2c1fbd87", + "name": "beautiful-soup", + "requires": [], + "size": 116405, + "version": "4.3.1" + }, + "beautiful-soup-4.3.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF/MIT", + "license_family": "PSF", + "md5": "81b2c060efc5b0de54aa52349731da75", + "name": "beautiful-soup", + "requires": [], + "size": 111933, + "version": "4.3.2" + }, + "beautiful-soup-4.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF/MIT", + "license_family": "PSF", + "md5": "83bf16646d40082238f50ee3830d7139", + "name": "beautiful-soup", + "requires": [], + "size": 111982, + "version": "4.3.2" + }, + "beautiful-soup-4.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF/MIT", + "license_family": "PSF", + "md5": "aeca0a5f2e7aef8d76817ae27770eae9", + "name": "beautiful-soup", + "requires": [], + "size": 116707, + "version": "4.3.2" + }, + "beautiful-soup-4.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF/MIT", + "license_family": "PSF", + "md5": "6914533b6d50ece73bf2926a28107427", + "name": "beautiful-soup", + "requires": [], + "size": 116968, + "version": "4.3.2" + }, + "beautifulsoup4-4.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-09", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "a1d9dfced0fa2e1e1dfa6e0374c1f319", + "name": "beautifulsoup4", + "requires": [], + "size": 118728, + "version": "4.4.0" + }, + "beautifulsoup4-4.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-09", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "09e43170598c9c1d3a440e3da90315a5", + "name": "beautifulsoup4", + "requires": [], + "size": 123939, + "version": "4.4.0" + }, + "beautifulsoup4-4.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "95305f6267352909ec8f731f697cb368", + "name": "beautifulsoup4", + "requires": [], + "size": 123510, + "version": "4.4.0" + }, + "beautifulsoup4-4.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c5e17c25e89978b277b6dac50c105b56", + "name": "beautifulsoup4", + "requires": [], + "size": 119281, + "version": "4.4.1" + }, + "beautifulsoup4-4.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6e977205e1b3e5c2f0075b9b70fa41ad", + "name": "beautifulsoup4", + "requires": [], + "size": 124495, + "version": "4.4.1" + }, + "beautifulsoup4-4.4.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "20dcbeee6d93fdd48429a3b8d66dc6cf", + "name": "beautifulsoup4", + "requires": [], + "size": 123737, + "version": "4.4.1" + }, + "binstar-0.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "keyring 1.4", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "75fd7c0503da7d917012791e97e6bbc2", + "name": "binstar", + "requires": [], + "size": 30465, + "version": "0.1.1" + }, + "binstar-0.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "keyring 1.4", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d08d0be61f4e704fde14935b7db40fb7", + "name": "binstar", + "requires": [], + "size": 30952, + "version": "0.1.2" + }, + "binstar-0.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b22b66bd310503be553455518c70825c", + "name": "binstar", + "requires": [], + "size": 75847, + "version": "0.10.1" + }, + "binstar-0.10.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-01-27", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "2a11150f9ea9b8096ffa3121b3efa526", + "name": "binstar", + "requires": [], + "size": 75885, + "version": "0.10.1" + }, + "binstar-0.10.1-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2015-02-23", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "5271ce6703cc03c72bf691fd889e0274", + "name": "binstar", + "requires": [], + "size": 76024, + "version": "0.10.1" + }, + "binstar-0.10.1-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2015-03-19", + "depends": [ + "clyent", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d9ecb022b1847e986fb03c1095ac5795", + "name": "binstar", + "requires": [], + "size": 76027, + "version": "0.10.1" + }, + "binstar-0.10.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d47d0e1af4c680cbbd49b78e3f8b41a4", + "name": "binstar", + "requires": [], + "size": 76184, + "version": "0.10.1" + }, + "binstar-0.10.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-01-27", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "0103e06e08d37d3dc0bbfd66bc872041", + "name": "binstar", + "requires": [], + "size": 76287, + "version": "0.10.1" + }, + "binstar-0.10.1-py33_2.tar.bz2": { + "build": "py33_2", + "build_number": 2, + "date": "2015-02-23", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "dba3f41ae04c9df14b6e12ede06a674c", + "name": "binstar", + "requires": [], + "size": 76349, + "version": "0.10.1" + }, + "binstar-0.10.1-py33_3.tar.bz2": { + "build": "py33_3", + "build_number": 3, + "date": "2015-03-19", + "depends": [ + "clyent", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "add6da14c032b206d015797e33fd2f1a", + "name": "binstar", + "requires": [], + "size": 76313, + "version": "0.10.1" + }, + "binstar-0.10.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c314b1569d8fe28da8f4f6e075262eaa", + "name": "binstar", + "requires": [], + "size": 76123, + "version": "0.10.1" + }, + "binstar-0.10.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-01-27", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b953b13fc6a212997fb5434005b48726", + "name": "binstar", + "requires": [], + "size": 76151, + "version": "0.10.1" + }, + "binstar-0.10.1-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2015-02-23", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "cdb31a85187aea5cb0c5d9d3c96bfd16", + "name": "binstar", + "requires": [], + "size": 76220, + "version": "0.10.1" + }, + "binstar-0.10.1-py34_3.tar.bz2": { + "build": "py34_3", + "build_number": 3, + "date": "2015-03-19", + "depends": [ + "clyent", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "6598e4565111501720f83386f194ef3d", + "name": "binstar", + "requires": [], + "size": 76223, + "version": "0.10.1" + }, + "binstar-0.10.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-08", + "depends": [ + "clyent", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "862ff056322b088c4ce43b38b1b0a7c5", + "name": "binstar", + "requires": [], + "size": 81623, + "version": "0.10.3" + }, + "binstar-0.10.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-08", + "depends": [ + "clyent", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "8731edae869c144a24911a667e84977c", + "name": "binstar", + "requires": [], + "size": 82156, + "version": "0.10.3" + }, + "binstar-0.10.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-08", + "depends": [ + "clyent", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "4e38b2e4f195a4394cfba8671f26bd47", + "name": "binstar", + "requires": [], + "size": 81962, + "version": "0.10.3" + }, + "binstar-0.10.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "clyent", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d5b60edb9d89647c57bca70c3c6469e2", + "name": "binstar", + "requires": [], + "size": 81704, + "version": "0.10.4" + }, + "binstar-0.10.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "clyent", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "bbb4b2a309b2c92063931ac227461308", + "name": "binstar", + "requires": [], + "size": 82075, + "version": "0.10.4" + }, + "binstar-0.10.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "clyent", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c2f2369612e838515b29742016d68723", + "name": "binstar", + "requires": [], + "size": 82061, + "version": "0.10.4" + }, + "binstar-0.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-08", + "depends": [ + "clyent", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d68dbb27cc334fcc40d559b4f4343d1b", + "name": "binstar", + "requires": [], + "size": 89390, + "version": "0.11.0" + }, + "binstar-0.11.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-08", + "depends": [ + "clyent", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "cafff677c1fc8968d161ac4382d75d89", + "name": "binstar", + "requires": [], + "size": 90032, + "version": "0.11.0" + }, + "binstar-0.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-08", + "depends": [ + "clyent", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "750b282419b73073998fec37c801e464", + "name": "binstar", + "requires": [], + "size": 89829, + "version": "0.11.0" + }, + "binstar-0.12-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-07-21", + "depends": [], + "license": "BSD", + "license_family": "BSD", + "md5": "9466a10940228305b82b637d1bf5e506", + "name": "binstar", + "requires": [], + "size": 614, + "version": "0.12" + }, + "binstar-0.12-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-07-30", + "depends": [], + "license": "BSD", + "license_family": "BSD", + "md5": "4a8d9ac7c24c55a825eec1acd647fd40", + "name": "binstar", + "requires": [], + "size": 628, + "version": "0.12" + }, + "binstar-0.12-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-08-04", + "depends": [], + "license": "BSD", + "license_family": "BSD", + "md5": "e91d9c35514a47d5f91a6f270f623531", + "name": "binstar", + "requires": [], + "size": 629, + "version": "0.12" + }, + "binstar-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "keyring 1.4", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "515ca3c1742814599f7fc2a9d13c57d6", + "name": "binstar", + "requires": [], + "size": 31663, + "version": "0.2.0" + }, + "binstar-0.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "keyring 1.4", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c994f327bcd0da8ff5f5b51750fd895b", + "name": "binstar", + "requires": [], + "size": 33688, + "version": "0.2.2" + }, + "binstar-0.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "keyring 3.0.1", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "e453d87e1949f5abd350bfdbc2734f96", + "name": "binstar", + "requires": [], + "size": 47057, + "version": "0.3.1" + }, + "binstar-0.3.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "keyring 3.2", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "97dbcc20be83b01883eb284a2259ed1f", + "name": "binstar", + "requires": [], + "size": 47009, + "version": "0.3.1" + }, + "binstar-0.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "keyring 3.2", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "0b71aacca516ec411930238f6c56567e", + "name": "binstar", + "requires": [], + "size": 50972, + "version": "0.4.1" + }, + "binstar-0.4.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "keyring 3.3", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b6ef66180df9aa8ec3ecea40069cc46a", + "name": "binstar", + "requires": [], + "size": 50854, + "version": "0.4.1" + }, + "binstar-0.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "keyring 3.3", + "python 2.7*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "a67be9e77867cfa954874bfde6217894", + "name": "binstar", + "requires": [], + "size": 52693, + "version": "0.4.4" + }, + "binstar-0.4.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "keyring 3.3", + "python 2.7*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "05a4341930a923c7f17e1543f9fa1b72", + "name": "binstar", + "requires": [], + "size": 52727, + "version": "0.4.4" + }, + "binstar-0.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9f310647901382eaa46b46d0ca070abf", + "name": "binstar", + "requires": [], + "size": 66112, + "version": "0.5.1" + }, + "binstar-0.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "da166f72f7bb86536e320e8d33b6703b", + "name": "binstar", + "requires": [], + "size": 66113, + "version": "0.5.1" + }, + "binstar-0.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "f339f6dde7091cb6ebd865c45cb03b4e", + "name": "binstar", + "requires": [], + "size": 66137, + "version": "0.5.1" + }, + "binstar-0.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "578f19cbaef727b3e275d424e77261e2", + "name": "binstar", + "requires": [], + "size": 66629, + "version": "0.5.2" + }, + "binstar-0.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "59142942022b27d4769de30a4c4bf7b5", + "name": "binstar", + "requires": [], + "size": 66901, + "version": "0.5.2" + }, + "binstar-0.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "abd39bfd7635a3f277d5a1cfd34db025", + "name": "binstar", + "requires": [], + "size": 66741, + "version": "0.5.2" + }, + "binstar-0.5.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "98392346a07cb88bfada38443ff18802", + "name": "binstar", + "requires": [], + "size": 68603, + "version": "0.5.3" + }, + "binstar-0.5.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d04e9fc1859b892dc334698cb6035faa", + "name": "binstar", + "requires": [], + "size": 68592, + "version": "0.5.3" + }, + "binstar-0.5.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d78d0a4c886cc31980835f83d4514174", + "name": "binstar", + "requires": [], + "size": 68707, + "version": "0.5.3" + }, + "binstar-0.5.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "30f7f4d6c51d38ce275f42afaea99fd0", + "name": "binstar", + "requires": [], + "size": 69602, + "version": "0.5.5" + }, + "binstar-0.5.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9f3bbd8b80851cb53926cbc6740f8671", + "name": "binstar", + "requires": [], + "size": 69641, + "version": "0.5.5" + }, + "binstar-0.5.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "1ee4081b2f565359a22bf27f50a5b8d5", + "name": "binstar", + "requires": [], + "size": 69670, + "version": "0.5.5" + }, + "binstar-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "342fd58c7d5f448ac277fd291a73736b", + "name": "binstar", + "requires": [], + "size": 74781, + "version": "0.7.1" + }, + "binstar-0.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "14461df51e090a5a4c84700b4084d6a9", + "name": "binstar", + "requires": [], + "size": 75037, + "version": "0.7.1" + }, + "binstar-0.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "50585effa9aee185684249e640944ab1", + "name": "binstar", + "requires": [], + "size": 74869, + "version": "0.7.1" + }, + "binstar-0.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "f5ee2a5728c2fcae06e882603d8caa20", + "name": "binstar", + "requires": [], + "size": 74812, + "version": "0.8.2" + }, + "binstar-0.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "91aa76c06b9e3a79e45891f595f1f574", + "name": "binstar", + "requires": [], + "size": 75172, + "version": "0.8.2" + }, + "binstar-0.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "e0789691bd4119004ab4daf584afda15", + "name": "binstar", + "requires": [], + "size": 75007, + "version": "0.8.2" + }, + "binstar-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "4962fe08c1fa4ceb199fe85a9394e245", + "name": "binstar", + "requires": [], + "size": 75057, + "version": "0.9.0" + }, + "binstar-0.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "ae0bcf5d57a45c004aeedbf4dfe8e2fd", + "name": "binstar", + "requires": [], + "size": 75497, + "version": "0.9.0" + }, + "binstar-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "853867a008e5cd06bf84321550769262", + "name": "binstar", + "requires": [], + "size": 75331, + "version": "0.9.0" + }, + "binstar-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "f9f97508dee0d792a087959d01ca2ac8", + "name": "binstar", + "requires": [], + "size": 75329, + "version": "0.9.1" + }, + "binstar-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "a514b1a627cd7e2590c9ed8351638dd2", + "name": "binstar", + "requires": [], + "size": 75490, + "version": "0.9.1" + }, + "binstar-0.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "bdc749a408146a1e864108e4d3b1c86d", + "name": "binstar", + "requires": [], + "size": 75348, + "version": "0.9.1" + }, + "binstar-0.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c5449fcca657080ac35674b48b4c6839", + "name": "binstar", + "requires": [], + "size": 74407, + "version": "0.9.2" + }, + "binstar-0.9.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-11-06", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c5f9fdeb00ad6c9fa06095ee918ea992", + "name": "binstar", + "requires": [], + "size": 74466, + "version": "0.9.2" + }, + "binstar-0.9.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "dfbf800409d01ec4137851f8f70ee6e3", + "name": "binstar", + "requires": [], + "size": 74749, + "version": "0.9.2" + }, + "binstar-0.9.2-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-11-06", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "492772e31403119c6f2616c4899cfd0e", + "name": "binstar", + "requires": [], + "size": 74750, + "version": "0.9.2" + }, + "binstar-0.9.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c639abe9180c4a274e6f70bb4da26919", + "name": "binstar", + "requires": [], + "size": 74596, + "version": "0.9.2" + }, + "binstar-0.9.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-11-06", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "2a974f2208565b22e5bae392177ab36c", + "name": "binstar", + "requires": [], + "size": 74601, + "version": "0.9.2" + }, + "binstar-0.9.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-19", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "cabb0b5e10871d94a1f5e8fd4aa4bcec", + "name": "binstar", + "requires": [], + "size": 75087, + "version": "0.9.3" + }, + "binstar-0.9.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-19", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "8d4a698611aa7c562b3130c74801c312", + "name": "binstar", + "requires": [], + "size": 75423, + "version": "0.9.3" + }, + "binstar-0.9.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-19", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "70e6b30e75e17b86928361aa55cef438", + "name": "binstar", + "requires": [], + "size": 75173, + "version": "0.9.3" + }, + "binstar-0.9.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9573606e006d5088efc830c223e802cd", + "name": "binstar", + "requires": [], + "size": 75820, + "version": "0.9.4" + }, + "binstar-0.9.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "1124876ae392e865ad468547fe8aff0d", + "name": "binstar", + "requires": [], + "size": 76223, + "version": "0.9.4" + }, + "binstar-0.9.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "8dcec9b02ed5f464f17bf603555b55b2", + "name": "binstar", + "requires": [], + "size": 75907, + "version": "0.9.4" + }, + "binstar-0.9.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-05", + "depends": [ + "clyent", + "dateutil", + "python 2.7*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "ad3d7b0bab2c9b62f7e8b5968c2a3515", + "name": "binstar", + "requires": [], + "size": 75974, + "version": "0.9.5" + }, + "binstar-0.9.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-05", + "depends": [ + "clyent", + "dateutil", + "python 3.3*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "3e60573d2f5a0b64c205e93a538dd1e6", + "name": "binstar", + "requires": [], + "size": 76137, + "version": "0.9.5" + }, + "binstar-0.9.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-05", + "depends": [ + "clyent", + "dateutil", + "python 3.4*", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "5277112f57d079ae1904a18e07b7d6ec", + "name": "binstar", + "requires": [], + "size": 75960, + "version": "0.9.5" + }, + "binstar-build-0.10.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-16", + "depends": [ + "binstar 0.10.3", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "BSD", + "license_family": "Other", + "md5": "39f5c9e9cd1d1001ae788f86cbc1ca69", + "name": "binstar-build", + "requires": [], + "size": 65419, + "version": "0.10.5" + }, + "binstar-build-0.10.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "binstar 0.10.3", + "jinja2", + "psutil", + "python 3.3*" + ], + "license": "BSD", + "license_family": "Other", + "md5": "2c96624297d1b02914efdeb41ff4d1fb", + "name": "binstar-build", + "requires": [], + "size": 66720, + "version": "0.10.5" + }, + "binstar-build-0.10.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "binstar 0.10.3", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "BSD", + "license_family": "Other", + "md5": "55132be2d9bfaddf4be92ca57e7ce896", + "name": "binstar-build", + "requires": [], + "size": 66880, + "version": "0.10.5" + }, + "binstar-build-0.10.7-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-07-31", + "depends": [], + "license": "BSD", + "md5": "19aceeb68b6f6e566c5b8bbe34e19a25", + "name": "binstar-build", + "requires": [], + "size": 636, + "version": "0.10.7" + }, + "binstar-build-0.10.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "binstar 0.11.0", + "jinja2", + "psutil", + "python 2.7*" + ], + "license": "BSD", + "license_family": "Other", + "md5": "15e946b52ae2a62eabd35290745c808f", + "name": "binstar-build", + "requires": [], + "size": 66552, + "version": "0.10.7" + }, + "binstar-build-0.10.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "binstar 0.11.0", + "jinja2", + "psutil", + "python 3.3*" + ], + "license": "BSD", + "license_family": "Other", + "md5": "08d3467d097989589210b7e71598f87e", + "name": "binstar-build", + "requires": [], + "size": 67798, + "version": "0.10.7" + }, + "binstar-build-0.10.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "binstar 0.11.0", + "jinja2", + "psutil", + "python 3.4*" + ], + "license": "BSD", + "license_family": "Other", + "md5": "b96cdf940dc758ab8b95f5dc79a43d73", + "name": "binstar-build", + "requires": [], + "size": 67961, + "version": "0.10.7" + }, + "biopython-1.60-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "8197cddff346798cbdf8e523ea99e5d8", + "name": "biopython", + "requires": [], + "size": 1827174, + "version": "1.60" + }, + "biopython-1.60-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "46d5270614e7dede085d848942405403", + "name": "biopython", + "requires": [], + "size": 1828723, + "version": "1.60" + }, + "biopython-1.60-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "6409f91732f95942925f872dc740a876", + "name": "biopython", + "requires": [], + "size": 1827429, + "version": "1.60" + }, + "biopython-1.60-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "e4486eec849107ff55d8772918084942", + "name": "biopython", + "requires": [], + "size": 1828581, + "version": "1.60" + }, + "biopython-1.60-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "d98a5a0bc4737a1e997694d8008f7814", + "name": "biopython", + "requires": [], + "size": 1827909, + "version": "1.60" + }, + "biopython-1.60-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "0b0789054f1572aaea28d08d05800848", + "name": "biopython", + "requires": [], + "size": 1829034, + "version": "1.60" + }, + "biopython-1.61-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "2151079692b1ed6b617851e03080bc82", + "name": "biopython", + "requires": [], + "size": 2017338, + "version": "1.61" + }, + "biopython-1.61-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "3cf5f7d5b5bf9eb3da372edd0f7e4ef5", + "name": "biopython", + "requires": [], + "size": 2014763, + "version": "1.61" + }, + "biopython-1.61-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "c283e1eaba9be5274a153f4189731400", + "name": "biopython", + "requires": [], + "size": 2017273, + "version": "1.61" + }, + "biopython-1.61-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "4e3209b08ebc3fc7a889f2fd058c9f7c", + "name": "biopython", + "requires": [], + "size": 2014768, + "version": "1.61" + }, + "biopython-1.61-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "20b5c2c04839ac7bdedad7b59ae06e54", + "name": "biopython", + "requires": [], + "size": 2017563, + "version": "1.61" + }, + "biopython-1.61-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "b7fef124ceb69b7899d237a215aff9ae", + "name": "biopython", + "requires": [], + "size": 2015132, + "version": "1.61" + }, + "biopython-1.62-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "745d7a8d4d4c9619107f990e76c6f926", + "name": "biopython", + "requires": [], + "size": 2162076, + "version": "1.62" + }, + "biopython-1.62-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "1a7d2375d8497373830acc0de47939a8", + "name": "biopython", + "requires": [], + "size": 2158421, + "version": "1.62" + }, + "biopython-1.62-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "e8a98138157a9ff1c1c2fed5da86c90d", + "name": "biopython", + "requires": [], + "size": 2161809, + "version": "1.62" + }, + "biopython-1.62-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "7e7019b59a641d0a2b13ef1ccf2151e5", + "name": "biopython", + "requires": [], + "size": 2158442, + "version": "1.62" + }, + "biopython-1.63-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "9fa11d285fa2388f127cfba6a153ef3d", + "name": "biopython", + "requires": [], + "size": 2138726, + "version": "1.63" + }, + "biopython-1.63-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "c4c91b151b4b3db3bce52affc9750657", + "name": "biopython", + "requires": [], + "size": 2138507, + "version": "1.63" + }, + "biopython-1.63-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "015265c958f6b2becf893c23baa0589b", + "name": "biopython", + "requires": [], + "size": 2138776, + "version": "1.63" + }, + "biopython-1.63-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "d3ca0cdcde5eaa39c62483bfcdbc688f", + "name": "biopython", + "requires": [], + "size": 2138800, + "version": "1.63" + }, + "biopython-1.63-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "5c5ce58b3f6d55362ae9179e5bc87aff", + "name": "biopython", + "requires": [], + "size": 2239624, + "version": "1.63" + }, + "biopython-1.63-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "2d15a45707e3b0288f923a7bc90d8262", + "name": "biopython", + "requires": [], + "size": 2259503, + "version": "1.63" + }, + "biopython-1.64-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "7dddc40d3db2974c863ace270b041c43", + "name": "biopython", + "requires": [], + "size": 2237159, + "version": "1.64" + }, + "biopython-1.64-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "60380051ee4ddd2cbdc700fc11cb2c5b", + "name": "biopython", + "requires": [], + "size": 2228937, + "version": "1.64" + }, + "biopython-1.64-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "20d3e56310f02f1e45e6835477de44f2", + "name": "biopython", + "requires": [], + "size": 2299975, + "version": "1.64" + }, + "biopython-1.64-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "3a69c6391e9a9562dd2d8cb0fbb14ef7", + "name": "biopython", + "requires": [], + "size": 2307169, + "version": "1.64" + }, + "biopython-1.64-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "b3f68e9b8f0100116ce5ae80e85a9ef0", + "name": "biopython", + "requires": [], + "size": 2259471, + "version": "1.64" + }, + "biopython-1.64-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "3aa708c6165a524a1655a74769ed1081", + "name": "biopython", + "requires": [], + "size": 2260002, + "version": "1.64" + }, + "biopython-1.64-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "42af0943949e29e0a57800aac8acc028", + "name": "biopython", + "requires": [], + "size": 2329267, + "version": "1.64" + }, + "biopython-1.64-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "af32dd77fd831d67e1103c9a6074b440", + "name": "biopython", + "requires": [], + "size": 2329655, + "version": "1.64" + }, + "biopython-1.65-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "d3929bb20e198220fd5e23b9d7b334e3", + "name": "biopython", + "requires": [], + "size": 2291384, + "version": "1.65" + }, + "biopython-1.65-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "bb7c06cfe138ca94a51a2513f1bac10f", + "name": "biopython", + "requires": [], + "size": 2377608, + "version": "1.65" + }, + "biopython-1.65-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "09e4fefcb8d9dd8c15772a37b1a4e0b8", + "name": "biopython", + "requires": [], + "size": 2370683, + "version": "1.65" + }, + "biopython-1.65-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "2c60d08b2ae7a2cf396e6043fccc1056", + "name": "biopython", + "requires": [], + "size": 2289164, + "version": "1.65" + }, + "biopython-1.65-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "bde4bb8099555ddfbedd246854f0d28d", + "name": "biopython", + "requires": [], + "size": 2291693, + "version": "1.65" + }, + "biopython-1.65-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "80cc4096b30436292d8ef437555dcbfc", + "name": "biopython", + "requires": [], + "size": 2374751, + "version": "1.65" + }, + "biopython-1.65-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "cf67ca7f4370a73c40d989d9d06c524a", + "name": "biopython", + "requires": [], + "size": 2377904, + "version": "1.65" + }, + "biopython-1.65-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "053b883224af4cb591a1afe4ea4c4d70", + "name": "biopython", + "requires": [], + "size": 2370185, + "version": "1.65" + }, + "biopython-1.66-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "3acaf25471a075127b5871e730aea114", + "name": "biopython", + "requires": [], + "size": 2308893, + "version": "1.66" + }, + "biopython-1.66-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "41feec41acccf299e3917d100c6ea651", + "name": "biopython", + "requires": [], + "size": 2399678, + "version": "1.66" + }, + "biopython-1.66-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "e1c59b97075a0ccbf38e40fdee2a2ae6", + "name": "biopython", + "requires": [], + "size": 2397492, + "version": "1.66" + }, + "biopython-1.66-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 2.7*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "1ea110b3c264bb1a6d5b5c509708f512", + "name": "biopython", + "requires": [], + "size": 2309431, + "version": "1.66" + }, + "biopython-1.66-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 3.4*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "e6f44e98a2d56ec33be6eae058084df1", + "name": "biopython", + "requires": [], + "size": 2400928, + "version": "1.66" + }, + "biopython-1.66-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 3.5*" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "070b319682dcab93c43cc8dc5efe4028", + "name": "biopython", + "requires": [], + "size": 2397385, + "version": "1.66" + }, + "bitarray-0.8.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "68c76279650442cdbd9f352449efd6d8", + "name": "bitarray", + "requires": [], + "size": 90058, + "version": "0.8.0" + }, + "bitarray-0.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "33758a003124c7ae72cdd1b1bbf1f47c", + "name": "bitarray", + "requires": [], + "size": 91104, + "version": "0.8.0" + }, + "bitarray-0.8.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF", + "md5": "3c2aa4134420973156746c5b056ec9a2", + "name": "bitarray", + "requires": [], + "size": 90395, + "version": "0.8.0" + }, + "bitarray-0.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "9b8740ad5ad80aac2bf08adaf2edd971", + "name": "bitarray", + "requires": [], + "size": 90188, + "version": "0.8.1" + }, + "bitarray-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "63ac1570da537ba9894eab26e0a41d5f", + "name": "bitarray", + "requires": [], + "size": 91223, + "version": "0.8.1" + }, + "bitarray-0.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF", + "md5": "21d9c393e4b049662a13cf9ae9efea09", + "name": "bitarray", + "requires": [], + "size": 90532, + "version": "0.8.1" + }, + "bitarray-0.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF", + "md5": "96ca8d057efbce99a3e10e14ad3fb91b", + "name": "bitarray", + "requires": [], + "size": 91612, + "version": "0.8.1" + }, + "bitarray-0.8.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "PSF", + "md5": "37abe18c8d4b0f2359871a004f93dc5b", + "name": "bitarray", + "requires": [], + "size": 91546, + "version": "0.8.1" + }, + "bitey-0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "a16422c44fb5cd97c9336e15ea276504", + "name": "bitey", + "requires": [], + "size": 6875, + "version": "0.0" + }, + "bitey-0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "ca418272cbcf0b99598d977dfebf6656", + "name": "bitey", + "requires": [], + "size": 6775, + "version": "0.0" + }, + "blaze-0.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dynd-python 0.5.0", + "numba 0.11.0", + "numexpr 2.2*", + "numpy 1.7*", + "ply 3.4", + "pycparser", + "pykit 0.1.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "b8b5289ee008e67138d23225cec1074c", + "name": "blaze", + "requires": [], + "size": 891260, + "version": "0.3" + }, + "blaze-0.4.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.0", + "datashape", + "dynd-python 0.6.0", + "flask 0.10.1", + "numba 0.11.1", + "numpy 1.7*", + "ply 3.4", + "pycparser", + "pykit 0.1.0", + "pyparsing 1.5.6", + "python 2.6*", + "pyyaml" + ], + "license": "BSD", + "md5": "d65a0fd6cdbdfd80dbc6ad09810e154c", + "name": "blaze", + "requires": [], + "size": 179696, + "version": "0.4.0" + }, + "blaze-0.4.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.0", + "datashape", + "dynd-python 0.6.0", + "flask 0.10.1", + "numba 0.11.1", + "numpy 1.7*", + "ply 3.4", + "pycparser", + "pykit 0.1.0", + "pyparsing 1.5.6", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "7c77a984bf283d98a3c68c721e37b142", + "name": "blaze", + "requires": [], + "size": 178805, + "version": "0.4.0" + }, + "blaze-0.4.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.0", + "datashape", + "dynd-python 0.6.0", + "flask 0.10.1", + "numba 0.11.1", + "numpy 1.7*", + "ply 3.4", + "pycparser", + "pykit 0.1.0", + "pyparsing 1.5.6", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "2ade0d68f39d36222db13bb682cff8d9", + "name": "blaze", + "requires": [], + "size": 189513, + "version": "0.4.0" + }, + "blaze-0.4.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.1", + "datashape", + "dynd-python 0.6.0", + "flask 0.10.1", + "numba 0.12.0", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pykit 0.1.0", + "pyparsing 2.0.1", + "python 2.6*", + "pyyaml" + ], + "license": "BSD", + "md5": "2822c282e8d53625cc4ce819112c7f28", + "name": "blaze", + "requires": [], + "size": 179721, + "version": "0.4.1" + }, + "blaze-0.4.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.1", + "datashape", + "dynd-python 0.6.0", + "flask 0.10.1", + "numba 0.12.0", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pykit 0.1.0", + "pyparsing 2.0.1", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "2db4b40c8b13c91dedfc2ca874742124", + "name": "blaze", + "requires": [], + "size": 178698, + "version": "0.4.1" + }, + "blaze-0.4.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.1", + "datashape", + "dynd-python 0.6.0", + "flask 0.10.1", + "numba 0.12.0", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pykit 0.1.0", + "pyparsing 2.0.1", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "5f54183f849ec9b357fc55a41066f06e", + "name": "blaze", + "requires": [], + "size": 189662, + "version": "0.4.1" + }, + "blaze-0.4.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.1", + "datashape", + "dynd-python 0.6.1", + "flask 0.10.1", + "numba 0.12.1", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pykit 0.2.0", + "pyparsing 2.0.1", + "pytables 3.1.0", + "python 2.6*", + "pyyaml" + ], + "license": "BSD", + "md5": "8d9328c745d83fbc9aa476cb08761da7", + "name": "blaze", + "requires": [], + "size": 214962, + "version": "0.4.2" + }, + "blaze-0.4.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.1", + "datashape", + "dynd-python 0.6.1", + "flask 0.10.1", + "numba 0.12.1", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pykit 0.2.0", + "pyparsing 2.0.1", + "pytables 3.1.0", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "cabda630a75146e14329b4d22dd815c6", + "name": "blaze", + "requires": [], + "size": 213630, + "version": "0.4.2" + }, + "blaze-0.4.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.1", + "datashape", + "dynd-python 0.6.1", + "flask 0.10.1", + "numba 0.12.1", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pykit 0.2.0", + "pyparsing 2.0.1", + "pytables 3.1.0", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "30ff16352903286801236119b1d65b1c", + "name": "blaze", + "requires": [], + "size": 225754, + "version": "0.4.2" + }, + "blaze-0.5.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.2", + "datashape", + "dynd-python 0.6.2", + "flask 0.10.1", + "h5py 2.3*", + "numba 0.13.1", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pyparsing 2.0.1", + "pytables 3.1.1", + "python 2.6*", + "pyyaml", + "sqlalchemy" + ], + "license": "BSD", + "md5": "3f65e944826e4f919d223c8f58e9328e", + "name": "blaze", + "requires": [], + "size": 253231, + "version": "0.5.0" + }, + "blaze-0.5.0-np18py26_1.tar.bz2": { + "build": "np18py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "blz 0.6.2", + "datashape", + "dynd-python 0.6.2", + "flask 0.10.1", + "h5py 2.3*", + "numpy 1.8*", + "pyparsing 2.0.1", + "pytables 3.1.1", + "python 2.6*", + "pyyaml", + "sqlalchemy" + ], + "license": "BSD", + "md5": "16adb1db42af4626d798f2863ed31b14", + "name": "blaze", + "requires": [], + "size": 253140, + "version": "0.5.0" + }, + "blaze-0.5.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.2", + "datashape", + "dynd-python 0.6.2", + "flask 0.10.1", + "h5py 2.3*", + "numba 0.13.1", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pyparsing 2.0.1", + "pytables 3.1.1", + "python 2.7*", + "pyyaml", + "sqlalchemy" + ], + "license": "BSD", + "md5": "6b8cceca35e7094ac5225d2e876af169", + "name": "blaze", + "requires": [], + "size": 251722, + "version": "0.5.0" + }, + "blaze-0.5.0-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "blz 0.6.2", + "datashape", + "dynd-python 0.6.2", + "flask 0.10.1", + "h5py 2.3*", + "numpy 1.8*", + "pyparsing 2.0.1", + "pytables 3.1.1", + "python 2.7*", + "pyyaml", + "sqlalchemy" + ], + "license": "BSD", + "md5": "1489922e9d9037b4a5637221e95d745f", + "name": "blaze", + "requires": [], + "size": 251741, + "version": "0.5.0" + }, + "blaze-0.5.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.2", + "datashape", + "dynd-python 0.6.2", + "flask 0.10.1", + "h5py 2.3*", + "numba 0.13.1", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pyparsing 2.0.1", + "pytables 3.1.1", + "python 3.3*", + "pyyaml", + "sqlalchemy" + ], + "license": "BSD", + "md5": "14d979d2a3405fdaad625a089eb6b317", + "name": "blaze", + "requires": [], + "size": 264901, + "version": "0.5.0" + }, + "blaze-0.5.0-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "blz 0.6.2", + "datashape", + "dynd-python 0.6.2", + "flask 0.10.1", + "h5py 2.3*", + "numpy 1.8*", + "pyparsing 2.0.1", + "pytables 3.1.1", + "python 3.3*", + "pyyaml", + "sqlalchemy" + ], + "license": "BSD", + "md5": "0b22973688ff727a7dfeda51328c5aba", + "name": "blaze", + "requires": [], + "size": 264909, + "version": "0.5.0" + }, + "blaze-0.5.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "blz 0.6.2", + "datashape", + "dynd-python 0.6.2", + "flask 0.10.1", + "h5py 2.3*", + "numba 0.13.1", + "numpy 1.8*", + "ply 3.4", + "pycparser", + "pyparsing 2.0.1", + "pytables 3.1.1", + "python 3.4*", + "pyyaml", + "sqlalchemy" + ], + "license": "BSD", + "md5": "d38cf93f0e870139468090918631c184", + "name": "blaze", + "requires": [], + "size": 261413, + "version": "0.5.0" + }, + "blaze-0.5.0-np18py34_1.tar.bz2": { + "build": "np18py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "blz 0.6.2", + "datashape", + "dynd-python 0.6.2", + "flask 0.10.1", + "h5py 2.3*", + "numpy 1.8*", + "pyparsing 2.0.1", + "pytables 3.1.1", + "python 3.4*", + "pyyaml", + "sqlalchemy" + ], + "license": "BSD", + "md5": "9cbb679b8f1d4e5a9343e16accf24529", + "name": "blaze", + "requires": [], + "size": 261485, + "version": "0.5.0" + }, + "blaze-0.6.0-np18py26_1.tar.bz2": { + "build": "np18py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "56f619a224750dd4b6cf43ab165a7b76", + "name": "blaze", + "requires": [], + "size": 88020, + "version": "0.6.0" + }, + "blaze-0.6.0-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "7bd6f9cec5adeadedbf0691f50b2bd40", + "name": "blaze", + "requires": [], + "size": 87368, + "version": "0.6.0" + }, + "blaze-0.6.0-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "6b6729bcd5c6c290902feb51b9ceb227", + "name": "blaze", + "requires": [], + "size": 90303, + "version": "0.6.0" + }, + "blaze-0.6.0-np18py34_1.tar.bz2": { + "build": "np18py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "9cc64aa4968c21032a1d0efc6720f818", + "name": "blaze", + "requires": [], + "size": 90730, + "version": "0.6.0" + }, + "blaze-0.6.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "51e5399fba0e7256b448c63be888cf74", + "name": "blaze", + "requires": [], + "size": 98409, + "version": "0.6.1" + }, + "blaze-0.6.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "ef0a7462d34f1d988d099ccddcbd67be", + "name": "blaze", + "requires": [], + "size": 97724, + "version": "0.6.1" + }, + "blaze-0.6.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "7c56dd12640f08164d97267958df6bd7", + "name": "blaze", + "requires": [], + "size": 100735, + "version": "0.6.1" + }, + "blaze-0.6.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "0c71b9467fc52044134faaa81a1a117a", + "name": "blaze", + "requires": [], + "size": 101561, + "version": "0.6.1" + }, + "blaze-0.6.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-28", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "349674ae556e55b353a24838f92b2e56", + "name": "blaze", + "requires": [], + "size": 126819, + "version": "0.6.2" + }, + "blaze-0.6.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-28", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "5c59ecaaba89ef29dff6ecb2394382ee", + "name": "blaze", + "requires": [], + "size": 126198, + "version": "0.6.2" + }, + "blaze-0.6.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-28", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "6920b07a7ffe27b2549ec9b4313dfaf6", + "name": "blaze", + "requires": [], + "size": 129707, + "version": "0.6.2" + }, + "blaze-0.6.2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-28", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.4", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "ab11a7b22ef651a7036a40b87c70e6e9", + "name": "blaze", + "requires": [], + "size": 131217, + "version": "0.6.2" + }, + "blaze-0.6.3-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-31", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "85570796ad71264bf1dcd3a96998f81b", + "name": "blaze", + "requires": [], + "size": 127787, + "version": "0.6.3" + }, + "blaze-0.6.3-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-31", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "4724c994f8af7ad289eb8b3339dd0e06", + "name": "blaze", + "requires": [], + "size": 127198, + "version": "0.6.3" + }, + "blaze-0.6.3-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-31", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "d53041ae2998f8ea160f1e73e647f2b4", + "name": "blaze", + "requires": [], + "size": 130770, + "version": "0.6.3" + }, + "blaze-0.6.3-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-31", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.8*", + "pandas", + "pytables 3.1.1", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "d85f888be015c099426d8bff60074754", + "name": "blaze", + "requires": [], + "size": 132382, + "version": "0.6.3" + }, + "blaze-0.6.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "48d7f6f2f0181fbedbfc7408c2f4cb82", + "name": "blaze", + "requires": [], + "size": 127728, + "version": "0.6.3" + }, + "blaze-0.6.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz", + "unicodecsv 0.9.4" + ], + "license": "BSD", + "md5": "25908a5b2b15903af69be6f338d218ba", + "name": "blaze", + "requires": [], + "size": 127191, + "version": "0.6.3" + }, + "blaze-0.6.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "a528df047fd032f1c986f8f05ea28a21", + "name": "blaze", + "requires": [], + "size": 130740, + "version": "0.6.3" + }, + "blaze-0.6.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "1afbf8d684cac3804c3d3c0ffeb485d9", + "name": "blaze", + "requires": [], + "size": 132237, + "version": "0.6.3" + }, + "blaze-0.6.4-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-10-06", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "617a9ecf5817a6bd7ac3740b09b88633", + "name": "blaze", + "requires": [], + "size": 157866, + "version": "0.6.4" + }, + "blaze-0.6.4-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-06", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "01b84aa33bb246583300675e25b03987", + "name": "blaze", + "requires": [], + "size": 156930, + "version": "0.6.4" + }, + "blaze-0.6.4-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-10-06", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "609feda77ba78728b2d983baf95c5cda", + "name": "blaze", + "requires": [], + "size": 165873, + "version": "0.6.4" + }, + "blaze-0.6.4-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-10-06", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "5627a68d9eb392b092d89534a6e77cd7", + "name": "blaze", + "requires": [], + "size": 162757, + "version": "0.6.4" + }, + "blaze-0.6.5-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-10-07", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "e4fd2c593a639871f3c501dbbe5094cc", + "name": "blaze", + "requires": [], + "size": 158676, + "version": "0.6.5" + }, + "blaze-0.6.5-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-07", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "6404bedc72da11017293a5933fc63d29", + "name": "blaze", + "requires": [], + "size": 158283, + "version": "0.6.5" + }, + "blaze-0.6.5-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-10-07", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "6528d2c3170e0e19f680c0f8c59f5833", + "name": "blaze", + "requires": [], + "size": 167010, + "version": "0.6.5" + }, + "blaze-0.6.5-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-10-07", + "depends": [ + "bcolz 0.7.1", + "cytoolz", + "datashape", + "dynd-python 0.6.5", + "flask 0.10.1", + "h5py 2.3*", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "pytables 3.1.1", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "3525c3ca4ebf098cbad255b2d454771d", + "name": "blaze", + "requires": [], + "size": 163826, + "version": "0.6.5" + }, + "blaze-0.7.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "h5py 2.3*", + "into", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "psutil", + "pytables 3.1.1", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "6b6fb799e0a0599ddd05a142453bfe54", + "name": "blaze", + "requires": [], + "size": 295326, + "version": "0.7.0" + }, + "blaze-0.7.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "bcolz 0.7.2.dev", + "cytoolz", + "datashape", + "flask 0.10.1", + "h5py 2.3*", + "into", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "psutil", + "pytables 3.1.1", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "d4f10707f01ad1c88dff97fb4327d691", + "name": "blaze", + "requires": [], + "size": 295704, + "version": "0.7.0" + }, + "blaze-0.7.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "bcolz 0.7.2.dev", + "cytoolz", + "datashape", + "flask 0.10.1", + "h5py 2.3*", + "into", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "psutil", + "pytables 3.1.1", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "6c550fd868f71b665431748cc1b536e3", + "name": "blaze", + "requires": [], + "size": 303712, + "version": "0.7.0" + }, + "blaze-0.7.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "bcolz 0.7.2.dev", + "cytoolz", + "datashape", + "flask 0.10.1", + "h5py 2.3*", + "into", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "psutil", + "pytables 3.1.1", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "c2229af2e5934213b1048a1ba761c227", + "name": "blaze", + "requires": [], + "size": 304056, + "version": "0.7.0" + }, + "blaze-0.7.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "bcolz 0.8.0", + "blaze-core 0.7.2", + "cytoolz", + "h5py 2.4*", + "numba 0.17.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "a0affb5342d29299553ebdc9be8de4e9", + "name": "blaze", + "requires": [], + "size": 1291, + "version": "0.7.2" + }, + "blaze-0.7.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "bcolz 0.8.0", + "blaze-core 0.7.2", + "cytoolz", + "h5py 2.4*", + "numba 0.17.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "c1d43b05be719470f989c36b7b32df09", + "name": "blaze", + "requires": [], + "size": 1269, + "version": "0.7.2" + }, + "blaze-0.7.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "bcolz 0.8.0", + "blaze-core 0.7.2", + "cytoolz", + "h5py 2.4*", + "numba 0.17.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 3.3*" + ], + "license": "BSD", + "md5": "d4eaec4d22298e8917ab7ea393268155", + "name": "blaze", + "requires": [], + "size": 1253, + "version": "0.7.2" + }, + "blaze-0.7.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "bcolz 0.8.0", + "blaze-core 0.7.2", + "cytoolz", + "h5py 2.4*", + "numba 0.17.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 3.4*" + ], + "license": "BSD", + "md5": "a9d2f0fc2f6b7fbcb3b9d080041b9778", + "name": "blaze", + "requires": [], + "size": 1239, + "version": "0.7.2" + }, + "blaze-0.7.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "bcolz 0.8.1", + "blaze-core 0.7.3", + "cytoolz", + "h5py 2.4*", + "numba 0.17.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "5002e1e1544ea3ce3a49099bfa59ea55", + "name": "blaze", + "requires": [], + "size": 1287, + "version": "0.7.3" + }, + "blaze-0.7.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "bcolz 0.8.1", + "blaze-core 0.7.3", + "cytoolz", + "h5py 2.4*", + "numba 0.17.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "89aec4bfbee05d086af72bc7e8918fef", + "name": "blaze", + "requires": [], + "size": 1251, + "version": "0.7.3" + }, + "blaze-0.7.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "bcolz 0.8.1", + "blaze-core 0.7.3", + "cytoolz", + "h5py 2.4*", + "numba 0.17.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 3.3*" + ], + "license": "BSD", + "md5": "6e3444032e6c98a5be81c75eb71f84d3", + "name": "blaze", + "requires": [], + "size": 1248, + "version": "0.7.3" + }, + "blaze-0.7.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "bcolz 0.8.1", + "blaze-core 0.7.3", + "cytoolz", + "h5py 2.4*", + "numba 0.17.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 3.4*" + ], + "license": "BSD", + "md5": "d02b4a41082002e77553351586ffaacd", + "name": "blaze", + "requires": [], + "size": 1239, + "version": "0.7.3" + }, + "blaze-0.8.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "bcolz 0.8.1", + "blaze-core 0.8.0", + "cytoolz", + "h5py 2.5*", + "numba 0.18.2", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "c0a5b7ef8ab40d4ece4aea0b6062e451", + "name": "blaze", + "requires": [], + "size": 921, + "version": "0.8.0" + }, + "blaze-0.8.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "bcolz 0.8.1", + "blaze-core 0.8.0", + "cytoolz", + "h5py 2.5*", + "numba 0.18.2", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "b4947502a9bc47a1abb19860f0ec3a69", + "name": "blaze", + "requires": [], + "size": 894, + "version": "0.8.0" + }, + "blaze-0.8.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "bcolz 0.8.1", + "blaze-core 0.8.0", + "cytoolz", + "h5py 2.5*", + "numba 0.18.2", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 3.3*" + ], + "license": "BSD", + "md5": "3a9261e7be587ac16c511575aa9c6bfb", + "name": "blaze", + "requires": [], + "size": 890, + "version": "0.8.0" + }, + "blaze-0.8.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "bcolz 0.8.1", + "blaze-core 0.8.0", + "cytoolz", + "h5py 2.5*", + "numba 0.18.2", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.1.1", + "python 3.4*" + ], + "license": "BSD", + "md5": "43f16878552ddf34d7e8b4215cf4aa52", + "name": "blaze", + "requires": [], + "size": 866, + "version": "0.8.0" + }, + "blaze-0.8.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-17", + "depends": [ + "bcolz 0.10.0", + "blaze-core 0.8.2", + "cytoolz", + "h5py 2.5*", + "numba 0.20.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.2.0", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "f82d7f3e89987b0bb1e0adf9c3b37cb1", + "name": "blaze", + "requires": [], + "size": 930, + "version": "0.8.2" + }, + "blaze-0.8.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-17", + "depends": [ + "bcolz 0.10.0", + "blaze-core 0.8.2", + "cytoolz", + "h5py 2.5*", + "numba 0.20.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.2.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "44704954e6733463d9b63d67a264ea0e", + "name": "blaze", + "requires": [], + "size": 904, + "version": "0.8.2" + }, + "blaze-0.8.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-17", + "depends": [ + "bcolz 0.10.0", + "blaze-core 0.8.2", + "cytoolz", + "h5py 2.5*", + "numba 0.20.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.2.0", + "python 3.3*" + ], + "license": "BSD", + "md5": "afefd040580835386edc3099f2f060e1", + "name": "blaze", + "requires": [], + "size": 900, + "version": "0.8.2" + }, + "blaze-0.8.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-17", + "depends": [ + "bcolz 0.10.0", + "blaze-core 0.8.2", + "cytoolz", + "h5py 2.5*", + "numba 0.20.0", + "numpy 1.9*", + "pymongo 2.8", + "pytables 3.2.0", + "python 3.4*" + ], + "license": "BSD", + "md5": "671178d543bac08edeb795f6a6c0c938", + "name": "blaze", + "requires": [], + "size": 876, + "version": "0.8.2" + }, + "blaze-0.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "bcolz", + "blaze-core", + "cytoolz", + "h5py", + "numba", + "numpy", + "pymongo", + "pytables", + "python 2.7*" + ], + "license": "BSD", + "md5": "7aa2ecd318f6d9773feeee2afbdbde53", + "name": "blaze", + "requires": [], + "size": 356, + "version": "0.8.3" + }, + "blaze-0.8.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "bcolz", + "blaze-core", + "cytoolz", + "h5py", + "numba", + "numpy", + "pymongo", + "pytables", + "python 3.4*" + ], + "license": "BSD", + "md5": "1c7f0148481057a6c61fb260ee08cf58", + "name": "blaze", + "requires": [], + "size": 358, + "version": "0.8.3" + }, + "blaze-0.8.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-18", + "depends": [ + "bcolz", + "blaze-core", + "cytoolz", + "h5py", + "numba", + "numpy", + "pymongo", + "pytables", + "python 3.5*" + ], + "license": "BSD", + "md5": "710bb51554b2e09567e3fbcb44f42401", + "name": "blaze", + "requires": [], + "size": 362, + "version": "0.8.3" + }, + "blaze-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "bcolz", + "blaze-core", + "cytoolz", + "h5py", + "numba", + "numpy", + "pymongo", + "pytables", + "python 2.7*" + ], + "license": "BSD", + "md5": "9080ecfbcf838b0241173e458615b829", + "name": "blaze", + "requires": [], + "size": 356, + "version": "0.9.0" + }, + "blaze-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "bcolz", + "blaze-core", + "cytoolz", + "h5py", + "numba", + "numpy", + "pymongo", + "pytables", + "python 3.4*" + ], + "license": "BSD", + "md5": "0607326b3ea4557bb628dbb2d972f180", + "name": "blaze", + "requires": [], + "size": 362, + "version": "0.9.0" + }, + "blaze-0.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "bcolz", + "blaze-core", + "cytoolz", + "h5py", + "numba", + "numpy", + "pymongo", + "pytables", + "python 3.5*" + ], + "license": "BSD", + "md5": "74365c5a737941477ecd34fed0a2b696", + "name": "blaze", + "requires": [], + "size": 363, + "version": "0.9.0" + }, + "blaze-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "cytoolz", + "dask", + "flask", + "flask-cors", + "h5py", + "numba", + "odo", + "psutil", + "pytables >=3.0.0", + "python 2.7*", + "pyyaml", + "requests", + "sqlalchemy" + ], + "license": "BSD", + "md5": "2e9e92e036b09e6d9d12b034e7d1c9a2", + "name": "blaze", + "requires": [], + "size": 555300, + "version": "0.9.1" + }, + "blaze-0.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "cytoolz", + "dask", + "flask", + "flask-cors", + "h5py", + "numba", + "odo", + "psutil", + "pytables >=3.0.0", + "python 3.4*", + "pyyaml", + "requests", + "sqlalchemy" + ], + "license": "BSD", + "md5": "141c48f2aa5f1172f29419d9827736c3", + "name": "blaze", + "requires": [], + "size": 554586, + "version": "0.9.1" + }, + "blaze-0.9.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "cytoolz", + "dask", + "flask", + "flask-cors", + "h5py", + "numba", + "odo", + "psutil", + "pytables >=3.0.0", + "python 3.5*", + "pyyaml", + "requests", + "sqlalchemy" + ], + "license": "BSD", + "md5": "3164022fe9d2ba03b424a9891d377f86", + "name": "blaze", + "requires": [], + "size": 553441, + "version": "0.9.1" + }, + "blaze-core-0.7.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "datashape", + "flask 0.10.1", + "into", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "psutil", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "0e2c9c060bc794c144e8d58ac7ecba5f", + "name": "blaze-core", + "requires": [], + "size": 309026, + "version": "0.7.2" + }, + "blaze-core-0.7.2-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-03-10", + "depends": [ + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.2.2", + "pandas", + "psutil", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "418634a6cc1653f97c75faea3b6f436b", + "name": "blaze-core", + "requires": [], + "size": 309019, + "version": "0.7.2" + }, + "blaze-core-0.7.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "datashape", + "flask 0.10.1", + "into", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "psutil", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "b1daac0f56301f332d88424023a65d10", + "name": "blaze-core", + "requires": [], + "size": 309640, + "version": "0.7.2" + }, + "blaze-core-0.7.2-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-03-10", + "depends": [ + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.2.2", + "pandas", + "psutil", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "3329189a537a5d6238268e18cc032893", + "name": "blaze-core", + "requires": [], + "size": 309545, + "version": "0.7.2" + }, + "blaze-core-0.7.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "datashape", + "flask 0.10.1", + "into", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "psutil", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "d995f93a1593a3bd07b5a29a00a3ebf3", + "name": "blaze-core", + "requires": [], + "size": 320697, + "version": "0.7.2" + }, + "blaze-core-0.7.2-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-03-10", + "depends": [ + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.2.2", + "pandas", + "psutil", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "33cfcedabdc648f32561237266362329", + "name": "blaze-core", + "requires": [], + "size": 321001, + "version": "0.7.2" + }, + "blaze-core-0.7.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "datashape", + "flask 0.10.1", + "into", + "multipledispatch 0.4*", + "numpy 1.9*", + "pandas", + "psutil", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "f116d8ccc86ed8d20c24dea842e6d26c", + "name": "blaze-core", + "requires": [], + "size": 317082, + "version": "0.7.2" + }, + "blaze-core-0.7.2-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-03-10", + "depends": [ + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.2.2", + "pandas", + "psutil", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "1cb32b82d19b33b1a083ff5f86d2aeb8", + "name": "blaze-core", + "requires": [], + "size": 317166, + "version": "0.7.2" + }, + "blaze-core-0.7.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.1", + "pandas", + "psutil", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "607a0b3abaeed414c176cbe6392872c9", + "name": "blaze-core", + "requires": [], + "size": 311683, + "version": "0.7.3" + }, + "blaze-core-0.7.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.1", + "pandas", + "psutil", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "4444e7c238232655a9be02535e091971", + "name": "blaze-core", + "requires": [], + "size": 312624, + "version": "0.7.3" + }, + "blaze-core-0.7.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.1", + "pandas", + "psutil", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "dc87a210a55de7fbb851a64bb76cfd7a", + "name": "blaze-core", + "requires": [], + "size": 324545, + "version": "0.7.3" + }, + "blaze-core-0.7.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.1", + "pandas", + "psutil", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "ed3a91797c432200624d0f5e9066e256", + "name": "blaze-core", + "requires": [], + "size": 320837, + "version": "0.7.3" + }, + "blaze-core-0.8.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.2", + "pandas", + "psutil", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "32747dfe1879858dc45de94877c5171b", + "name": "blaze-core", + "requires": [], + "size": 322529, + "version": "0.8.0" + }, + "blaze-core-0.8.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.2", + "pandas", + "psutil", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "14edfbe1a49d5761ecfe1ed9236c17fa", + "name": "blaze-core", + "requires": [], + "size": 323841, + "version": "0.8.0" + }, + "blaze-core-0.8.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.2", + "pandas", + "psutil", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "2091744bd006bcc584089df65e997465", + "name": "blaze-core", + "requires": [], + "size": 339022, + "version": "0.8.0" + }, + "blaze-core-0.8.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.2", + "pandas", + "psutil", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "0e5ba9aa9bc64cbe7e54b5b9fbe05002", + "name": "blaze-core", + "requires": [], + "size": 334112, + "version": "0.8.0" + }, + "blaze-core-0.8.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-17", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.3", + "pandas", + "psutil", + "python 2.6*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "32e6e05ccec3bbcd92a875d179232823", + "name": "blaze-core", + "requires": [], + "size": 348165, + "version": "0.8.2" + }, + "blaze-core-0.8.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-17", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.3", + "pandas", + "psutil", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "ee88c1ce14a8dbd569338b9b45e9cd5d", + "name": "blaze-core", + "requires": [], + "size": 349497, + "version": "0.8.2" + }, + "blaze-core-0.8.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-17", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.3", + "pandas", + "psutil", + "python 3.3*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "077204bf90a829f9c3b749c71c866116", + "name": "blaze-core", + "requires": [], + "size": 364916, + "version": "0.8.2" + }, + "blaze-core-0.8.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-17", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.3", + "pandas", + "psutil", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "dab434e0b64b59ab93bae1961f6217c8", + "name": "blaze-core", + "requires": [], + "size": 356663, + "version": "0.8.2" + }, + "blaze-core-0.8.2-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "cytoolz", + "datashape", + "flask 0.10.1", + "multipledispatch 0.4*", + "numpy 1.9*", + "odo 0.3.3", + "pandas", + "psutil", + "python 3.5*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "09188ee57ec3b322f28f8e7b44278d12", + "name": "blaze-core", + "requires": [], + "size": 355544, + "version": "0.8.2" + }, + "blaze-core-0.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "cytoolz", + "datashape", + "flask", + "multipledispatch", + "numpy", + "odo", + "pandas", + "psutil", + "python 2.7*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "51f6abfea3e90b25cf74f7d1c582e39f", + "name": "blaze-core", + "requires": [], + "size": 515028, + "version": "0.8.3" + }, + "blaze-core-0.8.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "cytoolz", + "datashape", + "flask", + "multipledispatch", + "numpy", + "odo", + "pandas", + "psutil", + "python 3.4*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "4d4c5ec303d468525aad8a0e565d410e", + "name": "blaze-core", + "requires": [], + "size": 523212, + "version": "0.8.3" + }, + "blaze-core-0.8.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "cytoolz", + "datashape", + "flask", + "multipledispatch", + "numpy", + "odo", + "pandas", + "psutil", + "python 3.5*", + "requests", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "9fa0c9bbe8110857e15c31c25c59fe29", + "name": "blaze-core", + "requires": [], + "size": 521882, + "version": "0.8.3" + }, + "blaze-core-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "datashape", + "multipledispatch", + "numpy", + "odo", + "pandas", + "psutil", + "python 2.7*", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "65aa5206811fbe5f6df17e9f145af00e", + "name": "blaze-core", + "requires": [], + "size": 555245, + "version": "0.9.0" + }, + "blaze-core-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "datashape", + "multipledispatch", + "numpy", + "odo", + "pandas", + "psutil", + "python 3.4*", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "6eea0d15d5926ed904ce6045e4363d25", + "name": "blaze-core", + "requires": [], + "size": 554149, + "version": "0.9.0" + }, + "blaze-core-0.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "datashape", + "multipledispatch", + "numpy", + "odo", + "pandas", + "psutil", + "python 3.5*", + "sqlalchemy", + "toolz" + ], + "license": "BSD", + "md5": "d2f35e69123ffaac2237e197f703af70", + "name": "blaze-core", + "requires": [], + "size": 552683, + "version": "0.9.0" + }, + "blist-1.3.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "6891e3efe6d3060d59267ae3209e57f1", + "name": "blist", + "requires": [], + "size": 161334, + "version": "1.3.4" + }, + "blist-1.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "11eb335acd081a85bf5da38bc00430f1", + "name": "blist", + "requires": [], + "size": 161362, + "version": "1.3.4" + }, + "blist-1.3.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "338aff86f1f97ba2e715340c78a8a91e", + "name": "blist", + "requires": [], + "size": 156573, + "version": "1.3.4" + }, + "blist-1.3.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "6244629a8b61c0b5b559f872b2e5c566", + "name": "blist", + "requires": [], + "size": 161841, + "version": "1.3.6" + }, + "blist-1.3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8b20deffbeaa8f438e0fa2141b0f752f", + "name": "blist", + "requires": [], + "size": 161728, + "version": "1.3.6" + }, + "blist-1.3.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f97295e1d45c63cc76ff57665c9e36d3", + "name": "blist", + "requires": [], + "size": 157453, + "version": "1.3.6" + }, + "blist-1.3.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "bd4c677e7513008dacfc0789ee7d4a5f", + "name": "blist", + "requires": [], + "size": 162866, + "version": "1.3.6" + }, + "blist-1.3.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "ac6018cbeaf0320fef3a20d42484ce85", + "name": "blist", + "requires": [], + "size": 167301, + "version": "1.3.6" + }, + "blockspring-0.1.10-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.6*", + "requests" + ], + "license": "MIT", + "md5": "ba9a53298e3ceccdb0d0928554be5dc2", + "name": "blockspring", + "requires": [], + "size": 6678, + "version": "0.1.10" + }, + "blockspring-0.1.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.7*", + "requests" + ], + "license": "MIT", + "md5": "b26e1a6e0d83c494bfa9c7176b1a020c", + "name": "blockspring", + "requires": [], + "size": 6661, + "version": "0.1.10" + }, + "blockspring-0.1.10-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.3*", + "requests" + ], + "license": "MIT", + "md5": "a9767c5ccdbada82fc33facfc52ff003", + "name": "blockspring", + "requires": [], + "size": 6796, + "version": "0.1.10" + }, + "blockspring-0.1.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.4*", + "requests" + ], + "license": "MIT", + "md5": "e0a47e751ebebe69b1f44efdce5a73cf", + "name": "blockspring", + "requires": [], + "size": 6795, + "version": "0.1.10" + }, + "blockspring-0.1.13-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "python 2.6*", + "requests" + ], + "license": "MIT", + "md5": "686a36687dc67523e6e6741487eb9643", + "name": "blockspring", + "requires": [], + "size": 6636, + "version": "0.1.13" + }, + "blockspring-0.1.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "python 2.7*", + "requests" + ], + "license": "MIT", + "md5": "3f1e878a6a711e2ff61c634b5bbc5b24", + "name": "blockspring", + "requires": [], + "size": 6607, + "version": "0.1.13" + }, + "blockspring-0.1.13-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "python 3.3*", + "requests" + ], + "license": "MIT", + "md5": "63a1dcbf5110bf838d85ded54ef5a299", + "name": "blockspring", + "requires": [], + "size": 6741, + "version": "0.1.13" + }, + "blockspring-0.1.13-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "python 3.4*", + "requests" + ], + "license": "MIT", + "md5": "286982f66962f889990b0284098a1d85", + "name": "blockspring", + "requires": [], + "size": 6764, + "version": "0.1.13" + }, + "blockspring-0.1.13-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "requests" + ], + "license": "MIT", + "md5": "62e2e525fe6a15f89aeaff084f6ccf45", + "name": "blockspring", + "requires": [], + "size": 6702, + "version": "0.1.13" + }, + "blosc-1.1.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "6ab11ec91073e2ca0064061a500e8ab5", + "name": "blosc", + "requires": [], + "size": 18847, + "version": "1.1.5" + }, + "blosc-1.2.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "be7fc35d03bdaef0d5d8f685b6e392d5", + "name": "blosc", + "requires": [], + "size": 18379, + "version": "1.2.3" + }, + "blz-0.6.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cython 0.19.2", + "numexpr 2.2*", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "2df9c06b5241bb49d6a31716ea22aaba", + "name": "blz", + "requires": [], + "size": 936079, + "version": "0.6.0" + }, + "blz-0.6.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cython 0.19.2", + "numexpr 2.2*", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "fd15f49b4cf20534935dd301f6efde50", + "name": "blz", + "requires": [], + "size": 934873, + "version": "0.6.0" + }, + "blz-0.6.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cython 0.19.2", + "numexpr 2.2*", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "e0d210c05a890c1511c53c2bdca054f1", + "name": "blz", + "requires": [], + "size": 913600, + "version": "0.6.0" + }, + "blz-0.6.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numexpr 2.3*", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "70036dd8cbe77ae951636d5f9977581a", + "name": "blz", + "requires": [], + "size": 937878, + "version": "0.6.1" + }, + "blz-0.6.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numexpr 2.3*", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d85ef13780edfa5b541127537ac6006f", + "name": "blz", + "requires": [], + "size": 936712, + "version": "0.6.1" + }, + "blz-0.6.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numexpr 2.3*", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "b5d2b4ba37d02e60361922e8cd8afd0e", + "name": "blz", + "requires": [], + "size": 924586, + "version": "0.6.1" + }, + "blz-0.6.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numexpr 2.3*", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "f9e8746193ad2280aa8d2af7f9535857", + "name": "blz", + "requires": [], + "size": 1004796, + "version": "0.6.1" + }, + "blz-0.6.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numexpr 2.3*", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "f5c981a3b5b5d3a9fa18285775b13dd4", + "name": "blz", + "requires": [], + "size": 939531, + "version": "0.6.2" + }, + "blz-0.6.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numexpr 2.3*", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "96b0d07a72e7be9bbfaf334324653659", + "name": "blz", + "requires": [], + "size": 941220, + "version": "0.6.2" + }, + "blz-0.6.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numexpr 2.3*", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "ab7b1d6bc143b3f707cb7c2c2a72c442", + "name": "blz", + "requires": [], + "size": 939024, + "version": "0.6.2" + }, + "blz-0.6.2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numexpr 2.3*", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "b407355a66a86b68a930604eb6140c2c", + "name": "blz", + "requires": [], + "size": 1007670, + "version": "0.6.2" + }, + "blz-0.6.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numexpr 2.3*", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "47b3d3581344371ecf9593352cf0223b", + "name": "blz", + "requires": [], + "size": 906332, + "version": "0.6.2" + }, + "blz-0.6.2-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-06-18", + "depends": [ + "numexpr 2.4*", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "f94d5b9e11a29c251c0cdbdc498624bb", + "name": "blz", + "requires": [], + "size": 959583, + "version": "0.6.2" + }, + "blz-0.6.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numexpr 2.3*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "371411ec39140174f02b4b95efac717e", + "name": "blz", + "requires": [], + "size": 908137, + "version": "0.6.2" + }, + "blz-0.6.2-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-06-18", + "depends": [ + "numexpr 2.4*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6d2ccab18100849d6256579c79bebed0", + "name": "blz", + "requires": [], + "size": 961539, + "version": "0.6.2" + }, + "blz-0.6.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numexpr 2.3*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "19f83676a960ce7481d4bba671aa82e6", + "name": "blz", + "requires": [], + "size": 938968, + "version": "0.6.2" + }, + "blz-0.6.2-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-06-18", + "depends": [ + "numexpr 2.4*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "28904b186fb7af54e270bdd2f5b5786c", + "name": "blz", + "requires": [], + "size": 1001979, + "version": "0.6.2" + }, + "blz-0.6.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numexpr 2.3*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "2a8256ee932cf8398b04676fd3ed8859", + "name": "blz", + "requires": [], + "size": 1043400, + "version": "0.6.2" + }, + "blz-0.6.2-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-06-18", + "depends": [ + "numexpr 2.4*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "a31909198fade3590b888f3a71722e52", + "name": "blz", + "requires": [], + "size": 1112851, + "version": "0.6.2" + }, + "blz-0.6.2-np19py35_1.tar.bz2": { + "build": "np19py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "numexpr 2.4*", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "bc0120bdfe83bdb3e334020183a50313", + "name": "blz", + "requires": [], + "size": 1129858, + "version": "0.6.2" + }, + "bokeh-0.1.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.3.6", + "numpy 1.7*", + "pandas", + "python 2.7*", + "redis-py 2.7.2", + "requests" + ], + "license": "BSD", + "md5": "83d41556191d6222bb088a2fc014030f", + "name": "bokeh", + "requires": [], + "size": 2263039, + "version": "0.1.1" + }, + "bokeh-0.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-25", + "depends": [ + "flask >=0.10.1", + "jinja2 >=2.7", + "numpy", + "pandas >=0.11.0", + "python 2.7*", + "python-dateutil >=2.1", + "pyyaml >=3.10", + "pyzmq >=14.3.1", + "requests >=1.2.3", + "six >=1.5.2", + "tornado >=4.0.1" + ], + "license": "BSD", + "md5": "055a8bf65b9e43790ef6a24a44962ac3", + "name": "bokeh", + "requires": [], + "size": 4013389, + "version": "0.10.0" + }, + "bokeh-0.10.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-25", + "depends": [ + "flask >=0.10.1", + "jinja2 >=2.7", + "numpy", + "pandas >=0.11.0", + "python 3.4*", + "python-dateutil >=2.1", + "pyyaml >=3.10", + "pyzmq >=14.3.1", + "requests >=1.2.3", + "six >=1.5.2", + "tornado >=4.0.1" + ], + "license": "BSD", + "md5": "da8bffd3eb1866d1d8be146f3c62842c", + "name": "bokeh", + "requires": [], + "size": 4050502, + "version": "0.10.0" + }, + "bokeh-0.10.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-25", + "depends": [ + "flask >=0.10.1", + "jinja2 >=2.7", + "numpy", + "pandas >=0.11.0", + "python 3.5*", + "python-dateutil >=2.1", + "pyyaml >=3.10", + "pyzmq >=14.3.1", + "requests >=1.2.3", + "six >=1.5.2", + "tornado >=4.0.1" + ], + "license": "BSD", + "md5": "54127770e92e0a43886a4c8aa8bea2fe", + "name": "bokeh", + "requires": [], + "size": 4048246, + "version": "0.10.0" + }, + "bokeh-0.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "futures >=3.0.3", + "jinja2 >=2.7", + "numpy", + "python 2.7*", + "python-dateutil >=2.1", + "pyyaml >=3.10", + "requests >=1.2.3", + "six >=1.5.2", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "6ed199bf36a4307e56b6f7c56e6a3b1e", + "name": "bokeh", + "requires": [], + "size": 4452772, + "version": "0.11.0" + }, + "bokeh-0.11.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-01-06", + "depends": [ + "futures", + "jinja2", + "numpy", + "python 2.7*", + "python-dateutil", + "pyyaml", + "requests", + "six", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "1a8d12c4ebb3b58cb6e9a093cb220899", + "name": "bokeh", + "requires": [], + "size": 4501345, + "version": "0.11.0" + }, + "bokeh-0.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "jinja2 >=2.7", + "numpy", + "python 3.4*", + "python-dateutil >=2.1", + "pyyaml >=3.10", + "requests >=1.2.3", + "six >=1.5.2", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "ed565e0c86708792cac5c54d55457df6", + "name": "bokeh", + "requires": [], + "size": 4453479, + "version": "0.11.0" + }, + "bokeh-0.11.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-01-06", + "depends": [ + "jinja2", + "numpy", + "python 3.4*", + "python-dateutil", + "pyyaml", + "requests", + "six", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "95390463e6128ba15efaddcadb0fa975", + "name": "bokeh", + "requires": [], + "size": 4484677, + "version": "0.11.0" + }, + "bokeh-0.11.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "jinja2 >=2.7", + "numpy", + "python 3.5*", + "python-dateutil >=2.1", + "pyyaml >=3.10", + "requests >=1.2.3", + "six >=1.5.2", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "44d42fb00c481911c8f1fa149fa7a160", + "name": "bokeh", + "requires": [], + "size": 4449873, + "version": "0.11.0" + }, + "bokeh-0.11.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-01-06", + "depends": [ + "jinja2", + "numpy", + "python 3.5*", + "python-dateutil", + "pyyaml", + "requests", + "six", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "3bc82beb9130365d649774e8d30e3b6f", + "name": "bokeh", + "requires": [], + "size": 4451940, + "version": "0.11.0" + }, + "bokeh-0.11.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-04", + "depends": [ + "futures", + "jinja2", + "numpy", + "python 2.7*", + "python-dateutil", + "pyyaml", + "requests", + "six", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "8a2e4574552a343f8a1bea6486f9d383", + "name": "bokeh", + "requires": [], + "size": 3285429, + "version": "0.11.1" + }, + "bokeh-0.11.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-04", + "depends": [ + "jinja2", + "numpy", + "python 3.4*", + "python-dateutil", + "pyyaml", + "requests", + "six", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "4e3415aa13e5b74124029fc0e74e6ff0", + "name": "bokeh", + "requires": [], + "size": 3311251, + "version": "0.11.1" + }, + "bokeh-0.11.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-04", + "depends": [ + "jinja2", + "numpy", + "python 3.5*", + "python-dateutil", + "pyyaml", + "requests", + "six", + "tornado >=4.3" + ], + "license": "BSD", + "md5": "18fa926450e03773a22b2f3ceac1cfe3", + "name": "bokeh", + "requires": [], + "size": 3251590, + "version": "0.11.1" + }, + "bokeh-0.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.3.6", + "numpy 1.7*", + "pandas", + "python 2.7*", + "redis-py 2.7.2", + "requests" + ], + "license": "BSD", + "md5": "abc0842bfb4814c6502fc5125bf8d950", + "name": "bokeh", + "requires": [], + "size": 3281791, + "version": "0.2" + }, + "bokeh-0.2-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.3.6", + "numpy 1.7*", + "pandas", + "python 2.7*", + "redis-py 2.7.2", + "requests" + ], + "license": "BSD", + "md5": "cc26824a1339fd065d3a7a81ac788252", + "name": "bokeh", + "requires": [], + "size": 3282239, + "version": "0.2" + }, + "bokeh-0.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.3.6", + "numpy 1.7*", + "pandas", + "python 2.7*", + "pyyaml", + "redis-py 2.7.2", + "requests" + ], + "license": "BSD", + "md5": "d938b27d3cfcac9f49f9d4b8210533d1", + "name": "bokeh", + "requires": [], + "size": 6400560, + "version": "0.3" + }, + "bokeh-0.4-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.2", + "numpy 1.7*", + "pandas", + "python 2.7*", + "pyyaml", + "redis-py 2.9.1", + "requests", + "six" + ], + "license": "BSD", + "md5": "54d2390fb74442935ae93000ff7bf96d", + "name": "bokeh", + "requires": [], + "size": 13510692, + "version": "0.4" + }, + "bokeh-0.4-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.7*", + "pandas", + "python 3.3*", + "pyyaml", + "redis-py 2.9.1", + "requests", + "six" + ], + "license": "BSD", + "md5": "3ad437e30403146678f5bdef242c319a", + "name": "bokeh", + "requires": [], + "size": 13503759, + "version": "0.4" + }, + "bokeh-0.4-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.2", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "redis-py 2.9.1", + "requests", + "six" + ], + "license": "BSD", + "md5": "6dbc09417f8e9a78c31cf5a0c44180c0", + "name": "bokeh", + "requires": [], + "size": 13510189, + "version": "0.4" + }, + "bokeh-0.4-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "redis-py 2.9.1", + "requests", + "six" + ], + "license": "BSD", + "md5": "6202d5846741d502fedc3277d8e22ae3", + "name": "bokeh", + "requires": [], + "size": 13503261, + "version": "0.4" + }, + "bokeh-0.4.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.2", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "redis-py 2.9.1", + "requests", + "six" + ], + "license": "BSD", + "md5": "abde63f3cc9d3d98a97a4025e746348d", + "name": "bokeh", + "requires": [], + "size": 13667519, + "version": "0.4.1" + }, + "bokeh-0.4.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "redis-py 2.9.1", + "requests", + "six" + ], + "license": "BSD", + "md5": "3d3ea330420b99449447ba1f39127da5", + "name": "bokeh", + "requires": [], + "size": 13658020, + "version": "0.4.1" + }, + "bokeh-0.4.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.2", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "7a3330c04d5809f35573c981aff5d0d2", + "name": "bokeh", + "requires": [], + "size": 11275287, + "version": "0.4.2" + }, + "bokeh-0.4.2-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.2", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "017a057ea55f843a4cc4d8c9148c4bc8", + "name": "bokeh", + "requires": [], + "size": 11293541, + "version": "0.4.2" + }, + "bokeh-0.4.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "0e90ebe542dbda84f12be9fbb69701f6", + "name": "bokeh", + "requires": [], + "size": 11241379, + "version": "0.4.2" + }, + "bokeh-0.4.2-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "ed99f4e63b1ea2d8e562676c2dacdaa0", + "name": "bokeh", + "requires": [], + "size": 11250482, + "version": "0.4.2" + }, + "bokeh-0.4.2-np18py34_1.tar.bz2": { + "build": "np18py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.4*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "9ea8523ba89cc4da7779793e14eab61d", + "name": "bokeh", + "requires": [], + "size": 11298569, + "version": "0.4.2" + }, + "bokeh-0.4.4-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.2", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "0724c9bfd7e4042928debdc1fc2f16ac", + "name": "bokeh", + "requires": [], + "size": 13591029, + "version": "0.4.4" + }, + "bokeh-0.4.4-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.3", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "7356a35e256ddb68f2c23a6a96f6d3f6", + "name": "bokeh", + "requires": [], + "size": 13592789, + "version": "0.4.4" + }, + "bokeh-0.4.4-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "bca159a6c8644e1f97ad0d790943b43d", + "name": "bokeh", + "requires": [], + "size": 13641669, + "version": "0.4.4" + }, + "bokeh-0.4.4-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "686fd8e99a16d2d78e6a98f2c6400176", + "name": "bokeh", + "requires": [], + "size": 13642788, + "version": "0.4.4" + }, + "bokeh-0.4.4-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.4*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "9f4affbf1d561c18a4ccfe017e528828", + "name": "bokeh", + "requires": [], + "size": 13603240, + "version": "0.4.4" + }, + "bokeh-0.4.4-np18py34_1.tar.bz2": { + "build": "np18py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.4*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "507bd433af12bd7f1ba574d15e8e3b8d", + "name": "bokeh", + "requires": [], + "size": 13604510, + "version": "0.4.4" + }, + "bokeh-0.5.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.3", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "c5bae7514a19db89d58bc6634ce62e9d", + "name": "bokeh", + "requires": [], + "size": 11831723, + "version": "0.5.0" + }, + "bokeh-0.5.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "acafa752ea1e4b8a7fa738bb1254d072", + "name": "bokeh", + "requires": [], + "size": 11879865, + "version": "0.5.0" + }, + "bokeh-0.5.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.4*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "f9e9cfb7020cd16058c94000165502e5", + "name": "bokeh", + "requires": [], + "size": 11858790, + "version": "0.5.0" + }, + "bokeh-0.5.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.3", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "166343e8c933827610c3d4b897236d8d", + "name": "bokeh", + "requires": [], + "size": 12194706, + "version": "0.5.1" + }, + "bokeh-0.5.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "04a2e3804566191439ee3f0816a6932a", + "name": "bokeh", + "requires": [], + "size": 12218171, + "version": "0.5.1" + }, + "bokeh-0.5.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.4*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "a3f35b11484eac6e764224229faf5d2e", + "name": "bokeh", + "requires": [], + "size": 12212821, + "version": "0.5.1" + }, + "bokeh-0.5.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "gevent-websocket 0.9.3", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "5a629b88178815f94bdb63f18ccc9ec4", + "name": "bokeh", + "requires": [], + "size": 1393549, + "version": "0.5.2" + }, + "bokeh-0.5.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "6cd73d6f3b01f073d6a5f1a9b9ab3a55", + "name": "bokeh", + "requires": [], + "size": 1412478, + "version": "0.5.2" + }, + "bokeh-0.5.2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.4*", + "pyyaml", + "requests", + "six" + ], + "license": "BSD", + "md5": "d109ebc2b3fceb2c9ed95fe38a77fb82", + "name": "bokeh", + "requires": [], + "size": 1408728, + "version": "0.5.2" + }, + "bokeh-0.6.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "numpy 1.8*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "94ad378a05179805feb094fad6aa6cbd", + "name": "bokeh", + "requires": [], + "size": 14671716, + "version": "0.6.0" + }, + "bokeh-0.6.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "3e87d0643542dc786c8134c631e12565", + "name": "bokeh", + "requires": [], + "size": 14631380, + "version": "0.6.0" + }, + "bokeh-0.6.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "flask 0.10.1", + "numpy 1.8*", + "pandas", + "python 3.4*", + "pyyaml", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "7408e0d180ffdb8e80ede87e66de1710", + "name": "bokeh", + "requires": [], + "size": 14700419, + "version": "0.6.0" + }, + "bokeh-0.6.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "numpy 1.9*", + "pandas", + "python 2.7*", + "pyyaml", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "c3f5b8efc09e2d8365d382e3ed5acdff", + "name": "bokeh", + "requires": [], + "size": 14671079, + "version": "0.6.0" + }, + "bokeh-0.6.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "flask 0.10.1", + "numpy 1.9*", + "pandas", + "python 3.3*", + "pyyaml", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "25b40e573e86f224b3294805c35951dc", + "name": "bokeh", + "requires": [], + "size": 14631241, + "version": "0.6.0" + }, + "bokeh-0.6.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "flask 0.10.1", + "numpy 1.9*", + "pandas", + "python 3.4*", + "pyyaml", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "174fbc40f4f06a5b0700d983da882519", + "name": "bokeh", + "requires": [], + "size": 14700567, + "version": "0.6.0" + }, + "bokeh-0.6.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "numpy 1.9*", + "pandas", + "python 2.7*", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "aca82e7b14874943795e3b7f86432a6a", + "name": "bokeh", + "requires": [], + "size": 3017068, + "version": "0.6.1" + }, + "bokeh-0.6.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "flask 0.10.1", + "numpy 1.9*", + "pandas", + "python 3.3*", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "65af0441c766274504036d7c58524c0e", + "name": "bokeh", + "requires": [], + "size": 3002644, + "version": "0.6.1" + }, + "bokeh-0.6.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "flask 0.10.1", + "numpy 1.9*", + "pandas", + "python 3.4*", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "adf0285959ff06b640916d03a3a742e9", + "name": "bokeh", + "requires": [], + "size": 3033492, + "version": "0.6.1" + }, + "bokeh-0.7.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-05", + "depends": [ + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "numpy 1.9*", + "pandas", + "python 2.7*", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "9961a07cc325056a7dd3e86e7ed79d52", + "name": "bokeh", + "requires": [], + "size": 13680350, + "version": "0.7.0" + }, + "bokeh-0.7.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-05", + "depends": [ + "flask 0.10.1", + "numpy 1.9*", + "pandas", + "python 3.3*", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "47a3b75bba07300854c2bf9f4a418ee5", + "name": "bokeh", + "requires": [], + "size": 13750402, + "version": "0.7.0" + }, + "bokeh-0.7.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-05", + "depends": [ + "flask 0.10.1", + "numpy 1.9*", + "pandas", + "python 3.4*", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "4704fa13d90bca0334c141e06ba468a8", + "name": "bokeh", + "requires": [], + "size": 13649528, + "version": "0.7.0" + }, + "bokeh-0.7.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 2.7*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "9ebef4e4227ba96681ae53bfb37c310f", + "name": "bokeh", + "requires": [], + "size": 13774773, + "version": "0.7.1" + }, + "bokeh-0.7.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.3*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "ea5bb6114e64f222e0c53fb6015f0cf8", + "name": "bokeh", + "requires": [], + "size": 13724557, + "version": "0.7.1" + }, + "bokeh-0.7.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.4*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "a02178c652572e0a6b343e770ccfe948", + "name": "bokeh", + "requires": [], + "size": 13752919, + "version": "0.7.1" + }, + "bokeh-0.8.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 2.7*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "66874392a30b549344620efa639bedf8", + "name": "bokeh", + "requires": [], + "size": 14204209, + "version": "0.8.0" + }, + "bokeh-0.8.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.3*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "69e9685ab47f638f977584a16c68be8c", + "name": "bokeh", + "requires": [], + "size": 14340231, + "version": "0.8.0" + }, + "bokeh-0.8.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.4*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "47028fe12465df6c1741ef34b3043dc7", + "name": "bokeh", + "requires": [], + "size": 14203713, + "version": "0.8.0" + }, + "bokeh-0.8.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 2.7*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "0d12ea6fcdc3eb4608e5eebc42a9d169", + "name": "bokeh", + "requires": [], + "size": 14198807, + "version": "0.8.1" + }, + "bokeh-0.8.1-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "colorama", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "2a224de6b28b76ea6436a2e0135aa6e3", + "name": "bokeh", + "requires": [], + "size": 14197604, + "version": "0.8.1" + }, + "bokeh-0.8.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.3*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "aee1b7e0b5a49af9674a04be77e4d8a8", + "name": "bokeh", + "requires": [], + "size": 14337278, + "version": "0.8.1" + }, + "bokeh-0.8.1-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "66cd3ad8993fc612978c2b4871b4ada5", + "name": "bokeh", + "requires": [], + "size": 14340041, + "version": "0.8.1" + }, + "bokeh-0.8.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "colorama", + "dateutil", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.4*", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "8659dc4d155572507a825477ee4d231b", + "name": "bokeh", + "requires": [], + "size": 14199966, + "version": "0.8.1" + }, + "bokeh-0.8.1-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "f8036a94d593bd405cafbee77a4bf8b1", + "name": "bokeh", + "requires": [], + "size": 14201191, + "version": "0.8.1" + }, + "bokeh-0.8.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-30", + "depends": [ + "colorama", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "6bc1c3090cb04bbb7ad24c44dbb47361", + "name": "bokeh", + "requires": [], + "size": 14300053, + "version": "0.8.2" + }, + "bokeh-0.8.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-30", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "12c7f4b09a2b1b01ad7e3bb369bbc4a1", + "name": "bokeh", + "requires": [], + "size": 14362838, + "version": "0.8.2" + }, + "bokeh-0.8.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-30", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pandas", + "pygments", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "md5": "65ab4c1162d5e4e164988f088caaa210", + "name": "bokeh", + "requires": [], + "size": 14277974, + "version": "0.8.2" + }, + "bokeh-0.9.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "colorama", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "26de4774a2663181cfe68e95dad27ca6", + "name": "bokeh", + "requires": [], + "size": 13200662, + "version": "0.9.0" + }, + "bokeh-0.9.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c0e3ba058131cc92b623ed0eb2312742", + "name": "bokeh", + "requires": [], + "size": 13216598, + "version": "0.9.0" + }, + "bokeh-0.9.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b78b6587c9a89bd85523eca085604acc", + "name": "bokeh", + "requires": [], + "size": 13198987, + "version": "0.9.0" + }, + "bokeh-0.9.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "colorama", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "28fbfc91c4a24269382c13585bafb8ab", + "name": "bokeh", + "requires": [], + "size": 15732249, + "version": "0.9.1" + }, + "bokeh-0.9.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "e30bcb0e8940904da40e06b867d63647", + "name": "bokeh", + "requires": [], + "size": 15798965, + "version": "0.9.1" + }, + "bokeh-0.9.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "76156422047281979442fca4f7317bae", + "name": "bokeh", + "requires": [], + "size": 15795831, + "version": "0.9.1" + }, + "bokeh-0.9.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "colorama", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "418779ccc26dc1005f368cf2ce5d6888", + "name": "bokeh", + "requires": [], + "size": 15721452, + "version": "0.9.2" + }, + "bokeh-0.9.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "6deebb6b51669dd0f30431167ff2a603", + "name": "bokeh", + "requires": [], + "size": 15798983, + "version": "0.9.2" + }, + "bokeh-0.9.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "8cd4cca2faa0bf7143345a2be753199a", + "name": "bokeh", + "requires": [], + "size": 15799194, + "version": "0.9.2" + }, + "bokeh-0.9.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-08-28", + "depends": [ + "colorama", + "flask 0.10.1", + "gevent 1.0.1", + "gevent-websocket 0.9.3", + "greenlet 0.4*", + "ipython", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "afb986c50b569a1b74a382e54901d16a", + "name": "bokeh", + "requires": [], + "size": 14950217, + "version": "0.9.3" + }, + "bokeh-0.9.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-08-28", + "depends": [ + "colorama", + "flask 0.10.1", + "greenlet 0.4*", + "ipython", + "jinja2", + "markupsafe", + "numpy 1.9*", + "pygments", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "pyzmq 14.*", + "requests", + "six", + "tornado", + "werkzeug" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d08fb05e940fd74f1d13f11798da9ef7", + "name": "bokeh", + "requires": [], + "size": 14971385, + "version": "0.9.3" + }, + "boost-1.57.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-12-03", + "depends": [], + "license": "Boost license (http://www.boost.org/users/license.html)", + "license_family": "Other", + "md5": "5c5942aa3694af15dbb35ada6d9437dd", + "name": "boost", + "requires": [], + "size": 14897124, + "version": "1.57.0" + }, + "boost-1.57.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-05-20", + "depends": [ + "icu 54.1" + ], + "license": "Boost license (http://www.boost.org/users/license.html)", + "license_family": "Other", + "md5": "f9e0f41342501c921170d52463a280db", + "name": "boost", + "requires": [], + "size": 9921972, + "version": "1.57.0" + }, + "boost-1.57.0-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2015-07-02", + "depends": [ + "icu" + ], + "license": "Boost license (http://www.boost.org/users/license.html)", + "license_family": "Other", + "md5": "22afc89cfd0465a6498fe211a8891dca", + "name": "boost", + "requires": [], + "size": 10195473, + "version": "1.57.0" + }, + "boost-1.60.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "icu", + "python 2.7*", + "zlib" + ], + "license": "Boost license (http://www.boost.org/users/license.html)", + "license_family": "Other", + "md5": "abef931943c9161a1296a2d31a2e030c", + "name": "boost", + "requires": [], + "size": 10621636, + "version": "1.60.0" + }, + "boost-1.60.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "icu", + "python 3.4*", + "zlib" + ], + "license": "Boost license (http://www.boost.org/users/license.html)", + "license_family": "Other", + "md5": "587823685059781461856d8e794daffd", + "name": "boost", + "requires": [], + "size": 10647680, + "version": "1.60.0" + }, + "boost-1.60.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "icu", + "python 3.5*", + "zlib" + ], + "license": "Boost license (http://www.boost.org/users/license.html)", + "license_family": "Other", + "md5": "cd99c847a58e041e8dd0293febce4668", + "name": "boost", + "requires": [], + "size": 10646925, + "version": "1.60.0" + }, + "boto-2.11.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e633e903c90f02dc741abcc8c1f35f96", + "name": "boto", + "requires": [], + "size": 1082637, + "version": "2.11.0" + }, + "boto-2.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "3538d25574b0272b2977f56499e3077b", + "name": "boto", + "requires": [], + "size": 1083023, + "version": "2.11.0" + }, + "boto-2.12.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "20ac2d74bb32d01c4d372dea39d5118d", + "name": "boto", + "requires": [], + "size": 1084392, + "version": "2.12.0" + }, + "boto-2.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "1e60d8c8d033de731a18143f36b1b099", + "name": "boto", + "requires": [], + "size": 1088345, + "version": "2.12.0" + }, + "boto-2.15.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "4e9a66874437e1b9ba2cc3cfc3a96695", + "name": "boto", + "requires": [], + "size": 1093501, + "version": "2.15.0" + }, + "boto-2.15.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "7fd27aa25ec9490f93e6ff41cd3391b2", + "name": "boto", + "requires": [], + "size": 1094237, + "version": "2.15.0" + }, + "boto-2.19.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "44065e811be613e28274953b4629b12d", + "name": "boto", + "requires": [], + "size": 1118223, + "version": "2.19.0" + }, + "boto-2.19.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "84f4733c0681a4d621f1dd2d13db904f", + "name": "boto", + "requires": [], + "size": 1120055, + "version": "2.19.0" + }, + "boto-2.23.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "ed1ce1a1a6e30ecaef07f36148a8c886", + "name": "boto", + "requires": [], + "size": 1162599, + "version": "2.23.0" + }, + "boto-2.23.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "895a5feb23fcaddbf6f2de5024c94166", + "name": "boto", + "requires": [], + "size": 1159930, + "version": "2.23.0" + }, + "boto-2.24.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "1845eb7eb508e36edb660bc174a67fcb", + "name": "boto", + "requires": [], + "size": 1171225, + "version": "2.24.0" + }, + "boto-2.24.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ae81a726ba9d254d8c4068cc2d3a618f", + "name": "boto", + "requires": [], + "size": 1170504, + "version": "2.24.0" + }, + "boto-2.25.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "b12e98d1f2475ac063dcfe75ecebdb6e", + "name": "boto", + "requires": [], + "size": 1169166, + "version": "2.25.0" + }, + "boto-2.25.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "03cb46585643d5452e1ce5c0f36fa1eb", + "name": "boto", + "requires": [], + "size": 1167595, + "version": "2.25.0" + }, + "boto-2.26.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "aed93b53914bf4cae48d9fe218eac506", + "name": "boto", + "requires": [], + "size": 1224273, + "version": "2.26.1" + }, + "boto-2.26.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "02b43325a46baf9d9272b0b4746b2bbe", + "name": "boto", + "requires": [], + "size": 1223357, + "version": "2.26.1" + }, + "boto-2.27.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "385e6b40b2de8a6bdba04b691a2aaa56", + "name": "boto", + "requires": [], + "size": 1236335, + "version": "2.27.0" + }, + "boto-2.27.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "cfd327a0b3e82fe49f1533de9c3e7ba2", + "name": "boto", + "requires": [], + "size": 1243027, + "version": "2.27.0" + }, + "boto-2.28.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "fb2ac587c27ff0968dffc2d2cb3d72e7", + "name": "boto", + "requires": [], + "size": 1239222, + "version": "2.28.0" + }, + "boto-2.28.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "92f5b93b06c31580aa2c5beeb1a5aa7a", + "name": "boto", + "requires": [], + "size": 1242348, + "version": "2.28.0" + }, + "boto-2.29.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "61ccb994ec9b745ec30c0cff5efe4906", + "name": "boto", + "requires": [], + "size": 1238842, + "version": "2.29.1" + }, + "boto-2.29.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "8d6388a2b22d3c3e7376d0c7fc4a4031", + "name": "boto", + "requires": [], + "size": 1242964, + "version": "2.29.1" + }, + "boto-2.30.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "260052ef7257a20338c772877061e076", + "name": "boto", + "requires": [], + "size": 1242000, + "version": "2.30.0" + }, + "boto-2.30.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "7e66a3ba311e58fb0e031447237eaf60", + "name": "boto", + "requires": [], + "size": 1244508, + "version": "2.30.0" + }, + "boto-2.31.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "3ce4d3003cb9f19c1842d42a1d292b85", + "name": "boto", + "requires": [], + "size": 1245183, + "version": "2.31.1" + }, + "boto-2.31.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ee12bb467676d13313a1fc737d325dbc", + "name": "boto", + "requires": [], + "size": 1250084, + "version": "2.31.1" + }, + "boto-2.32.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "13f6b820dd55fca0480cee1c17a872da", + "name": "boto", + "requires": [], + "size": 1272756, + "version": "2.32.0" + }, + "boto-2.32.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "1b81d268b104f530b61f62b6a3a81c09", + "name": "boto", + "requires": [], + "size": 1274593, + "version": "2.32.0" + }, + "boto-2.32.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "b1ced96d3c557f0d25e9dc6e4c6ade3a", + "name": "boto", + "requires": [], + "size": 1344674, + "version": "2.32.0" + }, + "boto-2.32.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "4936074f4f03bb91353ae0bc00f549b0", + "name": "boto", + "requires": [], + "size": 1345907, + "version": "2.32.0" + }, + "boto-2.32.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "ae674e99e725cb5e97ab3ff64a613511", + "name": "boto", + "requires": [], + "size": 1272060, + "version": "2.32.1" + }, + "boto-2.32.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "19fcdb61d0f1fafc3bd5a067de17fe5f", + "name": "boto", + "requires": [], + "size": 1274742, + "version": "2.32.1" + }, + "boto-2.32.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "04bbeb378de4460bc03e09091425c82b", + "name": "boto", + "requires": [], + "size": 1344343, + "version": "2.32.1" + }, + "boto-2.32.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "45a376c6a2fc3d894cefc55d141bc003", + "name": "boto", + "requires": [], + "size": 1345599, + "version": "2.32.1" + }, + "boto-2.34.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "69416941a6c9197910dab5ddb1f81907", + "name": "boto", + "requires": [], + "size": 1301665, + "version": "2.34.0" + }, + "boto-2.34.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "a51d4d55b2d669349760c3290766e089", + "name": "boto", + "requires": [], + "size": 1303221, + "version": "2.34.0" + }, + "boto-2.34.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "0d82c1a4e35cdef1eec79836626220f3", + "name": "boto", + "requires": [], + "size": 1373628, + "version": "2.34.0" + }, + "boto-2.34.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "c408e84d75143549db2fd336fdc2432c", + "name": "boto", + "requires": [], + "size": 1349853, + "version": "2.34.0" + }, + "boto-2.35.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "7fad80354cf9a70f654d4456ccaafe67", + "name": "boto", + "requires": [], + "size": 1323427, + "version": "2.35.1" + }, + "boto-2.35.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "acfee6953d42814c0cc3b4199711e0ec", + "name": "boto", + "requires": [], + "size": 1329443, + "version": "2.35.1" + }, + "boto-2.35.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "08d35aadf5d150d96693f1b5e6725344", + "name": "boto", + "requires": [], + "size": 1387463, + "version": "2.35.1" + }, + "boto-2.35.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "c028dd5a126f16d881e8ed4c115cc1f0", + "name": "boto", + "requires": [], + "size": 1358446, + "version": "2.35.1" + }, + "boto-2.35.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "01708825f739d6deec0c6198acadcd01", + "name": "boto", + "requires": [], + "size": 1319818, + "version": "2.35.2" + }, + "boto-2.35.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5558b427b0e1278dea8ea877af13c2f1", + "name": "boto", + "requires": [], + "size": 1327429, + "version": "2.35.2" + }, + "boto-2.35.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "19b555d3e1bd94b8a5bceaf0b65534fb", + "name": "boto", + "requires": [], + "size": 1390385, + "version": "2.35.2" + }, + "boto-2.35.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "811d3f811ada1d89c30c918fc9eb9baf", + "name": "boto", + "requires": [], + "size": 1360502, + "version": "2.35.2" + }, + "boto-2.36.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-28", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "9c2198cd938cdefc1f10081dc970283f", + "name": "boto", + "requires": [], + "size": 1356150, + "version": "2.36.0" + }, + "boto-2.36.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-28", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "884220084e01ea63916815d2153d40ed", + "name": "boto", + "requires": [], + "size": 1359555, + "version": "2.36.0" + }, + "boto-2.36.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-28", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "79605db3f4a36a77b8d8e854dcedfeae", + "name": "boto", + "requires": [], + "size": 1463362, + "version": "2.36.0" + }, + "boto-2.36.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-28", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "2bd2c9bd53200901d6f5a24f420e4c61", + "name": "boto", + "requires": [], + "size": 1429378, + "version": "2.36.0" + }, + "boto-2.37.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "5f513811b2ab1e0a5ccb53847f1bfe04", + "name": "boto", + "requires": [], + "size": 1355854, + "version": "2.37.0" + }, + "boto-2.37.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "677212ce9d5d66f525ec9c953ae5798d", + "name": "boto", + "requires": [], + "size": 1360558, + "version": "2.37.0" + }, + "boto-2.37.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "1a2cb1df8210317c18ac39ae831f4983", + "name": "boto", + "requires": [], + "size": 1462871, + "version": "2.37.0" + }, + "boto-2.37.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "33459d204336e604b37051e3704ee387", + "name": "boto", + "requires": [], + "size": 1431463, + "version": "2.37.0" + }, + "boto-2.38.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "24ac27d588f91321a9b98043f2928652", + "name": "boto", + "requires": [], + "size": 1370806, + "version": "2.38.0" + }, + "boto-2.38.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "568b9a5c0738b29520fe869264d70d5b", + "name": "boto", + "requires": [], + "size": 1374615, + "version": "2.38.0" + }, + "boto-2.38.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "d0145f6499c52fdfcdb39bb4a323a95d", + "name": "boto", + "requires": [], + "size": 1460976, + "version": "2.38.0" + }, + "boto-2.38.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "5bb82ea5316ab1051060857fc560527f", + "name": "boto", + "requires": [], + "size": 1452505, + "version": "2.38.0" + }, + "boto-2.38.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "15f4e11bff377fbd31abfa9515b1d476", + "name": "boto", + "requires": [], + "size": 1446706, + "version": "2.38.0" + }, + "boto-2.39.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "964f3e940999b5ada5ada18001985f1e", + "name": "boto", + "requires": [], + "size": 1379181, + "version": "2.39.0" + }, + "boto-2.39.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "ae182e773820c09ed75dd7baa560a1d6", + "name": "boto", + "requires": [], + "size": 1455094, + "version": "2.39.0" + }, + "boto-2.39.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "622a2e7d291e4e21dcf111b4573e157d", + "name": "boto", + "requires": [], + "size": 1454499, + "version": "2.39.0" + }, + "boto-2.6.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "a96305243906ac1916a107ac7de304c8", + "name": "boto", + "requires": [], + "size": 729564, + "version": "2.6.0" + }, + "boto-2.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "45af6b22b8f2e409dc921926749cef12", + "name": "boto", + "requires": [], + "size": 733275, + "version": "2.6.0" + }, + "boto-2.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "98c77b87a5071d99779e8fc677e2e399", + "name": "boto", + "requires": [], + "size": 781613, + "version": "2.7.0" + }, + "boto-2.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "e87a292b8dc2119052192fb1484efed8", + "name": "boto", + "requires": [], + "size": 784525, + "version": "2.7.0" + }, + "boto-2.8.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "295cf44f56cb1d98bdafaa6aeffddf0f", + "name": "boto", + "requires": [], + "size": 818908, + "version": "2.8.0" + }, + "boto-2.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c0806794b5769829e6c0aa88c2a7f59b", + "name": "boto", + "requires": [], + "size": 821123, + "version": "2.8.0" + }, + "boto-2.9.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "25abdc87c890a4c956931fcfccbe93ac", + "name": "boto", + "requires": [], + "size": 935676, + "version": "2.9.0" + }, + "boto-2.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c4fc5a4b48bf648cc4b1d759a5816111", + "name": "boto", + "requires": [], + "size": 938763, + "version": "2.9.0" + }, + "boto-2.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "87ed836f32ff6ce4da2ef16f82d6861b", + "name": "boto", + "requires": [], + "size": 941474, + "version": "2.9.2" + }, + "boto-2.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "b5579d80810313f71df0b89f3e297ab0", + "name": "boto", + "requires": [], + "size": 945521, + "version": "2.9.2" + }, + "boto-2.9.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "d5716de9b13e9a6db56c6cea3517a2d9", + "name": "boto", + "requires": [], + "size": 965539, + "version": "2.9.5" + }, + "boto-2.9.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "b58e32a5db6a800174bb043969aa86f6", + "name": "boto", + "requires": [], + "size": 966057, + "version": "2.9.5" + }, + "boto-2.9.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "5915728d6ae00849a558f45554a80fa6", + "name": "boto", + "requires": [], + "size": 967711, + "version": "2.9.6" + }, + "boto-2.9.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "cba477c9bbf3b33486b03069f630840f", + "name": "boto", + "requires": [], + "size": 969823, + "version": "2.9.6" + }, + "boto-2.9.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "b9338d0034965182f7d23f799264f6d7", + "name": "boto", + "requires": [], + "size": 988551, + "version": "2.9.8" + }, + "boto-2.9.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "04a78bc1f9ea8ecb505f5138398784cb", + "name": "boto", + "requires": [], + "size": 990173, + "version": "2.9.8" + }, + "boto-2.9.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "98f58f573135dd12b237c3861595e77e", + "name": "boto", + "requires": [], + "size": 993903, + "version": "2.9.9" + }, + "boto-2.9.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5af1bbbc7e19e5ffa90fb0e26cf3b73b", + "name": "boto", + "requires": [], + "size": 995565, + "version": "2.9.9" + }, + "boto3-1.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "botocore >=1.3.0,<1.4.0", + "futures >=2.2.0,<4.0.0", + "jmespath >=0.7.1,<1.0.0", + "python 2.7*" + ], + "license": "MIT", + "md5": "16b97a60f6d044eaf81057a3690ea476", + "name": "boto3", + "requires": [], + "size": 93240, + "version": "1.2.3" + }, + "boto3-1.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "botocore >=1.3.0,<1.4.0", + "jmespath >=0.7.1,<1.0.0", + "python 3.4*" + ], + "license": "MIT", + "md5": "d28f4a8319e73c0bf11351681865c700", + "name": "boto3", + "requires": [], + "size": 95916, + "version": "1.2.3" + }, + "boto3-1.2.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "botocore >=1.3.0,<1.4.0", + "jmespath >=0.7.1,<1.0.0", + "python 3.5*" + ], + "license": "MIT", + "md5": "9efb68075cfbabc3a5765daa8385b0b4", + "name": "boto3", + "requires": [], + "size": 95754, + "version": "1.2.3" + }, + "botocore-1.3.23-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "docutils >=0.10", + "jmespath >=0.7.1,<1.0.0", + "python 2.7*", + "python-dateutil >=2.1,<3.0.0" + ], + "license": "Apache", + "md5": "a604c8eef330e8726945eed3cdc075d6", + "name": "botocore", + "requires": [], + "size": 1707046, + "version": "1.3.23" + }, + "botocore-1.3.23-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "docutils >=0.10", + "jmespath >=0.7.1,<1.0.0", + "python 3.4*", + "python-dateutil >=2.1,<3.0.0" + ], + "license": "Apache", + "md5": "9677f874ad18eee7280cdf8d62e91ce3", + "name": "botocore", + "requires": [], + "size": 1766246, + "version": "1.3.23" + }, + "botocore-1.3.23-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "docutils >=0.10", + "jmespath >=0.7.1,<1.0.0", + "python 3.5*", + "python-dateutil >=2.1,<3.0.0" + ], + "license": "Apache", + "md5": "34ddcfb75717ff9611f59bd4183d9765", + "name": "botocore", + "requires": [], + "size": 1764891, + "version": "1.3.23" + }, + "bottlechest-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "numpy", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "73d7d2ab24b776639f39b17be4687c8f", + "name": "bottlechest", + "requires": [], + "size": 8255582, + "version": "0.7.1" + }, + "bottlechest-0.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "numpy", + "python 3.4*", + "scipy" + ], + "license": "BSD", + "md5": "9b285c2af123e1034fd37b9005ad5090", + "name": "bottlechest", + "requires": [], + "size": 8759991, + "version": "0.7.1" + }, + "bottlechest-0.7.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "numpy", + "python 3.5*", + "scipy" + ], + "license": "BSD", + "md5": "717952d3d2837a6a8f405bb2fe4cb9ae", + "name": "bottlechest", + "requires": [], + "size": 8390673, + "version": "0.7.1" + }, + "bottleneck-1.0.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "Simplified BSD", + "license_family": "BSD", + "md5": "1d1fe3992c47f8f9972c690d1765472e", + "name": "bottleneck", + "requires": [], + "size": 545706, + "version": "1.0.0" + }, + "bottleneck-1.0.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "Simplified BSD", + "license_family": "BSD", + "md5": "7339b61d827ac7f84377f6a7b0e8564b", + "name": "bottleneck", + "requires": [], + "size": 611320, + "version": "1.0.0" + }, + "bottleneck-1.0.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "Simplified BSD", + "license_family": "BSD", + "md5": "daa96359284bf85431bfa13779ec1281", + "name": "bottleneck", + "requires": [], + "size": 612818, + "version": "1.0.0" + }, + "bottleneck-1.0.0-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 2.7*" + ], + "license": "Simplified BSD", + "license_family": "BSD", + "md5": "9801c9d5747889aa5b1b2c95b5dbd411", + "name": "bottleneck", + "requires": [], + "size": 550856, + "version": "1.0.0" + }, + "bottleneck-1.0.0-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 3.4*" + ], + "license": "Simplified BSD", + "license_family": "BSD", + "md5": "277b69d3f256f219f125237262380f3c", + "name": "bottleneck", + "requires": [], + "size": 613299, + "version": "1.0.0" + }, + "bottleneck-1.0.0-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 3.5*" + ], + "license": "Simplified BSD", + "license_family": "BSD", + "md5": "e92eef4375157779f386111513802247", + "name": "bottleneck", + "requires": [], + "size": 607053, + "version": "1.0.0" + }, + "bottleneck-1.0.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "Simplified BSD", + "license_family": "BSD", + "md5": "fab525cce561e0e969a4110c7ba879d1", + "name": "bottleneck", + "requires": [], + "size": 545703, + "version": "1.0.0" + }, + "bottleneck-1.0.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "Simplified BSD", + "license_family": "BSD", + "md5": "d5d09ee8cbd8a7f2a2f1ceec4b39322f", + "name": "bottleneck", + "requires": [], + "size": 612178, + "version": "1.0.0" + }, + "bsddb-1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "db 5.3.28", + "python 2.6*" + ], + "license": "PSF", + "md5": "f79121142e1c7a0d53449e0437945647", + "name": "bsddb", + "requires": [], + "size": 179164, + "version": "1.0" + }, + "bsddb-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "db 5.3.28", + "python 2.7*" + ], + "license": "PSF", + "md5": "3d25c1e2a3304b25938144b1b2a3cd7f", + "name": "bsddb", + "requires": [], + "size": 179421, + "version": "1.0" + }, + "bsdiff4-1.1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "9c01c85605f6b9b716dce2703edba7f6", + "name": "bsdiff4", + "requires": [], + "size": 26325, + "version": "1.1.3" + }, + "bsdiff4-1.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "1ab58e83509d2cc5b18178e08d7ef5fe", + "name": "bsdiff4", + "requires": [], + "size": 26354, + "version": "1.1.3" + }, + "bsdiff4-1.1.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "bd77e270acb692196dd535d72efd8d48", + "name": "bsdiff4", + "requires": [], + "size": 26293, + "version": "1.1.4" + }, + "bsdiff4-1.1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d8f164a5b1f44fa9ed98935778d256f0", + "name": "bsdiff4", + "requires": [], + "size": 26368, + "version": "1.1.4" + }, + "bsdiff4-1.1.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "eb93659a3cf48864460a0695b8e9525e", + "name": "bsdiff4", + "requires": [], + "size": 26795, + "version": "1.1.4" + }, + "bsdiff4-1.1.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "965db3e391bf7549be0de51a44a565f5", + "name": "bsdiff4", + "requires": [], + "size": 27449, + "version": "1.1.4" + }, + "bsdiff4-1.1.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "ab50060002995a4bc6b6a382c37078ef", + "name": "bsdiff4", + "requires": [], + "size": 28364, + "version": "1.1.4" + }, + "btrees-4.1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "persistent 4.1.0", + "python 2.6*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "390e7d72f52a697cf9dd288bcdf9f01d", + "name": "btrees", + "requires": [], + "size": 900142, + "version": "4.1.3" + }, + "btrees-4.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "persistent 4.1.0", + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "592fb6064a7bfa7e938272572300722f", + "name": "btrees", + "requires": [], + "size": 898687, + "version": "4.1.3" + }, + "btrees-4.1.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "persistent 4.1.0", + "python 3.3*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "b7757f584e5fabbf63c246cf83efa4bc", + "name": "btrees", + "requires": [], + "size": 915355, + "version": "4.1.3" + }, + "btrees-4.1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "persistent 4.1.0", + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "1453f91d070e03b3f725810ee303ca67", + "name": "btrees", + "requires": [], + "size": 963985, + "version": "4.1.3" + }, + "btrees-4.1.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "persistent 4.1.1", + "python 2.6*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "41cc57f5139918ed49ad4bf67831c4d3", + "name": "btrees", + "requires": [], + "size": 900767, + "version": "4.1.4" + }, + "btrees-4.1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "persistent 4.1.1", + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "4041df1fb64a7c88fc2e5a050861a24d", + "name": "btrees", + "requires": [], + "size": 899322, + "version": "4.1.4" + }, + "btrees-4.1.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "persistent 4.1.1", + "python 3.3*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "e978ffa422a52557b3df375d6d9059ab", + "name": "btrees", + "requires": [], + "size": 916963, + "version": "4.1.4" + }, + "btrees-4.1.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "persistent 4.1.1", + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "ba9af401628cfbf7ae63d113b412d31f", + "name": "btrees", + "requires": [], + "size": 965083, + "version": "4.1.4" + }, + "btrees-4.1.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "persistent 4.1.1", + "python 3.5*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "bbfaf022d4db1f8b1f5c8ae5ae73f998", + "name": "btrees", + "requires": [], + "size": 964538, + "version": "4.1.4" + }, + "bz2file-0.98-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.6*" + ], + "license": "Apache License, Version 2.0", + "license_family": "Apache", + "md5": "6fabe4c8b18acb805de3963068becf75", + "name": "bz2file", + "requires": [], + "size": 10331, + "version": "0.98" + }, + "bz2file-0.98-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.7*" + ], + "license": "Apache License, Version 2.0", + "license_family": "Apache", + "md5": "747716b88bb418c77516119cde7469a3", + "name": "bz2file", + "requires": [], + "size": 10276, + "version": "0.98" + }, + "bz2file-0.98-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.3*" + ], + "license": "Apache License, Version 2.0", + "license_family": "Apache", + "md5": "5530b260f6874f7d05d9d15b403a4d77", + "name": "bz2file", + "requires": [], + "size": 10581, + "version": "0.98" + }, + "bz2file-0.98-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.4*" + ], + "license": "Apache License, Version 2.0", + "license_family": "Apache", + "md5": "0b978780a0064fdaa32cfb18a6bcae13", + "name": "bz2file", + "requires": [], + "size": 10532, + "version": "0.98" + }, + "bz2file-0.98-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Apache License, Version 2.0", + "license_family": "Apache", + "md5": "bb0dc5f7a018a7f0e887afe51a0a2bc7", + "name": "bz2file", + "requires": [], + "size": 10492, + "version": "0.98" + }, + "bzip2-1.0.6-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "69ca83d38dc46a8f6892ae188e3d8d67", + "name": "bzip2", + "requires": [], + "size": 76306, + "version": "1.0.6" + }, + "cachecontrol-0.11.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.6*", + "requests" + ], + "license": "Apache", + "md5": "8e33d884ad6b07c1b3f6faae281c7150", + "name": "cachecontrol", + "requires": [], + "size": 19739, + "version": "0.11.5" + }, + "cachecontrol-0.11.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.7*", + "requests" + ], + "license": "Apache", + "md5": "9e6d523cff44c30f3c246650eef10309", + "name": "cachecontrol", + "requires": [], + "size": 19668, + "version": "0.11.5" + }, + "cachecontrol-0.11.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.3*", + "requests" + ], + "license": "Apache", + "md5": "b7e4cd2196697194299831d0310fb5ff", + "name": "cachecontrol", + "requires": [], + "size": 20329, + "version": "0.11.5" + }, + "cachecontrol-0.11.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.4*", + "requests" + ], + "license": "Apache", + "md5": "e4ed1bd8da888cbe9539b627db839d6d", + "name": "cachecontrol", + "requires": [], + "size": 20216, + "version": "0.11.5" + }, + "cachecontrol-0.11.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "requests" + ], + "license": "Apache", + "md5": "add3c344f497eb7acd00bc51037fd616", + "name": "cachecontrol", + "requires": [], + "size": 20139, + "version": "0.11.5" + }, + "cachecontrol-0.11.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 2.7*", + "requests" + ], + "license": "Apache", + "md5": "0a610368084fe492ad94f3889c7bd990", + "name": "cachecontrol", + "requires": [], + "size": 22492, + "version": "0.11.6" + }, + "cachecontrol-0.11.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 3.4*", + "requests" + ], + "license": "Apache", + "md5": "c323ef60cf1edbf1430418aca8753ae6", + "name": "cachecontrol", + "requires": [], + "size": 23048, + "version": "0.11.6" + }, + "cachecontrol-0.11.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 3.5*", + "requests" + ], + "license": "Apache", + "md5": "08667200203af01dc6f95c17e09a887a", + "name": "cachecontrol", + "requires": [], + "size": 22963, + "version": "0.11.6" + }, + "cached-property-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "45445738aa8f3705fd1d4251f67ded7f", + "name": "cached-property", + "requires": [], + "size": 6837, + "version": "1.2.0" + }, + "cached-property-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "0625e96de6630723618f1d7e1d0aa5e2", + "name": "cached-property", + "requires": [], + "size": 5354, + "version": "1.2.0" + }, + "cached-property-1.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "d9e08feec5ecc39ae4baf265d1db6d53", + "name": "cached-property", + "requires": [], + "size": 5355, + "version": "1.2.0" + }, + "cached-property-1.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "95d3e6f85f0a1b631c7213f52127ee66", + "name": "cached-property", + "requires": [], + "size": 6870, + "version": "1.3.0" + }, + "cached-property-1.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7bc7350067e3dee17538be89bb83ca54", + "name": "cached-property", + "requires": [], + "size": 6995, + "version": "1.3.0" + }, + "cached-property-1.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "e438c1d0a4248084accca4af11960471", + "name": "cached-property", + "requires": [], + "size": 6978, + "version": "1.3.0" + }, + "cairo-1.12.18-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "freetype 2.4*", + "libpng 1.5.13", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "6823051574b53b1340391d60cae7553c", + "name": "cairo", + "requires": [], + "size": 607147, + "version": "1.12.18" + }, + "cairo-1.12.18-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "76fbd79d9288ee9bdce5f383767b33ac", + "name": "cairo", + "requires": [], + "size": 606349, + "version": "1.12.18" + }, + "cairo-1.12.18-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-03-25", + "depends": [ + "fontconfig 2.11.1", + "freetype 2.5*", + "libpng 1.5.13", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "67e89f9bf8fc577266f8233bbe33875d", + "name": "cairo", + "requires": [], + "size": 607037, + "version": "1.12.18" + }, + "cairo-1.12.18-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2015-04-09", + "depends": [ + "fontconfig 2.11.1", + "freetype 2.5*", + "libpng 1.5.13", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "8817d1192465b9dd46c5da2c81cd8a3d", + "name": "cairo", + "requires": [], + "size": 607187, + "version": "1.12.18" + }, + "cairo-1.12.18-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2015-05-26", + "depends": [ + "fontconfig 2.11.1", + "freetype 2.5*", + "libpng 1.6.17", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "4f0090a332ea996304bfe260d603146a", + "name": "cairo", + "requires": [], + "size": 606058, + "version": "1.12.18" + }, + "cairo-1.12.18-5.tar.bz2": { + "build": "5", + "build_number": 5, + "date": "2015-10-20", + "depends": [ + "fontconfig 2.11.1", + "freetype 2.5*", + "libpng 1.6.17", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "4dccfee9316c2d72d7baacc074fef661", + "name": "cairo", + "requires": [], + "size": 606107, + "version": "1.12.18" + }, + "cairo-1.12.18-6.tar.bz2": { + "build": "6", + "build_number": 6, + "date": "2015-11-30", + "depends": [ + "fontconfig 2.11.*", + "freetype 2.5.*", + "libpng 1.6.*", + "pixman 0.32.*", + "zlib 1.2.*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "f4cf38da3656153c318987e8e928ace7", + "name": "cairo", + "requires": [], + "size": 607977, + "version": "1.12.18" + }, + "cairo-1.12.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "c78c23ac0b130710e1aff81821fbe591", + "name": "cairo", + "requires": [], + "size": 1603566, + "version": "1.12.2" + }, + "cairo-1.12.2-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "libpng 1.5.13", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "cc6d6a613043e88744458c96fbd9cc85", + "name": "cairo", + "requires": [], + "size": 1697792, + "version": "1.12.2" + }, + "cairo-1.12.2-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "libpng 1.5.13", + "pixman 0.26.2", + "zlib 1.2*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "7065605c9d66bb6db3769282bfa96a7e", + "name": "cairo", + "requires": [], + "size": 582137, + "version": "1.12.2" + }, + "casuarius-1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "50ca620003c9f33eb8efaf43e9dd6040", + "name": "casuarius", + "requires": [], + "size": 916698, + "version": "1.1" + }, + "casuarius-1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "0b151a54f33c5392104d7699fc5531e4", + "name": "casuarius", + "requires": [], + "size": 916762, + "version": "1.1" + }, + "cdecimal-2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "dc2db67c8ca550938fd17ae732515b6f", + "name": "cdecimal", + "requires": [], + "size": 392875, + "version": "2.3" + }, + "cdecimal-2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "6f1d4b71cfb42b14c4470ee5dca5d389", + "name": "cdecimal", + "requires": [], + "size": 393422, + "version": "2.3" + }, + "cdecimal-2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "02983d32e6ab2dee357350dbedba331d", + "name": "cdecimal", + "requires": [], + "size": 377409, + "version": "2.3" + }, + "cdecimal-2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e9c71cc0c3eca6b564a28e6fd7245685", + "name": "cdecimal", + "requires": [], + "size": 387598, + "version": "2.3" + }, + "certifi-14.05.14-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 2.6*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "1e17f0cebe64849d7a948c6dbb0262f0", + "name": "certifi", + "requires": [], + "size": 158206, + "version": "14.05.14" + }, + "certifi-14.05.14-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 2.7*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "3438c9dda5610f6d709835b80e2468f0", + "name": "certifi", + "requires": [], + "size": 158188, + "version": "14.05.14" + }, + "certifi-14.05.14-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 3.3*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "f69346c815c15db88ace47cc72f83b1e", + "name": "certifi", + "requires": [], + "size": 158230, + "version": "14.05.14" + }, + "certifi-14.05.14-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 3.4*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "fc55b056eeb2add45cd967d715b77ed3", + "name": "certifi", + "requires": [], + "size": 158258, + "version": "14.05.14" + }, + "certifi-14.05.14-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "28319576124066da17ea844ce3df6b9e", + "name": "certifi", + "requires": [], + "size": 158162, + "version": "14.05.14" + }, + "certifi-2015.9.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-15", + "depends": [ + "python 2.7*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "649c99b8ebf2ae218bfb4341b8c1fd8e", + "name": "certifi", + "requires": [], + "size": 215780, + "version": "2015.9.6.2" + }, + "certifi-2015.9.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-15", + "depends": [ + "python 3.4*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "c6bd0138083f91486e6ca20e5cf25102", + "name": "certifi", + "requires": [], + "size": 215938, + "version": "2015.9.6.2" + }, + "certifi-2015.9.6.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-15", + "depends": [ + "python 3.5*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "125e873e234d56885531f643511c6a99", + "name": "certifi", + "requires": [], + "size": 217908, + "version": "2015.9.6.2" + }, + "cffi-0.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "52b6ec4bb06b268298bb78f5abbef87d", + "name": "cffi", + "requires": [], + "size": 157723, + "version": "0.6" + }, + "cffi-0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "e4ba71bc5d61f349aaa4d66102c174cb", + "name": "cffi", + "requires": [], + "size": 157683, + "version": "0.6" + }, + "cffi-0.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "61baf79a7d2bb75d7ef551e0efa467fe", + "name": "cffi", + "requires": [], + "size": 164920, + "version": "0.6" + }, + "cffi-0.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "82cbcede7b523adbfe4e8ef2ec684093", + "name": "cffi", + "requires": [], + "size": 161589, + "version": "0.7.2" + }, + "cffi-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "c6154e0d9fd8579fc65b4797b22ce269", + "name": "cffi", + "requires": [], + "size": 161598, + "version": "0.7.2" + }, + "cffi-0.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "618c6a2fef323a9fbf48926d4d04d28d", + "name": "cffi", + "requires": [], + "size": 168984, + "version": "0.7.2" + }, + "cffi-0.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "3ae55703bc2836dcba79f6509c4f8cdc", + "name": "cffi", + "requires": [], + "size": 165928, + "version": "0.8" + }, + "cffi-0.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "f7f5e2e1d6161769767e5906a03445e7", + "name": "cffi", + "requires": [], + "size": 165884, + "version": "0.8" + }, + "cffi-0.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "9f763061930a6c648b3e4ecf244321d2", + "name": "cffi", + "requires": [], + "size": 173400, + "version": "0.8" + }, + "cffi-0.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "0fc825c5b7d17a071fc905d20c8a2f29", + "name": "cffi", + "requires": [], + "size": 165900, + "version": "0.8.1" + }, + "cffi-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "263790a2eea7590ff1b3b0893be902ff", + "name": "cffi", + "requires": [], + "size": 165712, + "version": "0.8.1" + }, + "cffi-0.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "4ff562c848ac8de2e9fcfab202aaae0d", + "name": "cffi", + "requires": [], + "size": 173286, + "version": "0.8.1" + }, + "cffi-0.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "fe1612bf63330ff85b3c1befe526e7f5", + "name": "cffi", + "requires": [], + "size": 175752, + "version": "0.8.1" + }, + "cffi-0.8.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "bd5fba7e948884281e2c58ca46c853fc", + "name": "cffi", + "requires": [], + "size": 167037, + "version": "0.8.2" + }, + "cffi-0.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "9233f5d73e1a2b0d99a779554c32bc4d", + "name": "cffi", + "requires": [], + "size": 166903, + "version": "0.8.2" + }, + "cffi-0.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "49ca146169e10b959bb572c7f55e8b08", + "name": "cffi", + "requires": [], + "size": 174115, + "version": "0.8.2" + }, + "cffi-0.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "ca2b6a116d31f2b748c82c2989fff8dd", + "name": "cffi", + "requires": [], + "size": 176371, + "version": "0.8.2" + }, + "cffi-0.8.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "8b7aeee4840a715cbd90c1cb7884eb8a", + "name": "cffi", + "requires": [], + "size": 168264, + "version": "0.8.6" + }, + "cffi-0.8.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "e53a548560f3f24aefff4f826355cabd", + "name": "cffi", + "requires": [], + "size": 168166, + "version": "0.8.6" + }, + "cffi-0.8.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "ea532096558df75c5ad5b4e35ebde331", + "name": "cffi", + "requires": [], + "size": 175475, + "version": "0.8.6" + }, + "cffi-0.8.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "a61ce46b316cb562934413b6ecd6cab2", + "name": "cffi", + "requires": [], + "size": 177760, + "version": "0.8.6" + }, + "cffi-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "6ad4aea50988129674069a1bb41939de", + "name": "cffi", + "requires": [], + "size": 187897, + "version": "0.9.1" + }, + "cffi-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "a1815b2c266c3d9f199cf14dd80ad840", + "name": "cffi", + "requires": [], + "size": 187929, + "version": "0.9.1" + }, + "cffi-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "4f6d45ef03c9f329c86725bdf004a4ee", + "name": "cffi", + "requires": [], + "size": 194067, + "version": "0.9.1" + }, + "cffi-0.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "146a1a53cdf38a4ccb1b41c4c5fa94c2", + "name": "cffi", + "requires": [], + "size": 196864, + "version": "0.9.1" + }, + "cffi-0.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "4cf39f988436fa074c1167ab5edbee0a", + "name": "cffi", + "requires": [], + "size": 189377, + "version": "0.9.2" + }, + "cffi-0.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "ebd63d853de6312861ca658b7348411e", + "name": "cffi", + "requires": [], + "size": 189454, + "version": "0.9.2" + }, + "cffi-0.9.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "4b004237f6da70064aa9259578e4b937", + "name": "cffi", + "requires": [], + "size": 195093, + "version": "0.9.2" + }, + "cffi-0.9.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "bf5de49171ee4163b0b84fc854f26104", + "name": "cffi", + "requires": [], + "size": 198256, + "version": "0.9.2" + }, + "cffi-1.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "4143d7efb72bc9aff73987a1ae8517f5", + "name": "cffi", + "requires": [], + "size": 279648, + "version": "1.0.0" + }, + "cffi-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "0c1d673b588f6043627ab4f1c6522254", + "name": "cffi", + "requires": [], + "size": 279178, + "version": "1.0.0" + }, + "cffi-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "e763e2662fdb04666020d2a95db4b4e6", + "name": "cffi", + "requires": [], + "size": 289028, + "version": "1.0.0" + }, + "cffi-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "cd8e44dd1ce42fabe394b67058480818", + "name": "cffi", + "requires": [], + "size": 289299, + "version": "1.0.0" + }, + "cffi-1.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "3c9dfec80103626124c3c6d84725aeee", + "name": "cffi", + "requires": [], + "size": 279662, + "version": "1.0.3" + }, + "cffi-1.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "5a627b9ff2287992c02abf448f4b473e", + "name": "cffi", + "requires": [], + "size": 279367, + "version": "1.0.3" + }, + "cffi-1.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "e9e24c7b996873bff7b2acc4da8ba2c3", + "name": "cffi", + "requires": [], + "size": 289198, + "version": "1.0.3" + }, + "cffi-1.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "17e0125ddaacf36157db8b7f2335ddb3", + "name": "cffi", + "requires": [], + "size": 289234, + "version": "1.0.3" + }, + "cffi-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "333b2fa8f74cd2603cdbbd6ef8b83033", + "name": "cffi", + "requires": [], + "size": 283635, + "version": "1.1.0" + }, + "cffi-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "8f2aa1e7a95bb847169eb72a86f85151", + "name": "cffi", + "requires": [], + "size": 283369, + "version": "1.1.0" + }, + "cffi-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "ba172bbae91010c5235eaae7ee333fe5", + "name": "cffi", + "requires": [], + "size": 292010, + "version": "1.1.0" + }, + "cffi-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "4bac2896c5e59c8aa5238881f9cc40fc", + "name": "cffi", + "requires": [], + "size": 292851, + "version": "1.1.0" + }, + "cffi-1.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.6*" + ], + "license": "MIT", + "md5": "19e0723f252182943427c61db190a3d5", + "name": "cffi", + "requires": [], + "size": 285036, + "version": "1.1.2" + }, + "cffi-1.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "9f1a07a1b71505cd12361f02c80a869c", + "name": "cffi", + "requires": [], + "size": 285212, + "version": "1.1.2" + }, + "cffi-1.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.3*" + ], + "license": "MIT", + "md5": "56896bab816f90dab9e89829640fe52f", + "name": "cffi", + "requires": [], + "size": 293804, + "version": "1.1.2" + }, + "cffi-1.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "001b8eb43f81ff1db48e4951a0457c95", + "name": "cffi", + "requires": [], + "size": 294780, + "version": "1.1.2" + }, + "cffi-1.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.5*" + ], + "license": "MIT", + "md5": "fcc397156469dbe061445ab2af7400fd", + "name": "cffi", + "requires": [], + "size": 294205, + "version": "1.1.2" + }, + "cffi-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "af7540f3f2ac04eda56a7f4a4f4bf43f", + "name": "cffi", + "requires": [], + "size": 293718, + "version": "1.2.1" + }, + "cffi-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "37d5337d50c49e4a7de82de8e62d2301", + "name": "cffi", + "requires": [], + "size": 304285, + "version": "1.2.1" + }, + "cffi-1.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.5*" + ], + "license": "MIT", + "md5": "18b4adac186cca24f9cb4d87ea699e09", + "name": "cffi", + "requires": [], + "size": 304172, + "version": "1.2.1" + }, + "cffi-1.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 2.7*" + ], + "license": "MIT", + "md5": "5534197c7924bf503f0d7445779e62dd", + "name": "cffi", + "requires": [], + "size": 321722, + "version": "1.5.2" + }, + "cffi-1.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.4*" + ], + "license": "MIT", + "md5": "7917bf5a6360ca8309d384d702d2723a", + "name": "cffi", + "requires": [], + "size": 335663, + "version": "1.5.2" + }, + "cffi-1.5.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "libffi 3.0.13", + "pycparser", + "python 3.5*" + ], + "license": "MIT", + "md5": "97b49b8ec8dbf6ae7599c2cfc4bb4065", + "name": "cffi", + "requires": [], + "size": 334779, + "version": "1.5.2" + }, + "chaco-4.3.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "enable 4.3.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "489b86f64eedd37e901dfc2af9bb7520", + "name": "chaco", + "requires": [], + "size": 677873, + "version": "4.3.0" + }, + "chaco-4.3.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "enable 4.3.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "108c206d31842da209e63383815c688b", + "name": "chaco", + "requires": [], + "size": 901350, + "version": "4.3.0" + }, + "chaco-4.4.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "enable 4.3.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "357b5a1c5ca1d0bf4ecaddfe53694c15", + "name": "chaco", + "requires": [], + "size": 968917, + "version": "4.4.1" + }, + "chaco-4.4.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "enable 4.3.0", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "31b058a7420516178eb6a67548515924", + "name": "chaco", + "requires": [], + "size": 969294, + "version": "4.4.1" + }, + "chaco-4.4.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "enable 4.3.0", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "113321d71635454f7d667aa6e98ad5ef", + "name": "chaco", + "requires": [], + "size": 996518, + "version": "4.4.1" + }, + "chaco-4.5.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "enable 4.5.1", + "numpy 1.10*", + "pil 1.1.7", + "python 2.7*" + ], + "license": "BSD", + "md5": "70fa379ecb54136f51ff27fc5177f1d1", + "name": "chaco", + "requires": [], + "size": 1023841, + "version": "4.5.0" + }, + "chaco-4.5.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "enable 4.4.1", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7195a8989c2d14c47dfa0608445b1b78", + "name": "chaco", + "requires": [], + "size": 1024072, + "version": "4.5.0" + }, + "chalmers-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "clyent", + "psutil", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "license_family": "Other", + "md5": "76bc4273f487f92fe336102b4049c76b", + "name": "chalmers", + "requires": [], + "size": 73766, + "version": "0.7.2" + }, + "chalmers-0.7.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "clyent", + "psutil", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "db94e8a22c564096b9e43ddf98c999ec", + "name": "chalmers", + "requires": [], + "size": 75057, + "version": "0.7.4" + }, + "chalmers-0.7.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "clyent", + "psutil >=3", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "4c28a820beea8df46a3bf1764fa6a09a", + "name": "chalmers", + "requires": [], + "size": 75002, + "version": "0.7.5" + }, + "chalmers-0.7.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "clyent", + "psutil >=3", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "6ee3b7793ed3fced4c8bfc5d43ded95b", + "name": "chalmers", + "requires": [], + "size": 75108, + "version": "0.7.7" + }, + "chalmers-0.7.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "clyent", + "psutil >=3", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "02152816b01ee0bf8d6f170fafc199dc", + "name": "chalmers", + "requires": [], + "size": 77186, + "version": "0.7.9" + }, + "chalmers-0.7.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "clyent", + "psutil >=3", + "python 3.4*", + "pyyaml" + ], + "license": "BSD", + "md5": "32c048889d8b6dbdfc353888123c471f", + "name": "chalmers", + "requires": [], + "size": 79018, + "version": "0.7.9" + }, + "chalmers-0.7.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "clyent", + "psutil >=3", + "python 3.5*", + "pyyaml" + ], + "license": "BSD", + "md5": "286b0d3e17e511126c62f0eafd89a958", + "name": "chalmers", + "requires": [], + "size": 78771, + "version": "0.7.9" + }, + "chalmers-0.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "clyent", + "psutil >=3", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "47620b6b3a66c37cfc64cfd9b3839452", + "name": "chalmers", + "requires": [], + "size": 77313, + "version": "0.8.0" + }, + "chalmers-0.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "clyent", + "psutil >=3", + "python 3.4*", + "pyyaml" + ], + "license": "BSD", + "md5": "0de43dd9399a90453233778b01ae75b1", + "name": "chalmers", + "requires": [], + "size": 79323, + "version": "0.8.0" + }, + "chalmers-0.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "clyent", + "psutil >=3", + "python 3.5*", + "pyyaml" + ], + "license": "BSD", + "md5": "bfa5c0428a5aa3443e004802617a2ccb", + "name": "chalmers", + "requires": [], + "size": 78953, + "version": "0.8.0" + }, + "chameleon-2.16-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "ordereddict", + "python 2.6*", + "setuptools", + "unittest2" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "3703d11dfb44b4871679cf9878f47c06", + "name": "chameleon", + "requires": [], + "size": 204372, + "version": "2.16" + }, + "chameleon-2.16-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "c0b50321b62c5ba032516bf08bec02e2", + "name": "chameleon", + "requires": [], + "size": 212432, + "version": "2.16" + }, + "chameleon-2.16-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "78df2ffcd470e692eac6805839ab26ba", + "name": "chameleon", + "requires": [], + "size": 210386, + "version": "2.16" + }, + "chameleon-2.16-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "e711120bf163121532d01709fcb70288", + "name": "chameleon", + "requires": [], + "size": 211017, + "version": "2.16" + }, + "chameleon-2.18-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "ordereddict", + "python 2.6*", + "setuptools", + "unittest2" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "cb242a8a193739a52800464ea2b958e2", + "name": "chameleon", + "requires": [], + "size": 205030, + "version": "2.18" + }, + "chameleon-2.18-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "3f1995c3872ad47dd62b92ec9fa2ebb3", + "name": "chameleon", + "requires": [], + "size": 212763, + "version": "2.18" + }, + "chameleon-2.18-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "b4ab45b16bd300f73596b1a2e380fc5c", + "name": "chameleon", + "requires": [], + "size": 210889, + "version": "2.18" + }, + "chameleon-2.18-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "58ba8fbca629a974a7cd87497c8a9650", + "name": "chameleon", + "requires": [], + "size": 211472, + "version": "2.18" + }, + "chameleon-2.19-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "ordereddict", + "python 2.6*", + "setuptools", + "unittest2" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "235d89c5c099db24310a88e725f7882a", + "name": "chameleon", + "requires": [], + "size": 205067, + "version": "2.19" + }, + "chameleon-2.19-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "5fade74631a9c49efe8483c4f21f8bea", + "name": "chameleon", + "requires": [], + "size": 213108, + "version": "2.19" + }, + "chameleon-2.19-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "c13eb91d042ff359dcd6b7dab2b068e2", + "name": "chameleon", + "requires": [], + "size": 211118, + "version": "2.19" + }, + "chameleon-2.19-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "f7fa96e2c8dada369116e2a2a7dcf68f", + "name": "chameleon", + "requires": [], + "size": 211608, + "version": "2.19" + }, + "chameleon-2.20-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "ordereddict", + "python 2.6*", + "setuptools", + "unittest2" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "58cf2da4f053f6ea08f5e07575718976", + "name": "chameleon", + "requires": [], + "size": 205158, + "version": "2.20" + }, + "chameleon-2.20-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "36dbf25f2232e215b277f276cf481bcf", + "name": "chameleon", + "requires": [], + "size": 213108, + "version": "2.20" + }, + "chameleon-2.20-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "143f458a635719d46459f8e74cba8cc6", + "name": "chameleon", + "requires": [], + "size": 211232, + "version": "2.20" + }, + "chameleon-2.20-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "400c1d8361d4ad412d5fffd46f5ace5f", + "name": "chameleon", + "requires": [], + "size": 211715, + "version": "2.20" + }, + "chameleon-2.22-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "ordereddict", + "python 2.6*", + "setuptools", + "unittest2" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "fba4a35312e8369857b8bd4eee73e4d4", + "name": "chameleon", + "requires": [], + "size": 205507, + "version": "2.22" + }, + "chameleon-2.22-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "63cfb3c74ac10fd5a751a37479efc7f4", + "name": "chameleon", + "requires": [], + "size": 213242, + "version": "2.22" + }, + "chameleon-2.22-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "1cf8cf5257659759c4ef2a4c8e0a4c6a", + "name": "chameleon", + "requires": [], + "size": 211510, + "version": "2.22" + }, + "chameleon-2.22-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "7d91276e4011b467826d804f40e0331b", + "name": "chameleon", + "requires": [], + "size": 211951, + "version": "2.22" + }, + "chameleon-2.22-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD-like", + "license_family": "BSD", + "md5": "aa73d9129de0c3d791539fff22d27cee", + "name": "chameleon", + "requires": [], + "size": 213466, + "version": "2.22" + }, + "characteristic-14.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ceeac68e22dac0c610021c1606f68ec3", + "name": "characteristic", + "requires": [], + "size": 21472, + "version": "14.3.0" + }, + "characteristic-14.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "078ab8933d8879dba6a955eed3c5ad6b", + "name": "characteristic", + "requires": [], + "size": 22639, + "version": "14.3.0" + }, + "characteristic-14.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "056565df62eefb97bd732aaf886428ff", + "name": "characteristic", + "requires": [], + "size": 22548, + "version": "14.3.0" + }, + "chardet-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "python 2.7*" + ], + "license": "GNU Library or Lesser General Public License", + "license_family": "GPL2", + "md5": "8c4745f7f795d05e6b7c4a85e9148789", + "name": "chardet", + "requires": [], + "size": 279426, + "version": "2.3.0" + }, + "chardet-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "python 3.4*" + ], + "license": "GNU Library or Lesser General Public License", + "license_family": "GPL2", + "md5": "41bc7246c8bb703c2d883c1dae94f7fc", + "name": "chardet", + "requires": [], + "size": 294880, + "version": "2.3.0" + }, + "chardet-2.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "python 3.5*" + ], + "license": "GNU Library or Lesser General Public License", + "license_family": "GPL2", + "md5": "97a07f04177c84d2392a32c2faa01374", + "name": "chardet", + "requires": [], + "size": 294559, + "version": "2.3.0" + }, + "cheetah-2.4.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "ed7b1db1b07962191a4a3e5e0c228c53", + "name": "cheetah", + "requires": [], + "size": 272901, + "version": "2.4.4" + }, + "cheetah-2.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "0a29b1114d9ce1dd185be952e69279be", + "name": "cheetah", + "requires": [], + "size": 273629, + "version": "2.4.4" + }, + "cherrypy-3.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f3e053fb5974ff3f4a05c99b7df477c9", + "name": "cherrypy", + "requires": [], + "size": 606368, + "version": "3.8.0" + }, + "cherrypy-3.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "cc502c438f3e7ddfaeb5f0351ac72cd7", + "name": "cherrypy", + "requires": [], + "size": 587488, + "version": "3.8.0" + }, + "cherrypy-3.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "bc2ef11420a10276d29e57d2a62170f5", + "name": "cherrypy", + "requires": [], + "size": 585331, + "version": "3.8.0" + }, + "chest-0.2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "heapdict 1.0.0", + "python 2.6*" + ], + "license": "BSD", + "md5": "c6ae82c06ea496e1d0d78c756d72da95", + "name": "chest", + "requires": [], + "size": 9832, + "version": "0.2.2" + }, + "chest-0.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "heapdict 1.0.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "91d30a0858ec21fd90141374cf47579f", + "name": "chest", + "requires": [], + "size": 9655, + "version": "0.2.2" + }, + "chest-0.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "heapdict 1.0.0", + "python 3.3*" + ], + "license": "BSD", + "md5": "5f8abd0289d2dccb8576b368f738d904", + "name": "chest", + "requires": [], + "size": 10089, + "version": "0.2.2" + }, + "chest-0.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "heapdict 1.0.0", + "python 3.4*" + ], + "license": "BSD", + "md5": "e3d0434b5df1262db3ea2e60ffda8746", + "name": "chest", + "requires": [], + "size": 10043, + "version": "0.2.2" + }, + "chest-0.2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "heapdict 1.0.0", + "python 2.6*" + ], + "license": "BSD", + "md5": "94e7b246c2bf3d4f6f757cca897970b3", + "name": "chest", + "requires": [], + "size": 9688, + "version": "0.2.3" + }, + "chest-0.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "heapdict 1.0.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "afe6d994273886e5f39d2babef0a2b2c", + "name": "chest", + "requires": [], + "size": 9524, + "version": "0.2.3" + }, + "chest-0.2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "heapdict 1.0.0", + "python 3.3*" + ], + "license": "BSD", + "md5": "e0f90a7df19375bc381b4f82a94b1ef1", + "name": "chest", + "requires": [], + "size": 9960, + "version": "0.2.3" + }, + "chest-0.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "heapdict 1.0.0", + "python 3.4*" + ], + "license": "BSD", + "md5": "1cb67349645811cfec8723aa043a1a55", + "name": "chest", + "requires": [], + "size": 9864, + "version": "0.2.3" + }, + "chest-0.2.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "heapdict 1.0.0", + "python 3.5*" + ], + "license": "BSD", + "md5": "12ce60c29810698a6f8ecfc464541864", + "name": "chest", + "requires": [], + "size": 9835, + "version": "0.2.3" + }, + "chrpath-0.13-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "GPL2", + "md5": "7d2105a0df730c05f70f9388964e18fc", + "name": "chrpath", + "requires": [], + "size": 12291, + "version": "0.13" + }, + "clawpack-0.1.0.dev-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d9e5a79e27cb359da966b00200c3f1f7", + "name": "clawpack", + "requires": [], + "size": 1191239, + "version": "0.1.0.dev" + }, + "click-4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "8f91e96d61b95dbe430699d0ea2a7158", + "name": "click", + "requires": [], + "size": 87770, + "version": "4.0" + }, + "click-4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4092b1f45484c395480491075c160eeb", + "name": "click", + "requires": [], + "size": 87950, + "version": "4.0" + }, + "click-4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "1690d3506281c215005df2339d8f5a14", + "name": "click", + "requires": [], + "size": 90575, + "version": "4.0" + }, + "click-4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3c29c88b5b80b91958bad49b1081102c", + "name": "click", + "requires": [], + "size": 90432, + "version": "4.0" + }, + "click-4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "79209c665d53a5f717ebcd7c481f5bc3", + "name": "click", + "requires": [], + "size": 88297, + "version": "4.1" + }, + "click-4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "96a584b840260b3a4e9cf5472e729d67", + "name": "click", + "requires": [], + "size": 88497, + "version": "4.1" + }, + "click-4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "87baf9b3697db6fc25e7cd1b9ffad861", + "name": "click", + "requires": [], + "size": 91238, + "version": "4.1" + }, + "click-4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "551c6e39d4e0380a20f285d38b089225", + "name": "click", + "requires": [], + "size": 90986, + "version": "4.1" + }, + "click-4.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "73ca9b0ff72cc94e47e6c6773ce6dc55", + "name": "click", + "requires": [], + "size": 90659, + "version": "4.1" + }, + "click-6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8ba7693ac3c10cbb0f41b74164ef8be7", + "name": "click", + "requires": [], + "size": 100144, + "version": "6.2" + }, + "click-6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f3012ec2b2320d1a4a69466b43804e1c", + "name": "click", + "requires": [], + "size": 102972, + "version": "6.2" + }, + "click-6.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "8117108fffcb42ac8d046cfad3f6498f", + "name": "click", + "requires": [], + "size": 102449, + "version": "6.2" + }, + "click-6.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f61e3b59857fcedc850332bee1a26a83", + "name": "click", + "requires": [], + "size": 100089, + "version": "6.3" + }, + "click-6.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "140012de911784407ecda61ae58cb801", + "name": "click", + "requires": [], + "size": 102910, + "version": "6.3" + }, + "click-6.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "6565a48e21d5b492e8284ba6d3d46c3a", + "name": "click", + "requires": [], + "size": 102493, + "version": "6.3" + }, + "cligj-0.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-01", + "depends": [ + "click", + "python 2.6*" + ], + "license": "MIT", + "md5": "209cd7d407dbcae0ed5d2edaabbcc1db", + "name": "cligj", + "requires": [], + "size": 4366, + "version": "0.1.0" + }, + "cligj-0.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-01", + "depends": [ + "click", + "python 2.7*" + ], + "license": "MIT", + "md5": "b7e60924e7df9596a59f817cc0659b15", + "name": "cligj", + "requires": [], + "size": 4375, + "version": "0.1.0" + }, + "cligj-0.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-01", + "depends": [ + "click", + "python 3.3*" + ], + "license": "MIT", + "md5": "0f37dc656298ca115560a6e6db3983ee", + "name": "cligj", + "requires": [], + "size": 4416, + "version": "0.1.0" + }, + "cligj-0.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-01", + "depends": [ + "click", + "python 3.4*" + ], + "license": "MIT", + "md5": "00a1bfb6d4e7a658d425fc909a1fddc6", + "name": "cligj", + "requires": [], + "size": 4409, + "version": "0.1.0" + }, + "cligj-0.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "click", + "python 2.6*" + ], + "license": "MIT", + "md5": "0eeb8ffc07311add3bc559367f10d7a5", + "name": "cligj", + "requires": [], + "size": 8021, + "version": "0.2.0" + }, + "cligj-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "click", + "python 2.7*" + ], + "license": "MIT", + "md5": "87fdf49cf706fb5dd6350b5e4960eef4", + "name": "cligj", + "requires": [], + "size": 7999, + "version": "0.2.0" + }, + "cligj-0.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "click", + "python 3.3*" + ], + "license": "MIT", + "md5": "767524c4aed8f8716bc969eb2827627c", + "name": "cligj", + "requires": [], + "size": 8158, + "version": "0.2.0" + }, + "cligj-0.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "click", + "python 3.4*" + ], + "license": "MIT", + "md5": "cfb108219cba7da8878addfcfe53fb46", + "name": "cligj", + "requires": [], + "size": 8121, + "version": "0.2.0" + }, + "cligj-0.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "click", + "python 3.5*" + ], + "license": "MIT", + "md5": "2f8e610214d3426076385c00785f525e", + "name": "cligj", + "requires": [], + "size": 8120, + "version": "0.2.0" + }, + "cligj-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "click >=4.0", + "python 2.7*" + ], + "license": "MIT", + "md5": "2a610ed51c578a6c4072ba1609e46d4d", + "name": "cligj", + "requires": [], + "size": 11690, + "version": "0.4.0" + }, + "cligj-0.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "click >=4.0", + "python 3.4*" + ], + "license": "MIT", + "md5": "4d09aa4b409b05f50d90dbb2ae3777a8", + "name": "cligj", + "requires": [], + "size": 11874, + "version": "0.4.0" + }, + "cligj-0.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "click >=4.0", + "python 3.5*" + ], + "license": "MIT", + "md5": "15140b1c0d70c74f532fb32bd225b9cc", + "name": "cligj", + "requires": [], + "size": 11871, + "version": "0.4.0" + }, + "cloog-0.18.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "gmp", + "isl" + ], + "license": null, + "license_family": "Other", + "md5": "32e63e74723d6686d0ceb7384e47c2b4", + "name": "cloog", + "requires": [], + "size": 631488, + "version": "0.18.0" + }, + "cloudpickle-0.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "python 2.6*" + ], + "license": "as-is (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)", + "license_family": "Other", + "md5": "7ad1af732c8530d84c5593834e6e23f4", + "name": "cloudpickle", + "requires": [], + "size": 15978, + "version": "0.1.0" + }, + "cloudpickle-0.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "python 2.7*" + ], + "license": "as-is (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)", + "license_family": "Other", + "md5": "0fa2fc8d8626df8c3ce4e95b667c07f3", + "name": "cloudpickle", + "requires": [], + "size": 15960, + "version": "0.1.0" + }, + "cloudpickle-0.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "python 3.3*" + ], + "license": "as-is (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)", + "license_family": "Other", + "md5": "7bcf4c2238044a13dd8531cb7f3e690d", + "name": "cloudpickle", + "requires": [], + "size": 16342, + "version": "0.1.0" + }, + "cloudpickle-0.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "python 3.4*" + ], + "license": "as-is (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)", + "license_family": "Other", + "md5": "05cc6e57974b2befbf9d736a6e507d22", + "name": "cloudpickle", + "requires": [], + "size": 16370, + "version": "0.1.0" + }, + "cloudpickle-0.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "as-is (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)", + "license_family": "Other", + "md5": "0e35c68f61fbacfaa7a8d7f19864b433", + "name": "cloudpickle", + "requires": [], + "size": 16296, + "version": "0.1.0" + }, + "cloudpickle-0.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 2.7*" + ], + "license": "as-is (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)", + "license_family": "Other", + "md5": "92c71e1bb3c18541f0b2359fc8de3193", + "name": "cloudpickle", + "requires": [], + "size": 15783, + "version": "0.1.1" + }, + "cloudpickle-0.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.4*" + ], + "license": "as-is (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)", + "license_family": "Other", + "md5": "a08dc9bd2a8ebe017ab924f26e0f60d4", + "name": "cloudpickle", + "requires": [], + "size": 16156, + "version": "0.1.1" + }, + "cloudpickle-0.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.5*" + ], + "license": "as-is (https://github.com/cloudpipe/cloudpickle/blob/master/LICENSE)", + "license_family": "Other", + "md5": "cbae9071b1c66ab1a25d590d0fa051fb", + "name": "cloudpickle", + "requires": [], + "size": 16073, + "version": "0.1.1" + }, + "clyent-0.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4ec382c6343681d0240680e8f36d84ba", + "name": "clyent", + "requires": [], + "size": 12123, + "version": "0.3.1" + }, + "clyent-0.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "6dc1f8d513ad545d89bec5eeb39074e1", + "name": "clyent", + "requires": [], + "size": 12477, + "version": "0.3.1" + }, + "clyent-0.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f7584ffad3231c170882324f94f4027d", + "name": "clyent", + "requires": [], + "size": 12453, + "version": "0.3.1" + }, + "clyent-0.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f63666fd30bfa1616ffddc556558da40", + "name": "clyent", + "requires": [], + "size": 13529, + "version": "0.3.2" + }, + "clyent-0.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "807736dc19a2cd95c8a0668d5c05eeca", + "name": "clyent", + "requires": [], + "size": 13899, + "version": "0.3.2" + }, + "clyent-0.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "5ee98bef924b121efcab704c092fc588", + "name": "clyent", + "requires": [], + "size": 13907, + "version": "0.3.2" + }, + "clyent-0.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "56dfd1b6ee9dc0756c3bd5b9964aeb81", + "name": "clyent", + "requires": [], + "size": 13354, + "version": "0.3.4" + }, + "clyent-0.3.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d31f8efb244d1c46662a2d350d52b836", + "name": "clyent", + "requires": [], + "size": 13680, + "version": "0.3.4" + }, + "clyent-0.3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "fe35df92fde6bd98da83dd7f26323ce8", + "name": "clyent", + "requires": [], + "size": 13698, + "version": "0.3.4" + }, + "clyent-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "dd42dfcb705d82688bc05b98fddf1331", + "name": "clyent", + "requires": [], + "size": 14668, + "version": "0.4.0" + }, + "clyent-0.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD", + "md5": "ac51f7f8130788be4839c228716558dc", + "name": "clyent", + "requires": [], + "size": 15075, + "version": "0.4.0" + }, + "clyent-0.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "82d24303e2db193998d3643d4a2857ab", + "name": "clyent", + "requires": [], + "size": 15063, + "version": "0.4.0" + }, + "clyent-0.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "07f0ad755a29886f36a41a7b18ca45cd", + "name": "clyent", + "requires": [], + "size": 15047, + "version": "0.4.0" + }, + "clyent-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "0ef6aaf605941612ced8a54144710f28", + "name": "clyent", + "requires": [], + "size": 12924, + "version": "1.0.0" + }, + "clyent-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD", + "md5": "5627c326b01068bb308ce15fad0c1098", + "name": "clyent", + "requires": [], + "size": 13247, + "version": "1.0.0" + }, + "clyent-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "678f92b42c224fbadb92fb199e5d502f", + "name": "clyent", + "requires": [], + "size": 13264, + "version": "1.0.0" + }, + "clyent-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "d55cc480678e85d7b494ea24dd7ec038", + "name": "clyent", + "requires": [], + "size": 13201, + "version": "1.0.0" + }, + "clyent-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "cb10ee2088b9a3a6fcd82514b65d3a02", + "name": "clyent", + "requires": [], + "size": 12669, + "version": "1.1.0" + }, + "clyent-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD", + "md5": "92aed28970e3f7a5948898e0b0e84de2", + "name": "clyent", + "requires": [], + "size": 12997, + "version": "1.1.0" + }, + "clyent-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "5296e4235f70276689d9c73d147593fc", + "name": "clyent", + "requires": [], + "size": 13012, + "version": "1.1.0" + }, + "clyent-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "68c1873bed6830cff40cb1a53fe2ab8c", + "name": "clyent", + "requires": [], + "size": 12989, + "version": "1.1.0" + }, + "clyent-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-04", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "4977c7bb849ef5578e3c0e6da7f6836e", + "name": "clyent", + "requires": [], + "size": 13067, + "version": "1.2.0" + }, + "clyent-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-04", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD", + "md5": "69835a0686cfa1fa5a4c30526dd894a8", + "name": "clyent", + "requires": [], + "size": 13411, + "version": "1.2.0" + }, + "clyent-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-04", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "b956d5f6101f95d1474ab70f54dd8658", + "name": "clyent", + "requires": [], + "size": 13426, + "version": "1.2.0" + }, + "clyent-1.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-04", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "0636ba4ebb8af14b190f262235cb9606", + "name": "clyent", + "requires": [], + "size": 13371, + "version": "1.2.0" + }, + "clyent-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "e4ee014ab62b428f1c3725a2054229df", + "name": "clyent", + "requires": [], + "size": 13028, + "version": "1.2.1" + }, + "clyent-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "BSD", + "md5": "cee32fdbbd9383a54b281d5ce3035544", + "name": "clyent", + "requires": [], + "size": 13372, + "version": "1.2.1" + }, + "clyent-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "85a1ac21cdf24ac29bebfc837332077e", + "name": "clyent", + "requires": [], + "size": 13380, + "version": "1.2.1" + }, + "clyent-1.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "06a37a154455fd7dd7fa1ce39d1fb0a9", + "name": "clyent", + "requires": [], + "size": 13323, + "version": "1.2.1" + }, + "clyent-1.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "97e9268eabcb5ccded58fb9188730786", + "name": "clyent", + "requires": [], + "size": 14973, + "version": "1.2.2" + }, + "clyent-1.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "b65d6aa7b9c138c2492dfbc86aefbcb0", + "name": "clyent", + "requires": [], + "size": 15321, + "version": "1.2.2" + }, + "clyent-1.2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "143a68eb8f3df4d89eb100357f4fdb76", + "name": "clyent", + "requires": [], + "size": 15253, + "version": "1.2.2" + }, + "cmake-2.8.10.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d7fdde977fc680f29c0bb9d656aeb46d", + "name": "cmake", + "requires": [], + "size": 10834328, + "version": "2.8.10.2" + }, + "cmake-2.8.9-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "5d88381186566be9505141dbbd150d8a", + "name": "cmake", + "requires": [], + "size": 10595388, + "version": "2.8.9" + }, + "cmake-3.0.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-09-09", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1a2767e44f4864fab59ff8022ad2a18f", + "name": "cmake", + "requires": [], + "size": 10771911, + "version": "3.0.1" + }, + "cmake-3.2.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-06-09", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f20886f9ac1d4793ec7a8f749ac55326", + "name": "cmake", + "requires": [], + "size": 13308479, + "version": "3.2.3" + }, + "cmake-3.3.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-19", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "de7653832e0ce56b842080f108c0de49", + "name": "cmake", + "requires": [], + "size": 13591381, + "version": "3.3.1" + }, + "coffee-grunt-0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license_family": "Other", + "md5": "916ea0778a49095d0a0e6683ba457d04", + "name": "coffee-grunt", + "requires": [], + "size": 1732535, + "version": "0.0" + }, + "colander-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "iso8601", + "python 2.7*", + "translationstring" + ], + "license": "BSD-like (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "d8309fb4314cb61eb421e83aa44d94cf", + "name": "colander", + "requires": [], + "size": 92277, + "version": "1.0" + }, + "colander-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "iso8601", + "python 3.4*", + "translationstring" + ], + "license": "BSD-like (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "661477aa745dd59773690c4a5406b182", + "name": "colander", + "requires": [], + "size": 96304, + "version": "1.0" + }, + "colander-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "iso8601", + "python 3.5*", + "translationstring" + ], + "license": "BSD-like (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "67379a885197aed2ee6d4f09f862a42f", + "name": "colander", + "requires": [], + "size": 96472, + "version": "1.0" + }, + "colander-1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "iso8601", + "python 2.7*", + "translationstring" + ], + "license": "BSD-like (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "08cf0e9e25f40958e73e8ff011e11a38", + "name": "colander", + "requires": [], + "size": 101900, + "version": "1.2" + }, + "colander-1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "iso8601", + "python 3.4*", + "translationstring" + ], + "license": "BSD-like (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "84ffc8a8cd7791f2c9f80fb04aac7de8", + "name": "colander", + "requires": [], + "size": 106245, + "version": "1.2" + }, + "colander-1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "iso8601", + "python 3.5*", + "translationstring" + ], + "license": "BSD-like (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "8500d3e73b2be04fe09864a3df83c9e0", + "name": "colander", + "requires": [], + "size": 106023, + "version": "1.2" + }, + "colorama-0.2.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "e3c9b49be6b598e7fd1cd91071848acf", + "name": "colorama", + "requires": [], + "size": 14806, + "version": "0.2.7" + }, + "colorama-0.2.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "87cd17017589c36cecb080da5d92d20b", + "name": "colorama", + "requires": [], + "size": 14771, + "version": "0.2.7" + }, + "colorama-0.2.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "9e2eac6d3cb0c18713b8cae527f4c4a9", + "name": "colorama", + "requires": [], + "size": 15198, + "version": "0.2.7" + }, + "colorama-0.2.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "702067c82db40c587def1e3ec9072105", + "name": "colorama", + "requires": [], + "size": 15447, + "version": "0.2.7" + }, + "colorama-0.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "692e2eafe60d2a48b7e5df7124ce7e1f", + "name": "colorama", + "requires": [], + "size": 15502, + "version": "0.3.1" + }, + "colorama-0.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0edb25f4817430389a209c576e037f1c", + "name": "colorama", + "requires": [], + "size": 15464, + "version": "0.3.1" + }, + "colorama-0.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a5ce9a71311e8805f97f480e04479c6f", + "name": "colorama", + "requires": [], + "size": 15880, + "version": "0.3.1" + }, + "colorama-0.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7484a14b7c2bb14e357189e05c6d67cd", + "name": "colorama", + "requires": [], + "size": 15764, + "version": "0.3.1" + }, + "colorama-0.3.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "85cbbaf872bc82173615f7ceac241111", + "name": "colorama", + "requires": [], + "size": 17756, + "version": "0.3.3" + }, + "colorama-0.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f666f63eeee246fe3fd18a3d4f60cf9e", + "name": "colorama", + "requires": [], + "size": 17758, + "version": "0.3.3" + }, + "colorama-0.3.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "04aac17b89a6169690664e22a0dcd350", + "name": "colorama", + "requires": [], + "size": 18167, + "version": "0.3.3" + }, + "colorama-0.3.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "200e073bcbea5f034b203fc4c938f103", + "name": "colorama", + "requires": [], + "size": 18175, + "version": "0.3.3" + }, + "colorama-0.3.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "bb3d6e6bf62733cb1588464d61348503", + "name": "colorama", + "requires": [], + "size": 17813, + "version": "0.3.3" + }, + "colorama-0.3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "640137d82fccb8d5c3158893fba9bee9", + "name": "colorama", + "requires": [], + "size": 18940, + "version": "0.3.6" + }, + "colorama-0.3.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1a0b1f99fe598720f7cda0aeff42a70a", + "name": "colorama", + "requires": [], + "size": 19349, + "version": "0.3.6" + }, + "colorama-0.3.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "da078482420a255356f3ab0767857c4c", + "name": "colorama", + "requires": [], + "size": 19293, + "version": "0.3.6" + }, + "colorama-0.3.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0e664c202b9f776cb5b94321eaeddfb8", + "name": "colorama", + "requires": [], + "size": 19609, + "version": "0.3.7" + }, + "colorama-0.3.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "9a9771ae2fef2d0acad249f20f7ebefd", + "name": "colorama", + "requires": [], + "size": 19979, + "version": "0.3.7" + }, + "colorama-0.3.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "500a9541a8132cf9e8b87bd7c5271a2c", + "name": "colorama", + "requires": [], + "size": 19922, + "version": "0.3.7" + }, + "conda-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bb887c8785d47b8394401d05961d189d", + "name": "conda", + "requires": [ + "python 2.7" + ], + "size": 11482, + "version": "1.0" + }, + "conda-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "6d9c817f2d445e9cbb645a8a95d6136e", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 59988, + "version": "1.1.0" + }, + "conda-1.1.dev-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "a4246df8a810471c723be38f50d0b524", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 58144, + "version": "1.1.dev" + }, + "conda-1.1.dev-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7793eadb1f8cc01bbf92a663c8c0b7d3", + "name": "conda", + "requires": [ + "python 2.7" + ], + "size": 57285, + "version": "1.1.dev" + }, + "conda-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "b4573573db98bd3867db1711ac12d888", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 66935, + "version": "1.2.0" + }, + "conda-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "f45f68799cd00565561aa5b723c35c21", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 66829, + "version": "1.2.1" + }, + "conda-1.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "cd60e15eab19fcdbdab2c30763974894", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 81119, + "version": "1.3.2" + }, + "conda-1.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "22a4782a5f3c7fba41aedd75ecf6b740", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 79064, + "version": "1.3.3" + }, + "conda-1.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "db555687801b424d22a3da29c125435e", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 80008, + "version": "1.3.4" + }, + "conda-1.3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "a8a1d6c9dbc67b7fe0add3e98b18e637", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 77899, + "version": "1.3.5" + }, + "conda-1.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "5b5488a65265104b3f9b2808bc9f979a", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 85058, + "version": "1.4.0" + }, + "conda-1.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "ac67ed6356b9f3a4e00cf823acd9c1c7", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 86194, + "version": "1.4.2" + }, + "conda-1.4.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "76f5080e73a8547e6a57922ad9326ccd", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 86260, + "version": "1.4.3" + }, + "conda-1.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "d0c7826aa2ac35fd7e1b9c919067a9c7", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 86197, + "version": "1.4.4" + }, + "conda-1.4.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "c22cd294c8d4211861688f3acba611c1", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 86171, + "version": "1.4.5" + }, + "conda-1.4.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "8b66619aedc6a9d8a309914caa8e7877", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 86181, + "version": "1.4.6" + }, + "conda-1.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "1bf0ecd5325cfa0e28dff74b9174fcdb", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 87532, + "version": "1.5.0" + }, + "conda-1.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "f53fbc706e2ba116095d72e8efe1d0f9", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 89599, + "version": "1.5.1" + }, + "conda-1.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "2dc898c5b8ae1d8f6db7d1c354f53e1d", + "name": "conda", + "requires": [ + "python 2.7", + "pyyaml 3.10" + ], + "size": 89934, + "version": "1.5.2" + }, + "conda-1.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "bee35bb59cbc73947b98cb57d4ee6e5f", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 72104, + "version": "1.6.0" + }, + "conda-1.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "c75ced003ac378bd5a8613428bb27008", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 99199, + "version": "1.7.0" + }, + "conda-1.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "2a9c3f6a408579a527f0d05d0cfef973", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 99418, + "version": "1.7.1" + }, + "conda-1.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "2dcf35f2ec81a184fefd38fb83ff6648", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 100339, + "version": "1.7.2" + }, + "conda-1.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "50ca3bdb7af8da9217c7430f5d11e100", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 115709, + "version": "1.8.0" + }, + "conda-1.8.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "fe7e3ea4360aff82ad39e0e6d3162616", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 118103, + "version": "1.8.0" + }, + "conda-1.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "22d81c670ce824d72c6039539dd26a10", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 118495, + "version": "1.8.1" + }, + "conda-1.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "b9f217a51021507e0ea466fd8848eae0", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 120263, + "version": "1.8.1" + }, + "conda-1.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "201c55f3e909453b083be16fc19dac44", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 113961, + "version": "1.8.2" + }, + "conda-1.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "6cd0d010d6b1d4f5f07e824fa1165501", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 116325, + "version": "1.8.2" + }, + "conda-1.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "1860cb441acff65453f914bdce64f514", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 116487, + "version": "1.9.1" + }, + "conda-1.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "292661bc5540650c416c08f74dd2989a", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 119210, + "version": "1.9.1" + }, + "conda-2.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "796f3bd8fd3f007f1d02bd094a6a9da9", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 126343, + "version": "2.0.0" + }, + "conda-2.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "855e97798218bf7a79965f0771b74ba1", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 129065, + "version": "2.0.0" + }, + "conda-2.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "691e3a2eaf6bed8fb067f34fbdce3b14", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 126543, + "version": "2.0.1" + }, + "conda-2.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "e0dfd15503f8e239b09c3275f76ab98c", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 129365, + "version": "2.0.1" + }, + "conda-2.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "e9fd7c85424417a0b69e543d8632bb27", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 126969, + "version": "2.0.2" + }, + "conda-2.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "ea0da6912b1888defeb5d71d5d18105b", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 129448, + "version": "2.0.2" + }, + "conda-2.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "6ed53920727fc70721d365a0024b2c9c", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 126778, + "version": "2.0.3" + }, + "conda-2.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "2d9c161716c2ce45c5cc3ec79d4c135f", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 129526, + "version": "2.0.3" + }, + "conda-2.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "55e535d9e4f64bd7d6ed457fe915a4da", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 127079, + "version": "2.0.4" + }, + "conda-2.0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "87557b63b05e2dddd66154f80a3a3dbd", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 129913, + "version": "2.0.4" + }, + "conda-2.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "4095e1f1e343de726473cd48930d55dc", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 130337, + "version": "2.1.0" + }, + "conda-2.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "22155858a6f1cc6b0950c11b551d72cb", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 133204, + "version": "2.1.0" + }, + "conda-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "31784ce63adfcc8b14e5723875b0e77b", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 131787, + "version": "2.2.0" + }, + "conda-2.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "56e20158641e6fd7b9f2e4bfdf7dde9e", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 134603, + "version": "2.2.0" + }, + "conda-2.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "c95a80d45b31712da797b0f57e74113b", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 131812, + "version": "2.2.1" + }, + "conda-2.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "ec07a0298853ad33db3dff8da4d65a9c", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 134627, + "version": "2.2.1" + }, + "conda-2.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "e5cf754f08991669d17af0b544c0762f", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 132163, + "version": "2.2.2" + }, + "conda-2.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "3f6003ea1a6c80016d0cfceedfc74e36", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 135042, + "version": "2.2.2" + }, + "conda-2.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "f0891671556f3194bd667ebaab7ce2c9", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 132510, + "version": "2.2.3" + }, + "conda-2.2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "3241b8fa88a4aef666818ede12fa42ef", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 135458, + "version": "2.2.3" + }, + "conda-2.2.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "1e3838ffcb069f20221764fce09f7b14", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 133201, + "version": "2.2.4" + }, + "conda-2.2.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "ae2c0605a6f788cf3f7cc9f1a9406f8f", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 136153, + "version": "2.2.4" + }, + "conda-2.2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "5edb032ef05e8567689ba23e04dc10b1", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 134024, + "version": "2.2.5" + }, + "conda-2.2.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "4f73b131c89e604111ff5292118f062a", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 136925, + "version": "2.2.5" + }, + "conda-2.2.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "0a878225e338652165222b6d9b92d2c6", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 134586, + "version": "2.2.6" + }, + "conda-2.2.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "8a55715a7b1bed5cb8d4a1e070e27fe5", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 137525, + "version": "2.2.6" + }, + "conda-2.2.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "d7a7438924015fad8c41487a5fe2a6d0", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 134784, + "version": "2.2.7" + }, + "conda-2.2.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "615be068cfabcddf030483a004104692", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 137613, + "version": "2.2.7" + }, + "conda-2.2.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "ba6cfef701b752e26099c58dc60b6a00", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 135089, + "version": "2.2.8" + }, + "conda-2.2.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "f8ccdaf75359540bc52858927336b95a", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 138076, + "version": "2.2.8" + }, + "conda-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "d6898e22a6ddda1277ff24e28743e1d0", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 137913, + "version": "2.3.0" + }, + "conda-2.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "df554faeb3afadd9096ef5c342362076", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 140936, + "version": "2.3.0" + }, + "conda-2.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "674f2322a380ef330ae5922f1aa9e5d2", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 144109, + "version": "2.3.1" + }, + "conda-2.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "078a526cd8258655236570eba971372e", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 147141, + "version": "2.3.1" + }, + "conda-3.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "7218255be85ed52d2e2df2fcd67999fc", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 103854, + "version": "3.0.0" + }, + "conda-3.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "3b6c3d245fbb96e31ed94778b32375a9", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 105986, + "version": "3.0.0" + }, + "conda-3.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "39db29e81a0a55ac331a18844adbfbb6", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 104773, + "version": "3.0.1" + }, + "conda-3.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "d97ae7ae42d2706a1bd120cc8ee19ef8", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 106600, + "version": "3.0.1" + }, + "conda-3.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "27a99a0eb6236e3fd4a4f5e74793bc37", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 104771, + "version": "3.0.2" + }, + "conda-3.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "4444f84fea34b53b84b5fae939e01362", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 106657, + "version": "3.0.2" + }, + "conda-3.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "f1ba8309cf4a511584507b186da4804e", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 104754, + "version": "3.0.3" + }, + "conda-3.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "5f576e539e5ca74bb563168e0dde11ae", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 106923, + "version": "3.0.3" + }, + "conda-3.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "dfde0c44d2d1c0c41f2de00645816975", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 105376, + "version": "3.0.4" + }, + "conda-3.0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "80af000ddb9799e887469336b4f83275", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 107526, + "version": "3.0.4" + }, + "conda-3.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "e8a4edea9273e6784ce33fae71f97a87", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 105643, + "version": "3.0.5" + }, + "conda-3.0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "346b640e69de0b88d5ce94edeb4ab838", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 107727, + "version": "3.0.5" + }, + "conda-3.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "b3aea7303a3c4efffa2d6b2a6c73a739", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 105914, + "version": "3.0.6" + }, + "conda-3.0.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "15d7149aa673b635b1f3b3cb62810388", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 107927, + "version": "3.0.6" + }, + "conda-3.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "ed5b3538b759ae4b68586be8f5a032d7", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 106656, + "version": "3.1.0" + }, + "conda-3.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "7689f90f727c6408f153597df8cb095e", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 108807, + "version": "3.1.0" + }, + "conda-3.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "69b0b0879074c2d1e1be653402ee36fd", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 106658, + "version": "3.1.1" + }, + "conda-3.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "3593f64ba67fa47c7300cd3c505e6ed6", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 109184, + "version": "3.1.1" + }, + "conda-3.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "212752783a5d26c1efbec5cda499b397", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.3" + ], + "size": 167572, + "version": "3.10.0" + }, + "conda-3.10.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c1bde05f96e8a90484dd21380dacae26", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.3" + ], + "size": 171079, + "version": "3.10.0" + }, + "conda-3.10.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "b7f0c9679fa7e094e1ca7981b6d0e7ae", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.3" + ], + "size": 171718, + "version": "3.10.0" + }, + "conda-3.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "179b9ab0b457a0b75d70eaf0e0610fc8", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.6.0" + ], + "size": 168306, + "version": "3.10.1" + }, + "conda-3.10.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "185788ceb6ae93ba433371c003389335", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.6.0" + ], + "size": 171706, + "version": "3.10.1" + }, + "conda-3.10.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "48a7d1415646d4cdc1b12f553b980a36", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.6.0" + ], + "size": 172549, + "version": "3.10.1" + }, + "conda-3.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5b6d9a4eb6cf8c907d67f7e5738bd892", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.6.0" + ], + "size": 171255, + "version": "3.11.0" + }, + "conda-3.11.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "a84b6bf88ae218a63a10c78992b21fa9", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.6.0" + ], + "size": 174749, + "version": "3.11.0" + }, + "conda-3.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9045895758d20d857beb3837360abe02", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.6.0" + ], + "size": 175406, + "version": "3.11.0" + }, + "conda-3.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "478a100c926759b1590eb6160a3b3282", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 171019, + "version": "3.12.0" + }, + "conda-3.12.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "70d92c93f183c5ab106e0e60584f9426", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 174533, + "version": "3.12.0" + }, + "conda-3.12.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "566263bf5a0014477ebf94ff876785f6", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 175113, + "version": "3.12.0" + }, + "conda-3.13.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "fec45d79d1b51c411c311b70a2763aa4", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 171468, + "version": "3.13.0" + }, + "conda-3.13.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "2554a992e96389d63f1ebfba017eb91d", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 174838, + "version": "3.13.0" + }, + "conda-3.13.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "deb01b25013bf9023704e052c8a1d325", + "name": "conda", + "requires": [ + "conda-env 2.1.4", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 175681, + "version": "3.13.0" + }, + "conda-3.14.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "aa4552e9cffbdb3fc11a9651ba5bf737", + "name": "conda", + "requires": [ + "conda-env 2.2.1", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 173192, + "version": "3.14.0" + }, + "conda-3.14.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "1865b3fa5c22a9f1245e9ae255fbe6c0", + "name": "conda", + "requires": [ + "conda-env 2.2.1", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 176753, + "version": "3.14.0" + }, + "conda-3.14.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9b40b5df6f5749e7356b35ece2df71b8", + "name": "conda", + "requires": [ + "conda-env 2.2.1", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 177474, + "version": "3.14.0" + }, + "conda-3.14.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "1473756d794729f51a42d86340c91684", + "name": "conda", + "requires": [ + "conda-env 2.2.3", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 172885, + "version": "3.14.1" + }, + "conda-3.14.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "4eb870969e39810b10272bba5aab1fe3", + "name": "conda", + "requires": [ + "conda-env 2.2.3", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 176431, + "version": "3.14.1" + }, + "conda-3.14.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "f93c45fa682254729c7d30897da9f725", + "name": "conda", + "requires": [ + "conda-env 2.2.3", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 177258, + "version": "3.14.1" + }, + "conda-3.15.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "f54aeacda9b12199e1361362cb2b133b", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 174864, + "version": "3.15.0" + }, + "conda-3.15.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e4a8cfd1ade566a87875f39ef5b8bb57", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 178469, + "version": "3.15.0" + }, + "conda-3.15.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "36938f94433920afa315a9a7ca65be48", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179260, + "version": "3.15.0" + }, + "conda-3.15.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e1eb51a27723c648af618c13c7007bc0", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 174984, + "version": "3.15.1" + }, + "conda-3.15.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e03869eeb1a5ef7b371b1757bf0983e6", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 178591, + "version": "3.15.1" + }, + "conda-3.15.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "bcf72457b9148bc5455960be7da0051e", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179291, + "version": "3.15.1" + }, + "conda-3.16.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "85bd6884e012906407d3c6b3ad228d92", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 175717, + "version": "3.16.0" + }, + "conda-3.16.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "4d041eb3c00f943cea135cc20ce6b3b3", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179855, + "version": "3.16.0" + }, + "conda-3.16.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "cd5ac3185537c5a8a050c503d941fbf6", + "name": "conda", + "requires": [ + "conda-env 2.3.0", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179993, + "version": "3.16.0" + }, + "conda-3.16.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "bfa092add4b8929820fcdf644d378b0d", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179123, + "version": "3.16.0" + }, + "conda-3.17.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "aa026580cf66dadbafbdbb3203acb45a", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 176502, + "version": "3.17.0" + }, + "conda-3.17.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "95f3182cd8ce0ef0efedd35871057001", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 180106, + "version": "3.17.0" + }, + "conda-3.17.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d4f12163d4f5b26e02a37879bc13a642", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 180847, + "version": "3.17.0" + }, + "conda-3.17.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "3dfaa69267158f8077ee325ecff29cd7", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179984, + "version": "3.17.0" + }, + "conda-3.18.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9f42eb27ff114cf73bc9bb3895e18ec2", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 176500, + "version": "3.18.0" + }, + "conda-3.18.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "7f46425640b7a9565c5c41cfcfab69c2", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179774, + "version": "3.18.0" + }, + "conda-3.18.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "cae8c9b7edbad6ea172f5bb43b5cfe5a", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 180657, + "version": "3.18.0" + }, + "conda-3.18.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "7ae081ede25a1ec91fdce250bbdd53fd", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179757, + "version": "3.18.0" + }, + "conda-3.18.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "690fbb830717ea74f62bab7aa8380cac", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 176399, + "version": "3.18.1" + }, + "conda-3.18.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "1bffb46a0374bdb979ced3e1abb6db62", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179797, + "version": "3.18.1" + }, + "conda-3.18.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "32f24ee8e84a6845afcb4d0f28b844d4", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 180624, + "version": "3.18.1" + }, + "conda-3.18.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "98897ac54c4bce2f49f9d53fbe899c80", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.7.0" + ], + "size": 179635, + "version": "3.18.1" + }, + "conda-3.18.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c6aa9448b289cd00732d9d06a0d0f1e4", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.8.0" + ], + "size": 177252, + "version": "3.18.2" + }, + "conda-3.18.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9082933cfae94c96cac3ef7d26e3569b", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.8.0" + ], + "size": 180716, + "version": "3.18.2" + }, + "conda-3.18.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d55e2bca3782ab2954525bb6103aeebf", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.8.0" + ], + "size": 181088, + "version": "3.18.2" + }, + "conda-3.18.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "0b304b18c16db691939f6dc750d66b83", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.8.0" + ], + "size": 180731, + "version": "3.18.2" + }, + "conda-3.18.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-15", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "f40ed2483a07eda9116518c9e2925b87", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 179504, + "version": "3.18.3" + }, + "conda-3.18.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-15", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "1068cc7d749eb8a555817027f2d74e9a", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 182935, + "version": "3.18.3" + }, + "conda-3.18.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-15", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9a7f47afda415813d6cbbe7469cb4108", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183427, + "version": "3.18.3" + }, + "conda-3.18.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-15", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "a977f53f95b2db603a289460fbc6115b", + "name": "conda", + "requires": [ + "conda-env 2.4.2", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 182877, + "version": "3.18.3" + }, + "conda-3.18.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-09", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d76ccc63abfb8317feb5a4cb23c2cd11", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 179870, + "version": "3.18.4" + }, + "conda-3.18.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-09", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "ba3c0679e1baa33beb83ec520594de9a", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183275, + "version": "3.18.4" + }, + "conda-3.18.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-09", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "2cc6fcd83306a1bdadeb99158d674bf1", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 184231, + "version": "3.18.4" + }, + "conda-3.18.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-09", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "593e21763e838a913345e78da79af6a5", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183241, + "version": "3.18.4" + }, + "conda-3.18.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d4f101852bcaf84e8c155d2cb655afe6", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 179786, + "version": "3.18.5" + }, + "conda-3.18.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e2a86ace9fd8d8e647e81845ed380eca", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183282, + "version": "3.18.5" + }, + "conda-3.18.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "7359a227d8b842c95a30ca5e8616bf90", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 184202, + "version": "3.18.5" + }, + "conda-3.18.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "0f875112a5698cb775cec77830e48430", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183233, + "version": "3.18.5" + }, + "conda-3.18.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5cd82cc980ae2483c4873b3b334aa04c", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 180105, + "version": "3.18.6" + }, + "conda-3.18.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "6c1a1ab9aa044e2874092b4cef3224de", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183663, + "version": "3.18.6" + }, + "conda-3.18.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d3151ee3e6c0f653b72284c960c37603", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 184164, + "version": "3.18.6" + }, + "conda-3.18.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "071da87269f2aea6e644cdce5f3ee975", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183718, + "version": "3.18.6" + }, + "conda-3.18.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-02", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "575f18efa833cd2a4ea18c9e6e044809", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 180050, + "version": "3.18.7" + }, + "conda-3.18.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-02", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "077b4729910fed7aab0bfaa16afde068", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183510, + "version": "3.18.7" + }, + "conda-3.18.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-02", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "2bfa9aadc1aa8cc0239dd3e65c9670f1", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 184383, + "version": "3.18.7" + }, + "conda-3.18.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-02", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d77f641a23024f1fcf49f4c15682dd32", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183578, + "version": "3.18.7" + }, + "conda-3.18.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-03", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "fc1387ca197d21921878daacf4731967", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 180000, + "version": "3.18.8" + }, + "conda-3.18.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-03", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "b1f95bef45f716cbaa8c6f8fa307be8f", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 184038, + "version": "3.18.8" + }, + "conda-3.18.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-03", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "0b80b13b10ee108ff73b732260b60a81", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 184424, + "version": "3.18.8" + }, + "conda-3.18.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-03", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "65dbc111f68946f04860bff4acaa4963", + "name": "conda", + "requires": [ + "conda-env 2.4.4", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183089, + "version": "3.18.8" + }, + "conda-3.18.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-10", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d9a9587c694beba312f213441e2a26c8", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 180210, + "version": "3.18.9" + }, + "conda-3.18.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-10", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "0dfbe4f99cba8393ef4248f6bc0154ae", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183694, + "version": "3.18.9" + }, + "conda-3.18.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-10", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c82921bb943bd120b9a74c7e85f8ddc4", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 184165, + "version": "3.18.9" + }, + "conda-3.18.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-10", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "bc557d9862a066b374d884858b0a031e", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.8.1" + ], + "size": 183288, + "version": "3.18.9" + }, + "conda-3.19.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-17", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "60ba6ce81cd9e4b0125f248617d44c38", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.9.0" + ], + "size": 180343, + "version": "3.19.0" + }, + "conda-3.19.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-17", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "0588e9f0c1ef55cfdaf0d57f9fcb52d2", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.9.0" + ], + "size": 183839, + "version": "3.19.0" + }, + "conda-3.19.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-17", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "35e85bcb2acaeb14dcc71f3d873ca58f", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.9.0" + ], + "size": 184782, + "version": "3.19.0" + }, + "conda-3.19.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-17", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "28538b25d5c87cc3e207052e3888677a", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.9.0" + ], + "size": 183885, + "version": "3.19.0" + }, + "conda-3.19.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "28c8be90e9bc88a276f2f2e02fccbc8b", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 180929, + "version": "3.19.1" + }, + "conda-3.19.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e6d538692e9e5110a1545d061a1986cb", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 184233, + "version": "3.19.1" + }, + "conda-3.19.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9bda2cfe29274df58c52751cea5b81c4", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 184737, + "version": "3.19.1" + }, + "conda-3.19.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5336f31e40d5c296f61c371ce7e35ce4", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 184298, + "version": "3.19.1" + }, + "conda-3.19.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9c56d4edc397451b97247de94bb2ef50", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 182055, + "version": "3.19.3" + }, + "conda-3.19.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "61b101bf8c16880f09976ed14cc26642", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 185879, + "version": "3.19.3" + }, + "conda-3.19.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "afdc73c46f8de159eccbb488cca917c7", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 186345, + "version": "3.19.3" + }, + "conda-3.19.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5970d1de6b91813e1765bf1213b5989f", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 185067, + "version": "3.19.3" + }, + "conda-3.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "7417eb5dcb81cc138c0c5132df3e14db", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 116032, + "version": "3.2.0" + }, + "conda-3.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "b2edd098ecc547443d588b49f1b86245", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 118386, + "version": "3.2.0" + }, + "conda-3.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "dff69efd9ba0d634dbba782caa9ed8fa", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 116193, + "version": "3.2.1" + }, + "conda-3.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "4bb7749f57fa8d8ad2ebc350d0791f9b", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 118493, + "version": "3.2.1" + }, + "conda-3.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "b73bd6865d30b5c3270431519fe259fb", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 120168, + "version": "3.3.0" + }, + "conda-3.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "aab148ac9ea381e59ac47cbb5e5ad61c", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 122874, + "version": "3.3.0" + }, + "conda-3.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "e1575c756b5e36ac41148cf9166cd76e", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 121466, + "version": "3.3.1" + }, + "conda-3.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "e562f009bb0bf7a5745044a580c31870", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 124007, + "version": "3.3.1" + }, + "conda-3.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "62014f05f703e804eb26c615ebb85e51", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 121291, + "version": "3.3.2" + }, + "conda-3.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "dd95836683803c808d4667d0402912a0", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 124056, + "version": "3.3.2" + }, + "conda-3.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "77ead6756c60109ebb40d33c5cc5f4f7", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 125747, + "version": "3.4.0" + }, + "conda-3.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "70039278678f8e1a96c67133f61a6ae3", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 128295, + "version": "3.4.0" + }, + "conda-3.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml" + ], + "license": "BSD", + "md5": "197f931e99774c7fab443c1393596c10", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.4", + "pyyaml 3.10" + ], + "size": 128385, + "version": "3.4.0" + }, + "conda-3.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "e47a4aa186339bc2821b48c81bbfc5e4", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.10" + ], + "size": 125748, + "version": "3.4.1" + }, + "conda-3.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "21c682a34fd8010ddddc09734d282299", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.10" + ], + "size": 128273, + "version": "3.4.1" + }, + "conda-3.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml" + ], + "license": "BSD", + "md5": "250b89b91e6ee1b53fc78ccbd88c6324", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.4", + "pyyaml 3.10" + ], + "size": 128261, + "version": "3.4.1" + }, + "conda-3.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "c0c93097019ac2d6ab8d039ad676e1c4", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 2.7", + "pyyaml 3.11" + ], + "size": 127852, + "version": "3.4.2" + }, + "conda-3.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "e80428020c701160781ee5f48b0bfeba", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.3", + "pyyaml 3.11" + ], + "size": 130499, + "version": "3.4.2" + }, + "conda-3.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml" + ], + "license": "BSD", + "md5": "9bed148f8860ef6b4cb4ebe60bc8fd6a", + "name": "conda", + "requires": [ + "pycosat 0.6.0", + "python 3.4", + "pyyaml 3.11" + ], + "size": 130662, + "version": "3.4.2" + }, + "conda-3.4.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "1b3f368bd3d70173dd79c37200e223ea", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11" + ], + "size": 128661, + "version": "3.4.3" + }, + "conda-3.4.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml" + ], + "license": "BSD", + "md5": "79f4e37d0540d9b33edb91b3eec8ac05", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11" + ], + "size": 131582, + "version": "3.4.3" + }, + "conda-3.4.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml" + ], + "license": "BSD", + "md5": "7fa3514b83bf88718e186b0e6ce56fa8", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11" + ], + "size": 132051, + "version": "3.4.3" + }, + "conda-3.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "35f1dd520e9c673ebae090e6ff042165", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.2.1" + ], + "size": 133627, + "version": "3.5.0" + }, + "conda-3.5.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c8cb1c3395cd427b8c30ec77980e8912", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.2.1" + ], + "size": 136450, + "version": "3.5.0" + }, + "conda-3.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "8416368fb959dd5db791bd73841ab759", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.2.1" + ], + "size": 136600, + "version": "3.5.0" + }, + "conda-3.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "2fd2eb73e694272b1826b7df2475e61d", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 135130, + "version": "3.5.1" + }, + "conda-3.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5472732c952e03ee415d97907b7d5bdb", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 138333, + "version": "3.5.1" + }, + "conda-3.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "aeea48e06c70f23be8d7099b728be576", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 138140, + "version": "3.5.1" + }, + "conda-3.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9ad492b3c580d77f04900607525eab72", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 135165, + "version": "3.5.2" + }, + "conda-3.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "ddb0e8ab56335f6885b5057dcc498478", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 138142, + "version": "3.5.2" + }, + "conda-3.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "da0a3b6b804e09da5ad3cd7ab810ee61", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 138128, + "version": "3.5.2" + }, + "conda-3.5.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "1ae4c19457bb215979bd73d411891718", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 136887, + "version": "3.5.3" + }, + "conda-3.5.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "db2aa828a904d135ad3802f816b71d06", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 139993, + "version": "3.5.3" + }, + "conda-3.5.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "483721678645acf15fe5f80486c316fd", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 140040, + "version": "3.5.3" + }, + "conda-3.5.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e591872c6a1b198815638dbe4c9df1ea", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 137526, + "version": "3.5.4" + }, + "conda-3.5.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "6dabe2f6e184c92fb335af13a5a0e3ec", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 140667, + "version": "3.5.4" + }, + "conda-3.5.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e987201a2a6d426473847408c9adda8a", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 140697, + "version": "3.5.4" + }, + "conda-3.5.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c608cefe6af8241150f8ba43dbdde1bd", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 137386, + "version": "3.5.5" + }, + "conda-3.5.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "b62dac3413f9e5dba84ec84f16d547f5", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 140604, + "version": "3.5.5" + }, + "conda-3.5.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "6fa6394424291cce2131d0a74965c33b", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 140720, + "version": "3.5.5" + }, + "conda-3.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "90ba11ab87e23f2de1767219938adbad", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 151080, + "version": "3.6.0" + }, + "conda-3.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "73a5bfe6873b3b96ff0d7c18e9c09f83", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 154222, + "version": "3.6.0" + }, + "conda-3.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "089c24f5a3cc1477fd098f4ca6af0d59", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 154550, + "version": "3.6.0" + }, + "conda-3.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e059bf25d5823fba439b9ef707970c2e", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 152262, + "version": "3.6.1" + }, + "conda-3.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9d113c0e456bebb869ca0216fb29b87a", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 155407, + "version": "3.6.1" + }, + "conda-3.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "275b07fa7d211194f8a82ab0e43d06a7", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 155474, + "version": "3.6.1" + }, + "conda-3.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d1fd7e434a6b9d2a9e0ac93231d59555", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 152631, + "version": "3.6.2" + }, + "conda-3.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "97622e3693f191e2058cade82bc85746", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 155660, + "version": "3.6.2" + }, + "conda-3.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c6fd9fb2aa4fa879d75ae459105c9021", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.3.0" + ], + "size": 155940, + "version": "3.6.2" + }, + "conda-3.6.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d066da77651c4a3c4ff89052ef30bb87", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.4.0" + ], + "size": 154883, + "version": "3.6.3" + }, + "conda-3.6.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "7227f66c3abd2bfdee41f1b8b2c2961a", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.4.0" + ], + "size": 158067, + "version": "3.6.3" + }, + "conda-3.6.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d456fc7bdba1ac9c1024e4cf7246247e", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.4.0" + ], + "size": 158160, + "version": "3.6.3" + }, + "conda-3.6.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "0bbaa2acd92319e616a1fcecfd96d986", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.4.0" + ], + "size": 154873, + "version": "3.6.4" + }, + "conda-3.6.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "31d8a4e180fe46ed144d7d70cba692c6", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.4.0" + ], + "size": 158279, + "version": "3.6.4" + }, + "conda-3.6.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "cac55ed22123f081b9a3d7c2a8a5ba8a", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.4.0" + ], + "size": 158400, + "version": "3.6.4" + }, + "conda-3.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "cdaa13ef8f25e09424925f8f720e221a", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.4.1" + ], + "size": 158114, + "version": "3.7.0" + }, + "conda-3.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "11b03c8db37be7b9f761fe81935a754b", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.4.1" + ], + "size": 161214, + "version": "3.7.0" + }, + "conda-3.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5f95a928a9aae611012121cebffef683", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.4.1" + ], + "size": 161618, + "version": "3.7.0" + }, + "conda-3.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-07", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "bfd1cd514628271160c102f9b7d20e93", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 158884, + "version": "3.7.1" + }, + "conda-3.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-07", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "24f5d3ed89954a07555d1adfbdc5e32f", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 161952, + "version": "3.7.1" + }, + "conda-3.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-07", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c7fc62627dd2747779cd9efad3fd9fa6", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 162956, + "version": "3.7.1" + }, + "conda-3.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "006e946c6eb8335ee89a7a2dd2e780a0", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 159586, + "version": "3.7.2" + }, + "conda-3.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "59697b4aabeb024731692bdd071ba7d7", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 162981, + "version": "3.7.2" + }, + "conda-3.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5768ffac2f970d3da38ebea67c372c11", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 163253, + "version": "3.7.2" + }, + "conda-3.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "425bf51d8cde61bb1a082cc1cd036ed1", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 160071, + "version": "3.7.3" + }, + "conda-3.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9a499c653be84cf8af56e5e8bd191428", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 163384, + "version": "3.7.3" + }, + "conda-3.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "8b2dc1abf74b9735702868febd4b07a5", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.4.3" + ], + "size": 163693, + "version": "3.7.3" + }, + "conda-3.7.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-18", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "52daacdc5f2ca603d86e380f502a8dd4", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.0" + ], + "size": 163810, + "version": "3.7.4" + }, + "conda-3.7.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-18", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "083ef93b217387dffc30159a72a3b78c", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.0" + ], + "size": 167242, + "version": "3.7.4" + }, + "conda-3.7.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-18", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5ac063e5c83b33299b7348943c6d2163", + "name": "conda", + "requires": [ + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.0" + ], + "size": 167484, + "version": "3.7.4" + }, + "conda-3.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-22", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "cf1a6e01a7ea2a4115586fa8a4817c4b", + "name": "conda", + "requires": [ + "conda-env 2.0.0", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 165064, + "version": "3.8.0" + }, + "conda-3.8.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-22", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "38a8f07597d764cf6e6d16163c287d87", + "name": "conda", + "requires": [ + "conda-env 2.0.0", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 168549, + "version": "3.8.0" + }, + "conda-3.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-22", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "4e50382dbf2b12158e359ddee08e0db0", + "name": "conda", + "requires": [ + "conda-env 2.0.0", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 168642, + "version": "3.8.0" + }, + "conda-3.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-23", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "02e30b4861d9290bc73c1eda7a30d640", + "name": "conda", + "requires": [ + "conda-env 2.0.0", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 165185, + "version": "3.8.1" + }, + "conda-3.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-23", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "56ae1828c37648e67c6af422f198efaa", + "name": "conda", + "requires": [ + "conda-env 2.0.0", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 168571, + "version": "3.8.1" + }, + "conda-3.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-23", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "37d0cc45d2d22ebe8e3ecef36d927a16", + "name": "conda", + "requires": [ + "conda-env 2.0.0", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 169042, + "version": "3.8.1" + }, + "conda-3.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-27", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "57c902cbe3be1375bd109e0172f13803", + "name": "conda", + "requires": [ + "conda-env 2.0.1", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 165989, + "version": "3.8.2" + }, + "conda-3.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-27", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "49cac9e3dc4f461c6488e587b962ae06", + "name": "conda", + "requires": [ + "conda-env 2.0.1", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 169428, + "version": "3.8.2" + }, + "conda-3.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-27", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "bdb249816ac6bb60e2da5078daf444a1", + "name": "conda", + "requires": [ + "conda-env 2.0.1", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 169517, + "version": "3.8.2" + }, + "conda-3.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-28", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "32b1c243c19a36afa381360eb899c896", + "name": "conda", + "requires": [ + "conda-env 2.0.1", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 165885, + "version": "3.8.3" + }, + "conda-3.8.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-28", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "186af8f63e79f399786d4d35d7fb6dce", + "name": "conda", + "requires": [ + "conda-env 2.0.1", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 169351, + "version": "3.8.3" + }, + "conda-3.8.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-28", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "be98a28671937ba05e4da2b18bc1caae", + "name": "conda", + "requires": [ + "conda-env 2.0.1", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 169751, + "version": "3.8.3" + }, + "conda-3.8.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5e945b2c803a652c8046cc5c3ce3720d", + "name": "conda", + "requires": [ + "conda-env 2.0.2", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 166976, + "version": "3.8.4" + }, + "conda-3.8.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "e44d92458e06165c3a1f909c53156528", + "name": "conda", + "requires": [ + "conda-env 2.0.2", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 170355, + "version": "3.8.4" + }, + "conda-3.8.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "275d18713eed0c13720182f3df774fb8", + "name": "conda", + "requires": [ + "conda-env 2.0.2", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 170873, + "version": "3.8.4" + }, + "conda-3.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "76ec7b1633fab1c17e94e3ebd4d8979a", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 167335, + "version": "3.9.0" + }, + "conda-3.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "9d1ef9c30db5622d839ab4425f697998", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 170807, + "version": "3.9.0" + }, + "conda-3.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "6ae263b46da37c52f0f1136381eedb81", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.1" + ], + "size": 171075, + "version": "3.9.0" + }, + "conda-3.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "8a62d7707a70991843d7bd107230e678", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.5.3" + ], + "size": 167471, + "version": "3.9.1" + }, + "conda-3.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "conda-env", + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "8d6ce9efb5878dd29840d7a0dcaabdad", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 3.3", + "pyyaml 3.11", + "requests 2.5.3" + ], + "size": 171044, + "version": "3.9.1" + }, + "conda-3.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "674ce34f8eabd5899a149cd776d6e427", + "name": "conda", + "requires": [ + "conda-env 2.1.3", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.5.3" + ], + "size": 171587, + "version": "3.9.1" + }, + "conda-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-04", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c84d1b21307a8562b22ddc747a0ecafb", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 188437, + "version": "4.0.0" + }, + "conda-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-04", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "684b282b446252917a501ae17f446097", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 193330, + "version": "4.0.0" + }, + "conda-4.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-04", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "4d6c5e60565144f6b850d18a0bc6d535", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 192523, + "version": "4.0.0" + }, + "conda-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-07", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5954ebf3cdaabb6c6853d96ddf5f6af6", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 188455, + "version": "4.0.1" + }, + "conda-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-07", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "3684493f6ccb1453c7ce5ea2b325644f", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 192890, + "version": "4.0.1" + }, + "conda-4.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-07", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c93c7a25638bdb4d720db5849833c9f1", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 191994, + "version": "4.0.1" + }, + "conda-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "a51cf807ed1c21dedf2e98d738db1282", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 188738, + "version": "4.0.2" + }, + "conda-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c00e956e9704ef8c559ef3a7a87322e6", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 193145, + "version": "4.0.2" + }, + "conda-4.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "6dc7d788a7e2fde2dcdcb39b2a6f8824", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 192731, + "version": "4.0.2" + }, + "conda-4.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "b3d769833c59bae5ccc11fcbe2e96ba4", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 188697, + "version": "4.0.4" + }, + "conda-4.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "f0dcd6e5d98ebbb437ccb473ec8ef517", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 193594, + "version": "4.0.4" + }, + "conda-4.0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "139e002afd174899a1384d3f2c23f65a", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 192694, + "version": "4.0.4" + }, + "conda-4.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "conda-env", + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "fe7877ccfa3045c621700e6879c67462", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 2.7", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 189073, + "version": "4.0.5" + }, + "conda-4.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "conda-env", + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "bbab9942b986878a3a494cbad33951ff", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.4", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 193507, + "version": "4.0.5" + }, + "conda-4.0.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "conda-env", + "pycosat", + "python 3.5*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "dff8cd77a66d5acb017fd030a72fc600", + "name": "conda", + "requires": [ + "conda-env 2.4.5", + "pycosat 0.6.1", + "python 3.5", + "pyyaml 3.11", + "requests 2.9.1" + ], + "size": 193073, + "version": "4.0.5" + }, + "conda-api-1.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "60da6ecc3b5dce2f51304220ff484604", + "name": "conda-api", + "requires": [], + "size": 5357, + "version": "1.0.0" + }, + "conda-api-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d5a6166dc6db5826141ad5234b17d59e", + "name": "conda-api", + "requires": [], + "size": 5343, + "version": "1.0.0" + }, + "conda-api-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "97b4c642222c4efc8d9d18435fccf551", + "name": "conda-api", + "requires": [], + "size": 5500, + "version": "1.0.0" + }, + "conda-api-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c00099c97cf9ecefa5f791f6ee284ad1", + "name": "conda-api", + "requires": [], + "size": 5507, + "version": "1.1.0" + }, + "conda-api-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "68dc5474e176bfab29bfb387775416b5", + "name": "conda-api", + "requires": [], + "size": 5472, + "version": "1.1.0" + }, + "conda-api-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "8a2cb219f90d34d1e977fd411a3ec984", + "name": "conda-api", + "requires": [], + "size": 5587, + "version": "1.1.0" + }, + "conda-api-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f7a66fa507f9823e7db2b90a6eee1761", + "name": "conda-api", + "requires": [], + "size": 5983, + "version": "1.1.0" + }, + "conda-api-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "0c83ed57b9d1a3d32586f945e3c32361", + "name": "conda-api", + "requires": [], + "size": 5668, + "version": "1.1.0" + }, + "conda-build-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 2.7*" + ], + "license": "BSD", + "md5": "1468040dd71a008a973ddc078586aa38", + "name": "conda-build", + "requires": [], + "size": 50841, + "version": "1.0.0" + }, + "conda-build-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 3.3*" + ], + "license": "BSD", + "md5": "37802351568d5051b4344124fd84fe64", + "name": "conda-build", + "requires": [], + "size": 51386, + "version": "1.0.0" + }, + "conda-build-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 2.7*" + ], + "license": "BSD", + "md5": "67ccda4232ba71fea10aa49171595f91", + "name": "conda-build", + "requires": [], + "size": 52592, + "version": "1.1.0" + }, + "conda-build-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 3.3*" + ], + "license": "BSD", + "md5": "3a1257fb0fcd065dab1c57ee60cdb441", + "name": "conda-build", + "requires": [], + "size": 53188, + "version": "1.1.0" + }, + "conda-build-1.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "7d9c8ff59e54f664a5954c23669e18f3", + "name": "conda-build", + "requires": [], + "size": 174405, + "version": "1.10.0" + }, + "conda-build-1.10.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "fb8aedbc6ef1fd59588463c139c70817", + "name": "conda-build", + "requires": [], + "size": 175862, + "version": "1.10.0" + }, + "conda-build-1.10.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "38fc3a80bd18479808bcdd658c90ea46", + "name": "conda-build", + "requires": [], + "size": 176195, + "version": "1.10.0" + }, + "conda-build-1.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-06", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "d2359df31cc3da6faa59e73c7ade5dac", + "name": "conda-build", + "requires": [], + "size": 183124, + "version": "1.10.1" + }, + "conda-build-1.10.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-06", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "2c5d2c5a9092aa627d01e1a2eee3c55a", + "name": "conda-build", + "requires": [], + "size": 184561, + "version": "1.10.1" + }, + "conda-build-1.10.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-06", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "da24476769b9bc78fa5c7d362c18d6ed", + "name": "conda-build", + "requires": [], + "size": 184892, + "version": "1.10.1" + }, + "conda-build-1.10.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-10", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "c7865220ae663afb30c09325e81f82dc", + "name": "conda-build", + "requires": [], + "size": 183556, + "version": "1.10.2" + }, + "conda-build-1.10.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-10", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "dec5c124d57e72ee98179a7bb4394298", + "name": "conda-build", + "requires": [], + "size": 185030, + "version": "1.10.2" + }, + "conda-build-1.10.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-10", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "0fa9d183bd2d1adf068742218b7421af", + "name": "conda-build", + "requires": [], + "size": 185430, + "version": "1.10.2" + }, + "conda-build-1.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "618bb0a111b61b04be5d859876d7b446", + "name": "conda-build", + "requires": [], + "size": 186563, + "version": "1.11.0" + }, + "conda-build-1.11.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "2925866181c396c6f21a5b6a72dbaed0", + "name": "conda-build", + "requires": [], + "size": 188201, + "version": "1.11.0" + }, + "conda-build-1.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "dc3c7b292c7b0b4a692998a24ca76a0b", + "name": "conda-build", + "requires": [], + "size": 188484, + "version": "1.11.0" + }, + "conda-build-1.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "b6bbbb06eded600cbe751e1cbf39f910", + "name": "conda-build", + "requires": [], + "size": 191781, + "version": "1.12.0" + }, + "conda-build-1.12.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "6dc308f63bf8d5d3c44998943b21e00f", + "name": "conda-build", + "requires": [], + "size": 193451, + "version": "1.12.0" + }, + "conda-build-1.12.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "6083401e334f8a2b89b7e2096e33b6e7", + "name": "conda-build", + "requires": [], + "size": 193700, + "version": "1.12.0" + }, + "conda-build-1.12.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "8663f77e06e8b0d939fc54ef686d6ced", + "name": "conda-build", + "requires": [], + "size": 191440, + "version": "1.12.1" + }, + "conda-build-1.12.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "261055685324bdf00535e3b73da104fd", + "name": "conda-build", + "requires": [], + "size": 193124, + "version": "1.12.1" + }, + "conda-build-1.12.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "13569aad3b1f98f692371c96c8d25385", + "name": "conda-build", + "requires": [], + "size": 193456, + "version": "1.12.1" + }, + "conda-build-1.13.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "50100d963fe8bebbd44def3d685ddad6", + "name": "conda-build", + "requires": [], + "size": 193141, + "version": "1.13.0" + }, + "conda-build-1.13.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "3886273165ffbea0f4be0c4b0f459566", + "name": "conda-build", + "requires": [], + "size": 194684, + "version": "1.13.0" + }, + "conda-build-1.13.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "93301e14068ae879775ee0f814f3e242", + "name": "conda-build", + "requires": [], + "size": 195096, + "version": "1.13.0" + }, + "conda-build-1.14.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "863afaa30f5b3ed2cd9e02272946e2ec", + "name": "conda-build", + "requires": [], + "size": 196891, + "version": "1.14.0" + }, + "conda-build-1.14.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "512359c6b432f4d2f6327c1af1515971", + "name": "conda-build", + "requires": [], + "size": 198661, + "version": "1.14.0" + }, + "conda-build-1.14.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "a691ad2f9cfda06e5fa83d97063243f8", + "name": "conda-build", + "requires": [], + "size": 199044, + "version": "1.14.0" + }, + "conda-build-1.14.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "bf28361d57a0ce6a881ade5f3b73f30a", + "name": "conda-build", + "requires": [], + "size": 198486, + "version": "1.14.1" + }, + "conda-build-1.14.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "fe691a1c99cf54aaa95fb4d15c63d77d", + "name": "conda-build", + "requires": [], + "size": 200006, + "version": "1.14.1" + }, + "conda-build-1.14.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "a1ea4142182543e5cd02e347665ec9c0", + "name": "conda-build", + "requires": [], + "size": 200493, + "version": "1.14.1" + }, + "conda-build-1.15.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "31d93e8106d65954f5e188f2d165cc45", + "name": "conda-build", + "requires": [], + "size": 202309, + "version": "1.15.0" + }, + "conda-build-1.15.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "fabb13d69a796f818456d6c497208b74", + "name": "conda-build", + "requires": [], + "size": 204039, + "version": "1.15.0" + }, + "conda-build-1.15.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "1677073f1a61623bc4ab213d7c7a4cd9", + "name": "conda-build", + "requires": [], + "size": 204964, + "version": "1.15.0" + }, + "conda-build-1.16.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "f06050239616aa71d624b5a324b06f3c", + "name": "conda-build", + "requires": [], + "size": 202861, + "version": "1.16.0" + }, + "conda-build-1.16.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "8b4d1fa2c2dd123f760dae8cd9427c8b", + "name": "conda-build", + "requires": [], + "size": 204615, + "version": "1.16.0" + }, + "conda-build-1.16.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "a573a53f6844f2fb31317d0444795997", + "name": "conda-build", + "requires": [], + "size": 205250, + "version": "1.16.0" + }, + "conda-build-1.17.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-24", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "60f51f8f0545d725d154d844938dcf61", + "name": "conda-build", + "requires": [], + "size": 204337, + "version": "1.17.0" + }, + "conda-build-1.17.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-24", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "6454b2b899f583d29b077cf3111adcca", + "name": "conda-build", + "requires": [], + "size": 206278, + "version": "1.17.0" + }, + "conda-build-1.17.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-24", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "e9ab090054ee728bce5cd6c2f07961f1", + "name": "conda-build", + "requires": [], + "size": 206706, + "version": "1.17.0" + }, + "conda-build-1.17.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "conda", + "patchelf", + "python 3.5*" + ], + "license": "BSD", + "md5": "abeef468e987248de755ad718cfcc8e5", + "name": "conda-build", + "requires": [], + "size": 206024, + "version": "1.17.0" + }, + "conda-build-1.18.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "82eb65424630851b71a383288363bacb", + "name": "conda-build", + "requires": [], + "size": 209850, + "version": "1.18.0" + }, + "conda-build-1.18.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "d93ed801c7bc2cc4ee1dd05cde65d28e", + "name": "conda-build", + "requires": [], + "size": 211965, + "version": "1.18.0" + }, + "conda-build-1.18.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "86e2221ac7373048eac7eaea9ecfb2e0", + "name": "conda-build", + "requires": [], + "size": 212341, + "version": "1.18.0" + }, + "conda-build-1.18.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "conda", + "patchelf", + "python 3.5*" + ], + "license": "BSD", + "md5": "1df0a8ee3bb011efabfe0ebac2865cb3", + "name": "conda-build", + "requires": [], + "size": 211686, + "version": "1.18.0" + }, + "conda-build-1.18.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "058fc9ae08096e8b157fd9ec07ba9f54", + "name": "conda-build", + "requires": [], + "size": 210456, + "version": "1.18.1" + }, + "conda-build-1.18.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "7b0cf99e7cd49df7b16351f653651344", + "name": "conda-build", + "requires": [], + "size": 212291, + "version": "1.18.1" + }, + "conda-build-1.18.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "7d7f4d8b0279f8e47e1ed45f34c07624", + "name": "conda-build", + "requires": [], + "size": 212972, + "version": "1.18.1" + }, + "conda-build-1.18.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.5*" + ], + "license": "BSD", + "md5": "3d6a79585da0b8a176440d670f9e8451", + "name": "conda-build", + "requires": [], + "size": 212183, + "version": "1.18.1" + }, + "conda-build-1.18.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "bdc47c93ddaa315857b382c62850404a", + "name": "conda-build", + "requires": [], + "size": 212451, + "version": "1.18.2" + }, + "conda-build-1.18.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "523e174a6d574e123c155f8ca1c6eaa3", + "name": "conda-build", + "requires": [], + "size": 214638, + "version": "1.18.2" + }, + "conda-build-1.18.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "f1be65bb62a6416f70ad3960e377bac5", + "name": "conda-build", + "requires": [], + "size": 215132, + "version": "1.18.2" + }, + "conda-build-1.18.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.5*" + ], + "license": "BSD", + "md5": "446512613d3be8bf3bd8026bad2ac528", + "name": "conda-build", + "requires": [], + "size": 214370, + "version": "1.18.2" + }, + "conda-build-1.19.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "016aa6e758f8c1ede026f6cac97531d2", + "name": "conda-build", + "requires": [], + "size": 215673, + "version": "1.19.0" + }, + "conda-build-1.19.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "38431d89ffaeb66627765e17cf420953", + "name": "conda-build", + "requires": [], + "size": 217662, + "version": "1.19.0" + }, + "conda-build-1.19.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "e79bac7c9983e958b24b976f541edd97", + "name": "conda-build", + "requires": [], + "size": 218398, + "version": "1.19.0" + }, + "conda-build-1.19.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.5*" + ], + "license": "BSD", + "md5": "a09d507b9a6e016742c6095ec6c92851", + "name": "conda-build", + "requires": [], + "size": 217653, + "version": "1.19.0" + }, + "conda-build-1.19.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "bdb62171e366cc5d041ab95cffda380a", + "name": "conda-build", + "requires": [], + "size": 219113, + "version": "1.19.1" + }, + "conda-build-1.19.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "7f31ce0b7ab0d504223a9f6f033bf922", + "name": "conda-build", + "requires": [], + "size": 221900, + "version": "1.19.1" + }, + "conda-build-1.19.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.5*" + ], + "license": "BSD", + "md5": "af4d4e4d7774ef5b9bb7266e0241c259", + "name": "conda-build", + "requires": [], + "size": 221463, + "version": "1.19.1" + }, + "conda-build-1.19.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "9d0e9a4f0d0eb8befbf8eb7b0830d528", + "name": "conda-build", + "requires": [], + "size": 219330, + "version": "1.19.2" + }, + "conda-build-1.19.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "c2ac0933739b22a97aa8454314b05847", + "name": "conda-build", + "requires": [], + "size": 222560, + "version": "1.19.2" + }, + "conda-build-1.19.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.5*" + ], + "license": "BSD", + "md5": "5e7bbe013100f4d6e6e633a5fa94e08f", + "name": "conda-build", + "requires": [], + "size": 221771, + "version": "1.19.2" + }, + "conda-build-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 2.7*" + ], + "license": "BSD", + "md5": "06fd229c54917632a8d7b041d2c78b23", + "name": "conda-build", + "requires": [], + "size": 52829, + "version": "1.2.0" + }, + "conda-build-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 3.3*" + ], + "license": "BSD", + "md5": "c037cbaf71b1df4d17330fdbb5b3a34a", + "name": "conda-build", + "requires": [], + "size": 53455, + "version": "1.2.0" + }, + "conda-build-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 2.7*" + ], + "license": "BSD", + "md5": "207ab3c8774c319b2326506d193bf34e", + "name": "conda-build", + "requires": [], + "size": 53347, + "version": "1.2.1" + }, + "conda-build-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 3.3*" + ], + "license": "BSD", + "md5": "6e4abb2ec584a555a9433d806a3ecb02", + "name": "conda-build", + "requires": [], + "size": 53905, + "version": "1.2.1" + }, + "conda-build-1.20.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-25", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "6d7266c6e969dc38f4dba420f4511b9d", + "name": "conda-build", + "requires": [], + "size": 225409, + "version": "1.20.0" + }, + "conda-build-1.20.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-25", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "c2bd1c2fa2f9084aa7abc0bb37aa5d3f", + "name": "conda-build", + "requires": [], + "size": 228485, + "version": "1.20.0" + }, + "conda-build-1.20.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-25", + "depends": [ + "conda", + "jinja2", + "patchelf", + "python 3.5*" + ], + "license": "BSD", + "md5": "9adaf6347a0075fba8b141bc8077c867", + "name": "conda-build", + "requires": [], + "size": 227597, + "version": "1.20.0" + }, + "conda-build-1.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 2.7*" + ], + "license": "BSD", + "md5": "2baea7059afb4c62e75b39c66ddb16c2", + "name": "conda-build", + "requires": [], + "size": 66558, + "version": "1.3.0" + }, + "conda-build-1.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 3.3*" + ], + "license": "BSD", + "md5": "669d7a23ea834484d9013b05eb8d8f82", + "name": "conda-build", + "requires": [], + "size": 67467, + "version": "1.3.0" + }, + "conda-build-1.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 2.7*" + ], + "license": "BSD", + "md5": "e81972b9eaa3617763cfd3b2047e3d6e", + "name": "conda-build", + "requires": [], + "size": 74674, + "version": "1.3.1" + }, + "conda-build-1.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "python 3.3*" + ], + "license": "BSD", + "md5": "51ca7718febcb7c8dcdb42f594e5df46", + "name": "conda-build", + "requires": [], + "size": 75373, + "version": "1.3.1" + }, + "conda-build-1.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "08de1c6ff3a3fec6ef9a6b70194e4c81", + "name": "conda-build", + "requires": [], + "size": 75735, + "version": "1.3.1" + }, + "conda-build-1.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "3ede31e4302eaaf56c670d6ab4966def", + "name": "conda-build", + "requires": [], + "size": 74758, + "version": "1.3.2" + }, + "conda-build-1.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "b78e62c87923d96da3aa7c96141ac64f", + "name": "conda-build", + "requires": [], + "size": 75657, + "version": "1.3.2" + }, + "conda-build-1.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "015af478c79567bd0a24f833c0d4d88c", + "name": "conda-build", + "requires": [], + "size": 76022, + "version": "1.3.2" + }, + "conda-build-1.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "39cddfd322704398d1be0a314ea3b238", + "name": "conda-build", + "requires": [], + "size": 74591, + "version": "1.3.3" + }, + "conda-build-1.3.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "67fab4eb348f52085f8d84f6e864ea1d", + "name": "conda-build", + "requires": [], + "size": 75445, + "version": "1.3.3" + }, + "conda-build-1.3.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "7f06ad172ffe4377a64876040451510c", + "name": "conda-build", + "requires": [], + "size": 75927, + "version": "1.3.3" + }, + "conda-build-1.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "a78006aab9a7dbb9f502edfd57782c7c", + "name": "conda-build", + "requires": [], + "size": 75600, + "version": "1.3.4" + }, + "conda-build-1.3.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "450d7dc1fd3e8f01f9a10573751746ae", + "name": "conda-build", + "requires": [], + "size": 76313, + "version": "1.3.4" + }, + "conda-build-1.3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "103ac7e8e2934a8d7d01c089f9d128fb", + "name": "conda-build", + "requires": [], + "size": 76761, + "version": "1.3.4" + }, + "conda-build-1.3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "bf7a8af15c2f4f4dd4f14baa03416046", + "name": "conda-build", + "requires": [], + "size": 75654, + "version": "1.3.5" + }, + "conda-build-1.3.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "5f8490513fe30b91246a64fcb4006fb0", + "name": "conda-build", + "requires": [], + "size": 76468, + "version": "1.3.5" + }, + "conda-build-1.3.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "87de842a6e30e85109a469293e6ffec5", + "name": "conda-build", + "requires": [], + "size": 76809, + "version": "1.3.5" + }, + "conda-build-1.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "9fc5eed5d911073461152da5101deeeb", + "name": "conda-build", + "requires": [], + "size": 156210, + "version": "1.4.0" + }, + "conda-build-1.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "c0ed42476d02f3edb22357ce61d1811f", + "name": "conda-build", + "requires": [], + "size": 157064, + "version": "1.4.0" + }, + "conda-build-1.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "a520def48d1ec28bbc8a586ac2108491", + "name": "conda-build", + "requires": [], + "size": 157433, + "version": "1.4.0" + }, + "conda-build-1.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "565edf3a5570379a35d74ef2cab3bed9", + "name": "conda-build", + "requires": [], + "size": 158824, + "version": "1.5.0" + }, + "conda-build-1.5.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "821525598136a2a823420a81a58b73cd", + "name": "conda-build", + "requires": [], + "size": 159596, + "version": "1.5.0" + }, + "conda-build-1.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "823aa031e5827f8d67fdecf115b95aa9", + "name": "conda-build", + "requires": [], + "size": 160040, + "version": "1.5.0" + }, + "conda-build-1.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "47d6f150e3472bd7aa3a88cb222f3e61", + "name": "conda-build", + "requires": [], + "size": 161283, + "version": "1.6.0" + }, + "conda-build-1.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "3052169b900555b7f46dfc113eeac9cd", + "name": "conda-build", + "requires": [], + "size": 162235, + "version": "1.6.0" + }, + "conda-build-1.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "df476515239a6f38bec42f65feb74c19", + "name": "conda-build", + "requires": [], + "size": 162461, + "version": "1.6.0" + }, + "conda-build-1.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "47237416840409dfbb49b7462ee595ed", + "name": "conda-build", + "requires": [], + "size": 161269, + "version": "1.6.1" + }, + "conda-build-1.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "495bac5f2bb3be901e6c9ee70056cfe6", + "name": "conda-build", + "requires": [], + "size": 162260, + "version": "1.6.1" + }, + "conda-build-1.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "0240297c4c39ebfb1e0c6fe3117d97b7", + "name": "conda-build", + "requires": [], + "size": 162494, + "version": "1.6.1" + }, + "conda-build-1.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "72a7cb671bf15a9d04f9247c477ebbab", + "name": "conda-build", + "requires": [], + "size": 161513, + "version": "1.7.0" + }, + "conda-build-1.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "5eaeee66a10f1af00ebe1b5a0ba9b70a", + "name": "conda-build", + "requires": [], + "size": 162323, + "version": "1.7.0" + }, + "conda-build-1.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "6af6e96160ed2b62b23e1cc2afdf3bf6", + "name": "conda-build", + "requires": [], + "size": 162786, + "version": "1.7.0" + }, + "conda-build-1.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "2f2123733613f992dcafff16c292ca4d", + "name": "conda-build", + "requires": [], + "size": 162817, + "version": "1.7.1" + }, + "conda-build-1.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "9c210708b1534cd6534ee3a847188d58", + "name": "conda-build", + "requires": [], + "size": 163776, + "version": "1.7.1" + }, + "conda-build-1.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "d45f68ffd1e36fcf6717fb2b1ddce658", + "name": "conda-build", + "requires": [], + "size": 164259, + "version": "1.7.1" + }, + "conda-build-1.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "01faf54ef73384cf0e40f70698d9620e", + "name": "conda-build", + "requires": [], + "size": 165481, + "version": "1.8.0" + }, + "conda-build-1.8.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "13a58ed4a403d91e280938d69b89d2fa", + "name": "conda-build", + "requires": [], + "size": 166627, + "version": "1.8.0" + }, + "conda-build-1.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "426e7a89a20284bf74cd58f0836c464a", + "name": "conda-build", + "requires": [], + "size": 166950, + "version": "1.8.0" + }, + "conda-build-1.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "5f9248f0779fc716d6ee66797edec657", + "name": "conda-build", + "requires": [], + "size": 166104, + "version": "1.8.1" + }, + "conda-build-1.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "9343e13786f18ed7d9f0aba4e9090779", + "name": "conda-build", + "requires": [], + "size": 166986, + "version": "1.8.1" + }, + "conda-build-1.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "71476d47defd6b429a591a9aeab090d0", + "name": "conda-build", + "requires": [], + "size": 167568, + "version": "1.8.1" + }, + "conda-build-1.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "264b84d6fe9c7f1d2cfa439f15f796e4", + "name": "conda-build", + "requires": [], + "size": 166024, + "version": "1.8.2" + }, + "conda-build-1.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "a4d2fee5257411a26cb597041317fd1c", + "name": "conda-build", + "requires": [], + "size": 167154, + "version": "1.8.2" + }, + "conda-build-1.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "b9e33cbef683e60a6cc3ac7f06b4eb78", + "name": "conda-build", + "requires": [], + "size": 167703, + "version": "1.8.2" + }, + "conda-build-1.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-22", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "d9d84841d38f7cb62de30f299582e7af", + "name": "conda-build", + "requires": [], + "size": 168371, + "version": "1.9.0" + }, + "conda-build-1.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-22", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "53a7c2385ceb474bf081d0d981fea5c7", + "name": "conda-build", + "requires": [], + "size": 169390, + "version": "1.9.0" + }, + "conda-build-1.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-22", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "8e78035d7ed8e2fb811eb5dff094b404", + "name": "conda-build", + "requires": [], + "size": 170013, + "version": "1.9.0" + }, + "conda-build-1.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "conda", + "patchelf", + "python 2.7*" + ], + "license": "BSD", + "md5": "647450809fafc393b0474a7acc83eeed", + "name": "conda-build", + "requires": [], + "size": 169324, + "version": "1.9.1" + }, + "conda-build-1.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "conda", + "patchelf", + "python 3.3*" + ], + "license": "BSD", + "md5": "2811ff059b9b034265df680615254780", + "name": "conda-build", + "requires": [], + "size": 170445, + "version": "1.9.1" + }, + "conda-build-1.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "conda", + "patchelf", + "python 3.4*" + ], + "license": "BSD", + "md5": "7a0b49af46cd7cf013f5ac1c86874b23", + "name": "conda-build", + "requires": [], + "size": 171006, + "version": "1.9.1" + }, + "conda-env-2.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "acaba012a5d82140eee3eb7654ac3097", + "name": "conda-env", + "requires": [], + "size": 15070, + "version": "2.0.0" + }, + "conda-env-2.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "2f52793f262cd6b73ac2b9c68698382b", + "name": "conda-env", + "requires": [], + "size": 15487, + "version": "2.0.0" + }, + "conda-env-2.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ef396e51411676a8da83073a54eb64bd", + "name": "conda-env", + "requires": [], + "size": 15480, + "version": "2.0.0" + }, + "conda-env-2.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-27", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "fa87d3bd428bd855fc80a56f1e0f2d0b", + "name": "conda-env", + "requires": [], + "size": 14989, + "version": "2.0.1" + }, + "conda-env-2.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-27", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7d170a2865493a7f19c09e2143ce7d86", + "name": "conda-env", + "requires": [], + "size": 15351, + "version": "2.0.1" + }, + "conda-env-2.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-27", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "d2413caa6ecc02d2ddcc544f0ce8a277", + "name": "conda-env", + "requires": [], + "size": 15370, + "version": "2.0.1" + }, + "conda-env-2.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2878a4a1ad47d7f49ea042ab220fe9f1", + "name": "conda-env", + "requires": [], + "size": 14948, + "version": "2.0.2" + }, + "conda-env-2.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "736778535db8a905ca4cbaab9c6aa025", + "name": "conda-env", + "requires": [], + "size": 15350, + "version": "2.0.2" + }, + "conda-env-2.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f6f446a674f6868b9b5fdf72b9ed1efc", + "name": "conda-env", + "requires": [], + "size": 15382, + "version": "2.0.2" + }, + "conda-env-2.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-06", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "9ff817f8d5d3f7377f8043367400184b", + "name": "conda-env", + "requires": [], + "size": 14763, + "version": "2.1.0" + }, + "conda-env-2.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-06", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "cb79cfa8a73dae613c7d5772467f482f", + "name": "conda-env", + "requires": [], + "size": 15166, + "version": "2.1.0" + }, + "conda-env-2.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-06", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e7239e650e65f334f0b53b3fbb358fff", + "name": "conda-env", + "requires": [], + "size": 15180, + "version": "2.1.0" + }, + "conda-env-2.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "611b47695fd7257c37a282d54055fac6", + "name": "conda-env", + "requires": [], + "size": 15191, + "version": "2.1.1" + }, + "conda-env-2.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d1fbdbde8e5bb0a2bbe38ee6ac9c3127", + "name": "conda-env", + "requires": [], + "size": 15586, + "version": "2.1.1" + }, + "conda-env-2.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "73305064a33a0cf6f6e8c7b2951dc7f1", + "name": "conda-env", + "requires": [], + "size": 15571, + "version": "2.1.1" + }, + "conda-env-2.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-13", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "84243146697a9f93223153396bcce8c1", + "name": "conda-env", + "requires": [], + "size": 15414, + "version": "2.1.2" + }, + "conda-env-2.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-13", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "b9c649e72766fbfc462f969112b9fad0", + "name": "conda-env", + "requires": [], + "size": 15814, + "version": "2.1.2" + }, + "conda-env-2.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-13", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "9b93fd5560986e45e4ae347495f1da7b", + "name": "conda-env", + "requires": [], + "size": 15800, + "version": "2.1.2" + }, + "conda-env-2.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2fbc6a138470b9c0482cbb9a3f361558", + "name": "conda-env", + "requires": [], + "size": 15408, + "version": "2.1.3" + }, + "conda-env-2.1.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "48713f437f9627125b2cdd62fb49a672", + "name": "conda-env", + "requires": [], + "size": 15765, + "version": "2.1.3" + }, + "conda-env-2.1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "609d42324af03f3b449c8a7a678d7baa", + "name": "conda-env", + "requires": [], + "size": 15788, + "version": "2.1.3" + }, + "conda-env-2.1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b7ae82a2f3ffd6b2b715367a5ecb6219", + "name": "conda-env", + "requires": [], + "size": 15395, + "version": "2.1.4" + }, + "conda-env-2.1.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d3c0fb9cf9bc2707e1bd2a4cc5dd5f21", + "name": "conda-env", + "requires": [], + "size": 15799, + "version": "2.1.4" + }, + "conda-env-2.1.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "aa29273dbb1efd35ca821dc25aad2350", + "name": "conda-env", + "requires": [], + "size": 15787, + "version": "2.1.4" + }, + "conda-env-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "aa0429ab3ee0ca59cea2527ceac5ec74", + "name": "conda-env", + "requires": [], + "size": 21475, + "version": "2.2.0" + }, + "conda-env-2.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "cc30b05738b01b1c0d494debef46d8a9", + "name": "conda-env", + "requires": [], + "size": 21969, + "version": "2.2.0" + }, + "conda-env-2.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "43722b2329932a4802b45a238ff4700c", + "name": "conda-env", + "requires": [], + "size": 21926, + "version": "2.2.0" + }, + "conda-env-2.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-08", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "9d778daa2bb46afed676e8df59b803d1", + "name": "conda-env", + "requires": [], + "size": 21480, + "version": "2.2.1" + }, + "conda-env-2.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-08", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "4229798d9df3157e64881dc5560d5b56", + "name": "conda-env", + "requires": [], + "size": 22225, + "version": "2.2.1" + }, + "conda-env-2.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-08", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "93ea9043145a8230d52316831e847b26", + "name": "conda-env", + "requires": [], + "size": 22086, + "version": "2.2.1" + }, + "conda-env-2.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ea46e76b00c52df75aeb1589f2a2eaea", + "name": "conda-env", + "requires": [], + "size": 21502, + "version": "2.2.2" + }, + "conda-env-2.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "0a8f7a4a1a75d5e3754e3f796cf4a28f", + "name": "conda-env", + "requires": [], + "size": 22211, + "version": "2.2.2" + }, + "conda-env-2.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ea0a5feba4e48089e7654822a1f66786", + "name": "conda-env", + "requires": [], + "size": 22144, + "version": "2.2.2" + }, + "conda-env-2.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-20", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3291277b3b38e917b7724a29d265e5a6", + "name": "conda-env", + "requires": [], + "size": 21440, + "version": "2.2.3" + }, + "conda-env-2.2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-20", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "6fc00b4ca23a407330b0b5f74c7370e4", + "name": "conda-env", + "requires": [], + "size": 22278, + "version": "2.2.3" + }, + "conda-env-2.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-20", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a89a3a83a360220be6f480e88cbf43c7", + "name": "conda-env", + "requires": [], + "size": 22188, + "version": "2.2.3" + }, + "conda-env-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bd074012f8c140624b3ba084bc0728fd", + "name": "conda-env", + "requires": [], + "size": 23483, + "version": "2.3.0" + }, + "conda-env-2.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "80e38c67f980115985e863be04c0b788", + "name": "conda-env", + "requires": [], + "size": 24314, + "version": "2.3.0" + }, + "conda-env-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "378c2294605941f2b4c0978629d7ba70", + "name": "conda-env", + "requires": [], + "size": 24199, + "version": "2.3.0" + }, + "conda-env-2.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-11", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "efd0351783bd303fe0d719f310bf8de5", + "name": "conda-env", + "requires": [], + "size": 24163, + "version": "2.4.0" + }, + "conda-env-2.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-11", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3d85a1dd2031198bcba62636f391d3d7", + "name": "conda-env", + "requires": [], + "size": 25039, + "version": "2.4.0" + }, + "conda-env-2.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-11", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "d644e664871f12fd529d2e8de5490c8a", + "name": "conda-env", + "requires": [], + "size": 24921, + "version": "2.4.0" + }, + "conda-env-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f041a901a887d1a1300d43d502343727", + "name": "conda-env", + "requires": [], + "size": 24179, + "version": "2.4.1" + }, + "conda-env-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "98a35a1bf221f00da698664fbb8ecf11", + "name": "conda-env", + "requires": [], + "size": 25014, + "version": "2.4.1" + }, + "conda-env-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b9fce323a52a1b3cbc13770e731027e6", + "name": "conda-env", + "requires": [], + "size": 24925, + "version": "2.4.1" + }, + "conda-env-2.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "5003906de94b4051f08be150794cb00e", + "name": "conda-env", + "requires": [], + "size": 24235, + "version": "2.4.2" + }, + "conda-env-2.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "2a193f2dc12a8996496909373d362156", + "name": "conda-env", + "requires": [], + "size": 25038, + "version": "2.4.2" + }, + "conda-env-2.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "52e3223a934ae39f77db9307c0507274", + "name": "conda-env", + "requires": [], + "size": 24977, + "version": "2.4.2" + }, + "conda-env-2.4.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "f1c9835c772751cc07c9eb89150c8549", + "name": "conda-env", + "requires": [], + "size": 24912, + "version": "2.4.2" + }, + "conda-env-2.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-26", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "88b20fff759de6d244d9c2f4e4fd217e", + "name": "conda-env", + "requires": [], + "size": 24173, + "version": "2.4.4" + }, + "conda-env-2.4.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-26", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "6ae00c03dc22b65f1306ddfb5f5b3640", + "name": "conda-env", + "requires": [], + "size": 25001, + "version": "2.4.4" + }, + "conda-env-2.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-26", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "40f1599e6bc9b8baa2cc421ba1ca2303", + "name": "conda-env", + "requires": [], + "size": 24923, + "version": "2.4.4" + }, + "conda-env-2.4.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-26", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "5edcf0329ab0ba0b128d6d0d7bd07619", + "name": "conda-env", + "requires": [], + "size": 24877, + "version": "2.4.4" + }, + "conda-env-2.4.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "1f5a0997012ecd067cd372bab2a38d3c", + "name": "conda-env", + "requires": [], + "size": 24759, + "version": "2.4.5" + }, + "conda-env-2.4.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "86d4ea78d5e9b92a20392dfee44a8088", + "name": "conda-env", + "requires": [], + "size": 25661, + "version": "2.4.5" + }, + "conda-env-2.4.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "991b43350eb34ec001ac469ece55214a", + "name": "conda-env", + "requires": [], + "size": 25561, + "version": "2.4.5" + }, + "conda-env-2.4.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-08", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "a5300cb4a0a4ec8d3276a5f7e9261f0c", + "name": "conda-env", + "requires": [], + "size": 25484, + "version": "2.4.5" + }, + "conda-manager-0.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "anaconda-client", + "pip", + "python 2.7*", + "pyyaml", + "qtawesome", + "qtpy", + "requests" + ], + "license": "MIT", + "md5": "e0207847e9bd74467f458b08bb28f7eb", + "name": "conda-manager", + "requires": [], + "size": 135665, + "version": "0.3.1" + }, + "conda-manager-0.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "anaconda-client", + "pip", + "python 3.4*", + "pyyaml", + "qtawesome", + "qtpy", + "requests" + ], + "license": "MIT", + "md5": "d8f35b12e34916e56887362775d2e7b0", + "name": "conda-manager", + "requires": [], + "size": 138936, + "version": "0.3.1" + }, + "conda-manager-0.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "anaconda-client", + "pip", + "python 3.5*", + "pyyaml", + "qtawesome", + "qtpy", + "requests" + ], + "license": "MIT", + "md5": "ee415a99d70f8ccba1ba1d5b8d6451bf", + "name": "conda-manager", + "requires": [], + "size": 138491, + "version": "0.3.1" + }, + "conda-server-0.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "clyent", + "pillow", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "a3c437cc116ec7026b405dd821099515", + "name": "conda-server", + "requires": [], + "size": 91486, + "version": "0.12.0" + }, + "conda-server-0.12.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "clyent", + "pillow", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "abc1a756e836e691c5428df86031ebde", + "name": "conda-server", + "requires": [], + "size": 93307, + "version": "0.12.0" + }, + "conda-server-0.12.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "clyent", + "pillow", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "11272ac09c8df47dc5e51cf42b9b5407", + "name": "conda-server", + "requires": [], + "size": 93231, + "version": "0.12.0" + }, + "conda-server-0.14.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-07-30", + "depends": [], + "license": "BSD", + "md5": "098b847d4c063036c16afa122219e74c", + "name": "conda-server", + "requires": [], + "size": 647, + "version": "0.14.0" + }, + "conda-server-0.14.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-24", + "depends": [ + "clyent", + "pillow", + "python 2.7*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "d6bd105304d4e7f1021c532294693e2e", + "name": "conda-server", + "requires": [], + "size": 91653, + "version": "0.14.0" + }, + "conda-server-0.14.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-24", + "depends": [ + "clyent", + "pillow", + "python 3.3*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "cab3863671fdbcbc90ffa31528044a07", + "name": "conda-server", + "requires": [], + "size": 93386, + "version": "0.14.0" + }, + "conda-server-0.14.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-24", + "depends": [ + "clyent", + "pillow", + "python 3.4*", + "python-dateutil", + "pytz", + "pyyaml", + "requests", + "setuptools" + ], + "license": "BSD", + "md5": "9104614c34b10000c0d4bd1ef0899917", + "name": "conda-server", + "requires": [], + "size": 93408, + "version": "0.14.0" + }, + "configobj-4.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "bd9b17dc90d25d46f04ef6637f8a026a", + "name": "configobj", + "requires": [], + "size": 48956, + "version": "4.7.2" + }, + "configobj-4.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "50e40cea450325eee2748c0044462b0c", + "name": "configobj", + "requires": [], + "size": 49057, + "version": "4.7.2" + }, + "configobj-5.0.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "f1fc97bc400754f5af68566e4fd74b94", + "name": "configobj", + "requires": [], + "size": 50687, + "version": "5.0.4" + }, + "configobj-5.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "ce20605d8308e3640acc2f9e817a9c81", + "name": "configobj", + "requires": [], + "size": 50782, + "version": "5.0.4" + }, + "configobj-5.0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "59eed00388777f4c3fe00454c3139661", + "name": "configobj", + "requires": [], + "size": 52171, + "version": "5.0.4" + }, + "configobj-5.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "7a0a21528ce422105fd5481d54c63575", + "name": "configobj", + "requires": [], + "size": 52234, + "version": "5.0.4" + }, + "configobj-5.0.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "c08c6cc73a8686e4fe499c86951c620f", + "name": "configobj", + "requires": [], + "size": 50756, + "version": "5.0.5" + }, + "configobj-5.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "5eaab6a9455d4022e1031193ed887917", + "name": "configobj", + "requires": [], + "size": 50778, + "version": "5.0.5" + }, + "configobj-5.0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "40c02fde32e7fc2cd6b065eb869ab550", + "name": "configobj", + "requires": [], + "size": 52321, + "version": "5.0.5" + }, + "configobj-5.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "dede71508602efc96d3ba8d3bcf04232", + "name": "configobj", + "requires": [], + "size": 52311, + "version": "5.0.5" + }, + "configobj-5.0.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "d0c528a10a31456b9c9d9216de5c50ac", + "name": "configobj", + "requires": [], + "size": 50775, + "version": "5.0.6" + }, + "configobj-5.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "058ebcb6414921a0d67a4914356768ec", + "name": "configobj", + "requires": [], + "size": 50956, + "version": "5.0.6" + }, + "configobj-5.0.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "55c587bd534b789d028e48d7e7564909", + "name": "configobj", + "requires": [], + "size": 52273, + "version": "5.0.6" + }, + "configobj-5.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "068fa81200e44c67630f90a67a07aa3b", + "name": "configobj", + "requires": [], + "size": 52347, + "version": "5.0.6" + }, + "configobj-5.0.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "b70b1606ca6130b545ec57524ec67bdd", + "name": "configobj", + "requires": [], + "size": 51748, + "version": "5.0.6" + }, + "constructor-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "conda", + "python 2.7*" + ], + "license": "BSD", + "md5": "55d40bbfd69383eda5c9fddcafd3a0ca", + "name": "constructor", + "requires": [], + "size": 26123, + "version": "1.0.0" + }, + "constructor-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "conda", + "python 3.4*" + ], + "license": "BSD", + "md5": "b4ee166c667ff46dbe002e4c5f7fcce9", + "name": "constructor", + "requires": [], + "size": 26483, + "version": "1.0.0" + }, + "constructor-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "conda", + "python 3.5*" + ], + "license": "BSD", + "md5": "c22f780f309a158ce7ccf8331d627d72", + "name": "constructor", + "requires": [], + "size": 26359, + "version": "1.0.0" + }, + "constructor-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "conda", + "python 2.7*" + ], + "license": "BSD", + "md5": "861a46712d91612804546c40485ffb71", + "name": "constructor", + "requires": [], + "size": 26523, + "version": "1.1.0" + }, + "constructor-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "conda", + "python 3.4*" + ], + "license": "BSD", + "md5": "63e9b2b98b9f7f5d1e744626aa1ea454", + "name": "constructor", + "requires": [], + "size": 26863, + "version": "1.1.0" + }, + "constructor-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "conda", + "python 3.5*" + ], + "license": "BSD", + "md5": "7a61ea299d8fc594948ce62deaaa338f", + "name": "constructor", + "requires": [], + "size": 26723, + "version": "1.1.0" + }, + "contextlib2-0.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "abb87c340e9da1336dd9ffdbd5446a51", + "name": "contextlib2", + "requires": [], + "size": 5834, + "version": "0.4.0" + }, + "contextlib2-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "54e34826315e0b691c0ec2bb61f91f1e", + "name": "contextlib2", + "requires": [], + "size": 5784, + "version": "0.4.0" + }, + "contextlib2-0.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.3*" + ], + "license": "PSF", + "md5": "62412b63b404d0486c43e538acdb06b6", + "name": "contextlib2", + "requires": [], + "size": 6117, + "version": "0.4.0" + }, + "contextlib2-0.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.4*" + ], + "license": "PSF", + "md5": "c9bec5692de11fe4310972f2520a1888", + "name": "contextlib2", + "requires": [], + "size": 6038, + "version": "0.4.0" + }, + "contextlib2-0.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "PSF", + "md5": "ab401e3eb654ad4c74982c011e7f791d", + "name": "contextlib2", + "requires": [], + "size": 6023, + "version": "0.4.0" + }, + "cornice-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "colander", + "pyramid", + "python 2.7*", + "simplejson", + "venusian", + "webob" + ], + "license": "MPL 2.0", + "license_family": "Other", + "md5": "e9ac7e256b849ec1585755b98af43943", + "name": "cornice", + "requires": [], + "size": 76931, + "version": "1.1.0" + }, + "cornice-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "colander", + "pyramid", + "python 3.4*", + "simplejson", + "venusian", + "webob" + ], + "license": "MPL 2.0", + "license_family": "Other", + "md5": "90a3ddfc2b6ec2a62902d2a1d4bdc674", + "name": "cornice", + "requires": [], + "size": 80060, + "version": "1.1.0" + }, + "cornice-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "colander", + "pyramid", + "python 3.5*", + "simplejson", + "venusian", + "webob" + ], + "license": "MPL 2.0", + "license_family": "Other", + "md5": "47f8dedd4f423401bf81a8e2cac684a5", + "name": "cornice", + "requires": [], + "size": 79608, + "version": "1.1.0" + }, + "cornice-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "colander", + "pyramid", + "python 2.7*", + "simplejson", + "venusian", + "webob" + ], + "license": "MPL 2.0", + "license_family": "Other", + "md5": "a03d55166f6fb24740851d63334bf546", + "name": "cornice", + "requires": [], + "size": 82674, + "version": "1.2.0" + }, + "cornice-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "colander", + "pyramid", + "python 3.4*", + "simplejson", + "venusian", + "webob" + ], + "license": "MPL 2.0", + "license_family": "Other", + "md5": "e692fd5e52f55c25e82cf9bd65fa9aa8", + "name": "cornice", + "requires": [], + "size": 85798, + "version": "1.2.0" + }, + "cornice-1.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "colander", + "pyramid", + "python 3.5*", + "simplejson", + "venusian", + "webob" + ], + "license": "MPL 2.0", + "license_family": "Other", + "md5": "cc510c2b8112a38b12efcbe8e132eb30", + "name": "cornice", + "requires": [], + "size": 85427, + "version": "1.2.0" + }, + "coverage-3.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "e43154013f14166340c960a9dd3206c9", + "name": "coverage", + "requires": [], + "size": 143339, + "version": "3.7.1" + }, + "coverage-3.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2d4c84bf1989be094dc193ed7bee77a8", + "name": "coverage", + "requires": [], + "size": 143394, + "version": "3.7.1" + }, + "coverage-3.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "2e0f017cc983ad7966943225b2ef6090", + "name": "coverage", + "requires": [], + "size": 146186, + "version": "3.7.1" + }, + "coverage-3.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "84ce49d200f8a02ab628747e4c77e8a2", + "name": "coverage", + "requires": [], + "size": 146356, + "version": "3.7.1" + }, + "coverage-3.7.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "4dad952b222b88c794f14e6c8d98d5c0", + "name": "coverage", + "requires": [], + "size": 147921, + "version": "3.7.1" + }, + "coverage-4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e73e370d1323258cd0759ba29c97b384", + "name": "coverage", + "requires": [], + "size": 198413, + "version": "4.0" + }, + "coverage-4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "9872748eb694c61cd3341d616dd1acda", + "name": "coverage", + "requires": [], + "size": 203136, + "version": "4.0" + }, + "coverage-4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "561f7e961750dfcc0bc0ba1628605d63", + "name": "coverage", + "requires": [], + "size": 203045, + "version": "4.0" + }, + "coverage-4.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bc0a0e07eb7992d9e2013796c4f6f7f1", + "name": "coverage", + "requires": [], + "size": 206543, + "version": "4.0.3" + }, + "coverage-4.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8ecf5dca73d9958c6653422e57113e2f", + "name": "coverage", + "requires": [], + "size": 210951, + "version": "4.0.3" + }, + "coverage-4.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "409da92edb8513abf30967bb435cc9fa", + "name": "coverage", + "requires": [], + "size": 210807, + "version": "4.0.3" + }, + "cryptacular-1.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-06", + "depends": [ + "pbkdf2 1.3", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "2ed2c6b2c048ca6c50b4cf55f4e91119", + "name": "cryptacular", + "requires": [], + "size": 50893, + "version": "1.4.1" + }, + "cryptacular-1.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-06", + "depends": [ + "pbkdf2 1.3", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "4d74df05255fdd5101926e37dc6c6525", + "name": "cryptacular", + "requires": [], + "size": 51732, + "version": "1.4.1" + }, + "cryptacular-1.4.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pbkdf2 1.3", + "python 3.5*", + "setuptools" + ], + "license": "MIT", + "md5": "111f0f70428f983b1be6ed9a778dae69", + "name": "cryptacular", + "requires": [], + "size": 51840, + "version": "1.4.1" + }, + "cryptography-0.5.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cffi", + "python 2.6*", + "six" + ], + "license": "Apache", + "md5": "06265851fd3e1197751680d6a1709bfd", + "name": "cryptography", + "requires": [], + "size": 601715, + "version": "0.5.3" + }, + "cryptography-0.5.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cffi", + "python 2.7*", + "six" + ], + "license": "Apache", + "md5": "1503a0c98673467cf5089ef516530c92", + "name": "cryptography", + "requires": [], + "size": 605356, + "version": "0.5.3" + }, + "cryptography-0.5.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cffi", + "python 3.3*", + "six" + ], + "license": "Apache", + "md5": "c82f96b6c1cc969aa8adad7344f6401f", + "name": "cryptography", + "requires": [], + "size": 609258, + "version": "0.5.3" + }, + "cryptography-0.5.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cffi", + "python 3.4*", + "six" + ], + "license": "Apache", + "md5": "cb845f39ed60fe9324fc2a43dd2b022a", + "name": "cryptography", + "requires": [], + "size": 616943, + "version": "0.5.3" + }, + "cryptography-0.5.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cffi", + "python 2.6*", + "six" + ], + "license": "Apache", + "md5": "c87dd9be684665fb8206454f2e02aee2", + "name": "cryptography", + "requires": [], + "size": 620580, + "version": "0.5.4" + }, + "cryptography-0.5.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cffi", + "python 2.7*", + "six" + ], + "license": "Apache", + "md5": "d0605d878a1fc7941a795b60411dd13a", + "name": "cryptography", + "requires": [], + "size": 619443, + "version": "0.5.4" + }, + "cryptography-0.5.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cffi", + "python 3.3*", + "six" + ], + "license": "Apache", + "md5": "584aeb3a448847f6b1e9028c80e6959c", + "name": "cryptography", + "requires": [], + "size": 624936, + "version": "0.5.4" + }, + "cryptography-0.5.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cffi", + "python 3.4*", + "six" + ], + "license": "Apache", + "md5": "094b87bde9a9f7be4ebad9f53f62d96f", + "name": "cryptography", + "requires": [], + "size": 638293, + "version": "0.5.4" + }, + "cryptography-0.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 2.6*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "650eecc91dc0821608a00c8b05041b4b", + "name": "cryptography", + "requires": [], + "size": 720594, + "version": "0.8" + }, + "cryptography-0.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "513c42350dba11a57363ca9ccf1f5900", + "name": "cryptography", + "requires": [], + "size": 721336, + "version": "0.8" + }, + "cryptography-0.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 3.3*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "f845e4343ae597edc62f2b5752500aed", + "name": "cryptography", + "requires": [], + "size": 726244, + "version": "0.8" + }, + "cryptography-0.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "cffi", + "pyasn1 0.1.7", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "75351af7ad0690e804efc27dbac54cda", + "name": "cryptography", + "requires": [], + "size": 747618, + "version": "0.8" + }, + "cryptography-0.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 2.6*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "fd99d251bd97219b9f62f8d6f074b416", + "name": "cryptography", + "requires": [], + "size": 720880, + "version": "0.8.1" + }, + "cryptography-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "966595b72eee044075a6c8a3971e1258", + "name": "cryptography", + "requires": [], + "size": 721224, + "version": "0.8.1" + }, + "cryptography-0.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 3.3*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "1e261be0149161b89db25339c3d17924", + "name": "cryptography", + "requires": [], + "size": 726380, + "version": "0.8.1" + }, + "cryptography-0.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "cffi", + "pyasn1 0.1.7", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "391f5a2db8dba141a907c6d95d7ff4c6", + "name": "cryptography", + "requires": [], + "size": 747339, + "version": "0.8.1" + }, + "cryptography-0.8.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 2.6*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "fd6659b680c66a018326c239743f870c", + "name": "cryptography", + "requires": [], + "size": 720675, + "version": "0.8.2" + }, + "cryptography-0.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "612b7df8a8fc2bed7ca99fb39cb55bee", + "name": "cryptography", + "requires": [], + "size": 721343, + "version": "0.8.2" + }, + "cryptography-0.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "cffi", + "enum34", + "pyasn1 0.1.7", + "python 3.3*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "0545ac0453df156e86d531d112ef1b34", + "name": "cryptography", + "requires": [], + "size": 726225, + "version": "0.8.2" + }, + "cryptography-0.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "cffi", + "pyasn1 0.1.7", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "5c700d13dfab27e27fbc16d0f8e55cac", + "name": "cryptography", + "requires": [], + "size": 747533, + "version": "0.8.2" + }, + "cryptography-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.7", + "pyasn1 0.1.7", + "python 2.6*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "ab2444953465249636e047a354c22e7d", + "name": "cryptography", + "requires": [], + "size": 777592, + "version": "0.9.1" + }, + "cryptography-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.7", + "pyasn1 0.1.7", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "3ad75990b4e3491897171981de9a5de8", + "name": "cryptography", + "requires": [], + "size": 778031, + "version": "0.9.1" + }, + "cryptography-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "pyasn1 0.1.7", + "python 3.3*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "e1b7000da87e07484250f59456e2e406", + "name": "cryptography", + "requires": [], + "size": 782484, + "version": "0.9.1" + }, + "cryptography-0.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.7", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "65ab09054ca71762c79152b41a08ad0f", + "name": "cryptography", + "requires": [], + "size": 805979, + "version": "0.9.1" + }, + "cryptography-0.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.7", + "pyasn1 0.1.7", + "python 2.6*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "52804f2e7f1c1d0070ca3511f1f3bfb9", + "name": "cryptography", + "requires": [], + "size": 777697, + "version": "0.9.2" + }, + "cryptography-0.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.7", + "pyasn1 0.1.7", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "af3ea38d68d6eaf65d191d20f2c50685", + "name": "cryptography", + "requires": [], + "size": 777587, + "version": "0.9.2" + }, + "cryptography-0.9.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "pyasn1 0.1.7", + "python 3.3*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "02fc722eb0ea66eb1d71c44aae271617", + "name": "cryptography", + "requires": [], + "size": 782620, + "version": "0.9.2" + }, + "cryptography-0.9.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.7", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "df1e9c051ef782e53d3b5e388712dc7a", + "name": "cryptography", + "requires": [], + "size": 806049, + "version": "0.9.2" + }, + "cryptography-0.9.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.7", + "pyasn1 0.1.7", + "python 2.6*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "caace55736f58a402a415abb7e6d86e3", + "name": "cryptography", + "requires": [], + "size": 777733, + "version": "0.9.3" + }, + "cryptography-0.9.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.7", + "pyasn1 0.1.7", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "ff71998835dcf0bbb666db939bd4e266", + "name": "cryptography", + "requires": [], + "size": 778234, + "version": "0.9.3" + }, + "cryptography-0.9.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "pyasn1 0.1.7", + "python 3.3*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "d47cae41c0187c81c531dcb6346747f6", + "name": "cryptography", + "requires": [], + "size": 782420, + "version": "0.9.3" + }, + "cryptography-0.9.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.7", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "0b46cb05e040032fe10fb7b413b51ac3", + "name": "cryptography", + "requires": [], + "size": 806194, + "version": "0.9.3" + }, + "cryptography-0.9.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.7", + "python 3.5*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "b01a39e5f5e98c03f6e68c153979f610", + "name": "cryptography", + "requires": [], + "size": 806563, + "version": "0.9.3" + }, + "cryptography-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.14", + "pyasn1 0.1.9", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "1c4529e4ab79bb70151bf721bf912753", + "name": "cryptography", + "requires": [], + "size": 839764, + "version": "1.0.1" + }, + "cryptography-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.9", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "6f59122a786cedd025b66726f1957ac9", + "name": "cryptography", + "requires": [], + "size": 845231, + "version": "1.0.1" + }, + "cryptography-1.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.9", + "python 3.5*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "1f623176070ef3764db1f8815b235809", + "name": "cryptography", + "requires": [], + "size": 845734, + "version": "1.0.1" + }, + "cryptography-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-27", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.14", + "pyasn1 0.1.9", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "2bc942cff0a09c636a20722c57dabedf", + "name": "cryptography", + "requires": [], + "size": 839317, + "version": "1.0.2" + }, + "cryptography-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-27", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.9", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "1fc7228789944a53aa97ead3a3a15632", + "name": "cryptography", + "requires": [], + "size": 844893, + "version": "1.0.2" + }, + "cryptography-1.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-27", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.9", + "python 3.5*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "003c012e370a42912d25e5d346f3baf1", + "name": "cryptography", + "requires": [], + "size": 845517, + "version": "1.0.2" + }, + "cryptography-1.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.14", + "pyasn1 0.1.9", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "78493a2d615452a9421de68594e3df9a", + "name": "cryptography", + "requires": [], + "size": 876033, + "version": "1.2.3" + }, + "cryptography-1.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.9", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "4d7794fa34b942528893974373c8efef", + "name": "cryptography", + "requires": [], + "size": 881203, + "version": "1.2.3" + }, + "cryptography-1.2.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-10", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.9", + "python 3.5*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "d910845cce8723a084cefd2b97471517", + "name": "cryptography", + "requires": [], + "size": 881701, + "version": "1.2.3" + }, + "cryptography-1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "cffi", + "enum34", + "idna 2.0", + "ipaddress 1.0.14", + "pyasn1 0.1.9", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "bb6bac4220c6a0adde4b2d1d1c5f9099", + "name": "cryptography", + "requires": [], + "size": 893738, + "version": "1.3" + }, + "cryptography-1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.9", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "491644390d5d9e5fe91426fd131d264f", + "name": "cryptography", + "requires": [], + "size": 897585, + "version": "1.3" + }, + "cryptography-1.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "cffi", + "idna 2.0", + "pyasn1 0.1.9", + "python 3.5*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "28f70296ee6792fc1d465b910483bf4a", + "name": "cryptography", + "requires": [], + "size": 897945, + "version": "1.3" + }, + "cryptography-1.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "cffi", + "enum34", + "idna 2.1", + "ipaddress 1.0.14", + "pyasn1 0.1.9", + "python 2.7*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "bcc6dfbcbc1e9edd5fa7528db3f34d1d", + "name": "cryptography", + "requires": [], + "size": 894313, + "version": "1.3.1" + }, + "cryptography-1.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "cffi", + "idna 2.1", + "pyasn1 0.1.9", + "python 3.4*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "1a225e2f131456eabfedaaf0723ae751", + "name": "cryptography", + "requires": [], + "size": 899075, + "version": "1.3.1" + }, + "cryptography-1.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "cffi", + "idna 2.1", + "pyasn1 0.1.9", + "python 3.5*", + "setuptools", + "six" + ], + "license": "Apache", + "md5": "15a15481756bd3b1985b9c62499d658d", + "name": "cryptography", + "requires": [], + "size": 898847, + "version": "1.3.1" + }, + "cssselect-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "0022c24b46b7cfa71e8b4a6d5b48ed83", + "name": "cssselect", + "requires": [], + "size": 41297, + "version": "0.9.1" + }, + "cssselect-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f1581f0997afdaaf351ee71ba198a0ea", + "name": "cssselect", + "requires": [], + "size": 42042, + "version": "0.9.1" + }, + "cssselect-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "9dfd224fcd6a682f77bf4346a70b5653", + "name": "cssselect", + "requires": [], + "size": 43089, + "version": "0.9.1" + }, + "cssselect-0.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "756dda01ffbb49e67d7405803c66e063", + "name": "cssselect", + "requires": [], + "size": 43252, + "version": "0.9.1" + }, + "cssselect-0.9.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "ac798185b72dc8ad3b1efa31de963294", + "name": "cssselect", + "requires": [], + "size": 42826, + "version": "0.9.1" + }, + "csvkit-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "dbf 0.96.003", + "openpyxl 1.8.5", + "python 2.7*", + "python-dateutil", + "six", + "sqlalchemy", + "xlrd" + ], + "license": "MIT", + "md5": "c0eaf1fd8563e81a5a51f5122c0e2ba8", + "name": "csvkit", + "requires": [], + "size": 62099, + "version": "0.9.1" + }, + "csvkit-0.9.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-03-09", + "depends": [ + "dbf", + "openpyxl", + "python 2.7*", + "python-dateutil", + "six", + "sqlalchemy", + "xlrd" + ], + "license": "MIT", + "md5": "f8b61eb6c7016b3d8fc69955b5e21fd8", + "name": "csvkit", + "requires": [], + "size": 63089, + "version": "0.9.1" + }, + "csvkit-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "openpyxl 1.8.5", + "python 3.3*", + "python-dateutil", + "six", + "sqlalchemy", + "xlrd" + ], + "license": "MIT", + "md5": "792c0d2f463971585f456c6910dce10c", + "name": "csvkit", + "requires": [], + "size": 64057, + "version": "0.9.1" + }, + "csvkit-0.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "openpyxl 1.8.5", + "python 3.4*", + "python-dateutil", + "six", + "sqlalchemy", + "xlrd" + ], + "license": "MIT", + "md5": "b878ca5d2a64a1885cf9a852ad8ad92e", + "name": "csvkit", + "requires": [], + "size": 64311, + "version": "0.9.1" + }, + "csvkit-0.9.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-03-09", + "depends": [ + "openpyxl", + "python 3.4*", + "python-dateutil", + "six", + "sqlalchemy", + "xlrd" + ], + "license": "MIT", + "md5": "1537451c925ce946bd969972b85bd9ec", + "name": "csvkit", + "requires": [], + "size": 65242, + "version": "0.9.1" + }, + "csvkit-0.9.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "openpyxl 1.8.5", + "python 3.5*", + "python-dateutil", + "six", + "sqlalchemy", + "xlrd" + ], + "license": "MIT", + "md5": "a5cb4f46bd64971e7d0f51d4a00bd2bf", + "name": "csvkit", + "requires": [], + "size": 64001, + "version": "0.9.1" + }, + "csvkit-0.9.1-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-03-09", + "depends": [ + "openpyxl", + "python 3.5*", + "python-dateutil", + "six", + "sqlalchemy", + "xlrd" + ], + "license": "MIT", + "md5": "8aa3ae358e7839d2a7ccc0ca79b23ea3", + "name": "csvkit", + "requires": [], + "size": 64910, + "version": "0.9.1" + }, + "cubes-0.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.7*", + "sqlalchemy", + "werkzeug" + ], + "license": "MIT", + "md5": "c4f7e065a9ad92650e2039b544ec60a7", + "name": "cubes", + "requires": [], + "size": 125529, + "version": "0.10" + }, + "cubes-0.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.7*", + "sqlalchemy", + "werkzeug" + ], + "license": "MIT", + "md5": "31c20f22bf583a0d2b3c7a7f0bf3a54f", + "name": "cubes", + "requires": [], + "size": 131009, + "version": "0.10.1" + }, + "cubes-0.10.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.7*", + "sqlalchemy", + "werkzeug" + ], + "license": "MIT", + "md5": "24fc368dda52771862d870f4f3b59319", + "name": "cubes", + "requires": [], + "size": 117261, + "version": "0.10.2" + }, + "cubes-0.10.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.7*", + "sqlalchemy", + "werkzeug" + ], + "license": "MIT", + "md5": "ede24e2461a2de89e98718348c0721fb", + "name": "cubes", + "requires": [], + "size": 117268, + "version": "0.10.2" + }, + "cubes-0.10.2-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.7*", + "sqlalchemy", + "werkzeug" + ], + "license": "MIT", + "md5": "fe35610c6a2588fd4d5b094381dd5a4f", + "name": "cubes", + "requires": [], + "size": 117254, + "version": "0.10.2" + }, + "cubes-0.10.2-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.7*", + "sqlalchemy", + "werkzeug" + ], + "license": "MIT", + "md5": "2d28bf710fdd0e6116781325da2fa0f6", + "name": "cubes", + "requires": [], + "size": 119201, + "version": "0.10.2" + }, + "cubes-0.10.2-py27_4.tar.bz2": { + "build": "py27_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.7*", + "sqlalchemy", + "werkzeug" + ], + "license": "MIT", + "md5": "ce95a3b4fcb929c8d303f7f32ced1055", + "name": "cubes", + "requires": [], + "size": 119704, + "version": "0.10.2" + }, + "cubes-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "dateutil", + "flask 0.10.1", + "jsonschema 2.4.0", + "python 2.7*", + "pytz" + ], + "license": "MIT", + "md5": "3489df825dfde1557624cb7bc8d02cdf", + "name": "cubes", + "requires": [], + "size": 255209, + "version": "1.0" + }, + "cubes-1.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "flask 0.10.1", + "jsonschema 2.4.0", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "MIT", + "md5": "2d0c6a6648f6a4985292fc3db680d4ff", + "name": "cubes", + "requires": [], + "size": 255197, + "version": "1.0" + }, + "cubes-1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "dateutil", + "flask 0.10.1", + "jsonschema 2.4.0", + "python 3.3*", + "pytz" + ], + "license": "MIT", + "md5": "d78ab8102d25501934eabb6784fe550b", + "name": "cubes", + "requires": [], + "size": 266909, + "version": "1.0" + }, + "cubes-1.0-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "flask 0.10.1", + "jsonschema 2.4.0", + "python 3.3*", + "python-dateutil", + "pytz" + ], + "license": "MIT", + "md5": "441d2e88d85ea4675492b7deda63a19f", + "name": "cubes", + "requires": [], + "size": 267133, + "version": "1.0" + }, + "cubes-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "dateutil", + "flask 0.10.1", + "jsonschema 2.4.0", + "python 3.4*", + "pytz" + ], + "license": "MIT", + "md5": "f51446dd8cb5f885294ff66fe3f29df0", + "name": "cubes", + "requires": [], + "size": 257686, + "version": "1.0" + }, + "cubes-1.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "flask 0.10.1", + "jsonschema 2.4.0", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "MIT", + "md5": "035d31a346fcd299d944c798125ea397", + "name": "cubes", + "requires": [], + "size": 257660, + "version": "1.0" + }, + "cubes-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "flask 0.10.1", + "jsonschema 2.4.0", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "MIT", + "md5": "b2e0ce420927541505655d34dd5f0415", + "name": "cubes", + "requires": [], + "size": 257133, + "version": "1.0.1" + }, + "cubes-1.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "flask 0.10.1", + "jsonschema 2.4.0", + "python 3.3*", + "python-dateutil", + "pytz" + ], + "license": "MIT", + "md5": "1b1db06aa639ba691e22dbbf15fee77d", + "name": "cubes", + "requires": [], + "size": 268732, + "version": "1.0.1" + }, + "cubes-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "flask 0.10.1", + "jsonschema 2.4.0", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "MIT", + "md5": "b1c921a99d1fd19ccdce4ae7d4f1cfbb", + "name": "cubes", + "requires": [], + "size": 259940, + "version": "1.0.1" + }, + "cubes-1.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "flask 0.10.1", + "jsonschema 2.4.0", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "MIT", + "md5": "3d06c85b8a962be1ebfe0a0e13f89455", + "name": "cubes", + "requires": [], + "size": 258726, + "version": "1.0.1" + }, + "curl-7.26.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [], + "license": "MIT/X derivate (http://curl.haxx.se/docs/copyright.html)", + "license_family": "MIT", + "md5": "a9330630f4b0fd13d7c17df76917c692", + "name": "curl", + "requires": [], + "size": 528053, + "version": "7.26.0" + }, + "curl-7.30.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "zlib 1.2*" + ], + "license": "MIT/X derivate (http://curl.haxx.se/docs/copyright.html)", + "license_family": "MIT", + "md5": "e3f1943f1d05a9073ac277fe63a7167e", + "name": "curl", + "requires": [], + "size": 603698, + "version": "7.30.0" + }, + "curl-7.38.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "openssl 1.0.1*", + "zlib 1.2*" + ], + "license": "MIT/X derivate (http://curl.haxx.se/docs/copyright.html)", + "license_family": "MIT", + "md5": "25170b12b4b0299e64787429cd0772c8", + "name": "curl", + "requires": [], + "size": 533639, + "version": "7.38.0" + }, + "curl-7.42.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-05-27", + "depends": [ + "openssl 1.0.1*", + "zlib 1.2*" + ], + "license": "MIT/X derivate (http://curl.haxx.se/docs/copyright.html)", + "license_family": "MIT", + "md5": "d29ec8002fd41deaa5445f9ba56d024f", + "name": "curl", + "requires": [], + "size": 544224, + "version": "7.42.1" + }, + "curl-7.42.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-06-10", + "depends": [ + "krb5 1.13.2", + "openssl 1.0.1*", + "zlib 1.2*" + ], + "license": "MIT/X derivate (http://curl.haxx.se/docs/copyright.html)", + "license_family": "MIT", + "md5": "0b8ba58796f4f20ad3c9a57e431829f0", + "name": "curl", + "requires": [], + "size": 562358, + "version": "7.42.1" + }, + "curl-7.43.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "openssl 1.0.1*", + "zlib 1.2*" + ], + "license": "MIT/X derivate (http://curl.haxx.se/docs/copyright.html)", + "license_family": "MIT", + "md5": "71ee0693b8f65252df289b8fea4fd5e7", + "name": "curl", + "requires": [], + "size": 545344, + "version": "7.43.0" + }, + "curl-7.43.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-07-13", + "depends": [ + "krb5 1.13.2", + "openssl 1.0.1*", + "zlib 1.2*" + ], + "license": "MIT/X derivate (http://curl.haxx.se/docs/copyright.html)", + "license_family": "MIT", + "md5": "bcdc205dd76105c10f544f0a71fec709", + "name": "curl", + "requires": [], + "size": 562912, + "version": "7.43.0" + }, + "curl-7.45.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-19", + "depends": [ + "openssl 1.0.2*", + "zlib 1.2.*" + ], + "license": "MIT/X derivate (http://curl.haxx.se/docs/copyright.html)", + "license_family": "MIT", + "md5": "4c98f792167bfea1cef72141e5359202", + "name": "curl", + "requires": [], + "size": 540353, + "version": "7.45.0" + }, + "cvxcanon-0.0.23.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-22", + "depends": [ + "numpy", + "python 2.7*", + "scipy" + ], + "license": "GPL3", + "md5": "a22ebccbcda23c8b9447876a94956ecf", + "name": "cvxcanon", + "requires": [], + "size": 1174429, + "version": "0.0.23.3" + }, + "cvxcanon-0.0.23.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-22", + "depends": [ + "numpy", + "python 3.4*", + "scipy" + ], + "license": "GPL3", + "md5": "711f1f5bf6c3545ae6aa2432f3843cca", + "name": "cvxcanon", + "requires": [], + "size": 1172124, + "version": "0.0.23.3" + }, + "cvxcanon-0.0.23.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-22", + "depends": [ + "numpy", + "python 3.5*", + "scipy" + ], + "license": "GPL3", + "md5": "53d53aaf792303502190461af4937748", + "name": "cvxcanon", + "requires": [], + "size": 1172274, + "version": "0.0.23.3" + }, + "cvxopt-1.1.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "2e001fe2804d61175303dfa1cad83c18", + "name": "cvxopt", + "requires": [], + "size": 4016538, + "version": "1.1.6" + }, + "cvxopt-1.1.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-13", + "depends": [ + "python 2.6*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "232e7145f1e76def5e82a611be9357de", + "name": "cvxopt", + "requires": [], + "size": 4181459, + "version": "1.1.7" + }, + "cvxopt-1.1.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-13", + "depends": [ + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "1bf2394e567977dbb572c8572b240c90", + "name": "cvxopt", + "requires": [], + "size": 4182226, + "version": "1.1.7" + }, + "cvxopt-1.1.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-13", + "depends": [ + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "18be822eb4811ab35c1ecc250801ed05", + "name": "cvxopt", + "requires": [], + "size": 4211466, + "version": "1.1.7" + }, + "cvxopt-1.1.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-13", + "depends": [ + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "25a61de048d7e61aafbe95d0e1d5e9aa", + "name": "cvxopt", + "requires": [], + "size": 4220096, + "version": "1.1.7" + }, + "cvxopt-1.1.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "7680f43332eafe30a4295062904d6801", + "name": "cvxopt", + "requires": [], + "size": 4219475, + "version": "1.1.7" + }, + "cvxopt-1.1.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "cfde64916e3613242f95b48ac1982538", + "name": "cvxopt", + "requires": [], + "size": 1573586, + "version": "1.1.8" + }, + "cvxopt-1.1.8-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-02-02", + "depends": [ + "mkl 11.3.1", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "2ebdfb32fdbe7b63530e382d220b38ff", + "name": "cvxopt", + "requires": [], + "size": 1599868, + "version": "1.1.8" + }, + "cvxopt-1.1.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "12f366bf37c52eeb5bcbb104434c2920", + "name": "cvxopt", + "requires": [], + "size": 1625914, + "version": "1.1.8" + }, + "cvxopt-1.1.8-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-02-02", + "depends": [ + "mkl 11.3.1", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "bbcad8dd591054057e750e39f12746db", + "name": "cvxopt", + "requires": [], + "size": 1642096, + "version": "1.1.8" + }, + "cvxopt-1.1.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-19", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "22d27b6b23d2e0116274f99c5a0ec241", + "name": "cvxopt", + "requires": [], + "size": 1626418, + "version": "1.1.8" + }, + "cvxopt-1.1.8-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-02-02", + "depends": [ + "mkl 11.3.1", + "python 3.5*" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "0c099366061fae3b11ca19273f0d38b3", + "name": "cvxopt", + "requires": [], + "size": 1642884, + "version": "1.1.8" + }, + "cx_oracle-5.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "oracle-instantclient", + "python 2.7*" + ], + "license": "PSF", + "md5": "33b6c4a466cba3960d07ca0ed9db2694", + "name": "cx_oracle", + "requires": [], + "size": 154874, + "version": "5.1.2" + }, + "cycler-0.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-29", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "5fa3237284832ffeaeded70c6b6953e6", + "name": "cycler", + "requires": [], + "size": 10766, + "version": "0.10.0" + }, + "cycler-0.10.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-29", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "4359c440ec3a77d5dd25be33be0296ef", + "name": "cycler", + "requires": [], + "size": 11079, + "version": "0.10.0" + }, + "cycler-0.10.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-29", + "depends": [ + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "8810c6a15cadf3b3422d3a46d66e192c", + "name": "cycler", + "requires": [], + "size": 11056, + "version": "0.10.0" + }, + "cycler-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "0f87ca4e541b3f0d77def7e203136c21", + "name": "cycler", + "requires": [], + "size": 6110, + "version": "0.9.0" + }, + "cycler-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "dacd24099e6dd5917cdba9e2da899187", + "name": "cycler", + "requires": [], + "size": 6258, + "version": "0.9.0" + }, + "cycler-0.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "f6fc499fcc59f07c30487a282ecf5e76", + "name": "cycler", + "requires": [], + "size": 6245, + "version": "0.9.0" + }, + "cymem-1.11-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "5ed76a5f40b962b780792dfbfa4e306a", + "name": "cymem", + "requires": [], + "size": 64606, + "version": "1.11" + }, + "cymem-1.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "4dd105492905948a134e76fb976e0cee", + "name": "cymem", + "requires": [], + "size": 64629, + "version": "1.11" + }, + "cymem-1.11-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "955fb363fcbcb7e516f111f4134609cd", + "name": "cymem", + "requires": [], + "size": 65585, + "version": "1.11" + }, + "cymem-1.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "66f8970b8ea6a1c22184022fa66fa387", + "name": "cymem", + "requires": [], + "size": 69019, + "version": "1.11" + }, + "cymem-1.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "55594ca1d5cfea94fb292bc671374772", + "name": "cymem", + "requires": [], + "size": 68788, + "version": "1.11" + }, + "cymem-1.30-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5ab6481850afef10e9c171461810ecff", + "name": "cymem", + "requires": [], + "size": 69340, + "version": "1.30" + }, + "cymem-1.30-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "de761dfdc8390fe811567deed8815a4b", + "name": "cymem", + "requires": [], + "size": 74125, + "version": "1.30" + }, + "cymem-1.30-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "5b2367db839e50db11ce804dd8dd1288", + "name": "cymem", + "requires": [], + "size": 74221, + "version": "1.30" + }, + "cymem-1.31.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "19dc4ac236a0922d54f97690ef8ac325", + "name": "cymem", + "requires": [], + "size": 70418, + "version": "1.31.0" + }, + "cymem-1.31.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "e43bfee4b7ec8b223de5f30fcff28d65", + "name": "cymem", + "requires": [], + "size": 74968, + "version": "1.31.0" + }, + "cymem-1.31.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "77a1a45e519c44c172bc482fa00110db", + "name": "cymem", + "requires": [], + "size": 74105, + "version": "1.31.0" + }, + "cython-0.17-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "4f583a1da9847acb22e082301f0d6d15", + "name": "cython", + "requires": [], + "size": 3576313, + "version": "0.17" + }, + "cython-0.17-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "7b53b41e18faa55ca43a839b4a2ba2e5", + "name": "cython", + "requires": [], + "size": 3579730, + "version": "0.17" + }, + "cython-0.17.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "3aecf75342ec14a8c18c8e6634cbd816", + "name": "cython", + "requires": [], + "size": 3580413, + "version": "0.17.1" + }, + "cython-0.17.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "f14b484f1b913be38d9f3b9d11a0336f", + "name": "cython", + "requires": [], + "size": 3584059, + "version": "0.17.1" + }, + "cython-0.17.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "8a5535c463afb2f32cc392c10b75af10", + "name": "cython", + "requires": [], + "size": 3659375, + "version": "0.17.1" + }, + "cython-0.17.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "0f0a579784b9707731b3333911136ba3", + "name": "cython", + "requires": [], + "size": 3582310, + "version": "0.17.3" + }, + "cython-0.17.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "0aab7078fa9140799b28af40983a5024", + "name": "cython", + "requires": [], + "size": 3587179, + "version": "0.17.3" + }, + "cython-0.17.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "8fce6c2c2d776c2f598f19c41b0736e0", + "name": "cython", + "requires": [], + "size": 3492757, + "version": "0.17.4" + }, + "cython-0.17.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "1871f2675d654837b7278a03a35d6455", + "name": "cython", + "requires": [], + "size": 3496367, + "version": "0.17.4" + }, + "cython-0.18-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "f2e02d036b96e1d448403d37eea41e35", + "name": "cython", + "requires": [], + "size": 3561152, + "version": "0.18" + }, + "cython-0.18-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "b8d7aa50912f7b8c1a8b8713a3f05ca3", + "name": "cython", + "requires": [], + "size": 3561931, + "version": "0.18" + }, + "cython-0.18-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "fe0031b53b7993f3ff994b65e4ff4e90", + "name": "cython", + "requires": [], + "size": 3710066, + "version": "0.18" + }, + "cython-0.19-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "3a68cc10b380942a4f99beb7ff782510", + "name": "cython", + "requires": [], + "size": 3843243, + "version": "0.19" + }, + "cython-0.19-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "89b154944573ec0e2132fc44b8ce41a7", + "name": "cython", + "requires": [], + "size": 3849789, + "version": "0.19" + }, + "cython-0.19-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "4b60ee059a8b474f7d18140bf081d474", + "name": "cython", + "requires": [], + "size": 3905559, + "version": "0.19" + }, + "cython-0.19.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "a74fbe5bb50f8baa50f5bf458c08467b", + "name": "cython", + "requires": [], + "size": 3843411, + "version": "0.19.1" + }, + "cython-0.19.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "1b9543b007c7a1c2e17222deeed71b17", + "name": "cython", + "requires": [], + "size": 3850628, + "version": "0.19.1" + }, + "cython-0.19.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "b10df15cdb6b5994883e0cbe18da1611", + "name": "cython", + "requires": [], + "size": 3912962, + "version": "0.19.1" + }, + "cython-0.19.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "ed549e41757e99b0944d150af726e41a", + "name": "cython", + "requires": [], + "size": 3868896, + "version": "0.19.2" + }, + "cython-0.19.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "cd1c7aa97f60117a23b3c53cf35451ea", + "name": "cython", + "requires": [], + "size": 3871040, + "version": "0.19.2" + }, + "cython-0.19.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "15a85534cfd4cbbeb0131d064a574559", + "name": "cython", + "requires": [], + "size": 3938824, + "version": "0.19.2" + }, + "cython-0.20-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "f0c89dd426e179d7a917113ed18d4b06", + "name": "cython", + "requires": [], + "size": 4807182, + "version": "0.20" + }, + "cython-0.20-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "071cb4327b6aae1d0e3a9d0af15069d9", + "name": "cython", + "requires": [], + "size": 4801175, + "version": "0.20" + }, + "cython-0.20-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "bfa1bf9f4c534be4ba933343a8702343", + "name": "cython", + "requires": [], + "size": 4842690, + "version": "0.20" + }, + "cython-0.20.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "94d899ad3ded374fa42b6d1bfbddfa02", + "name": "cython", + "requires": [], + "size": 4996107, + "version": "0.20.1" + }, + "cython-0.20.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "57743de138b8c17c0a4df1f78d4d04a4", + "name": "cython", + "requires": [], + "size": 4999035, + "version": "0.20.1" + }, + "cython-0.20.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "08c2e0368543fc9977f25a8fb301e251", + "name": "cython", + "requires": [], + "size": 5236026, + "version": "0.20.1" + }, + "cython-0.20.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "e7c62ec3598c24ce0e7061681a4fd2b3", + "name": "cython", + "requires": [], + "size": 5669961, + "version": "0.20.1" + }, + "cython-0.20.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "a975edc9ac7c1e99a8381475fc3ae27f", + "name": "cython", + "requires": [], + "size": 4998234, + "version": "0.20.2" + }, + "cython-0.20.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "45b19f64545c1d6c73cffed7b83fdf31", + "name": "cython", + "requires": [], + "size": 5004908, + "version": "0.20.2" + }, + "cython-0.20.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "eea35451bc159fddda109531d06d493e", + "name": "cython", + "requires": [], + "size": 5231842, + "version": "0.20.2" + }, + "cython-0.20.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "ddde93073e330c1a806146b73508a2d5", + "name": "cython", + "requires": [], + "size": 5671221, + "version": "0.20.2" + }, + "cython-0.21-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "b8dfdefa281e903851a3d0913532d890", + "name": "cython", + "requires": [], + "size": 5220803, + "version": "0.21" + }, + "cython-0.21-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-10-23", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "429c6fc3e8db2cc711634579ce4e943b", + "name": "cython", + "requires": [], + "size": 5219638, + "version": "0.21" + }, + "cython-0.21-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "16edfe8f767b296fdd8038a3bbdcd747", + "name": "cython", + "requires": [], + "size": 5222546, + "version": "0.21" + }, + "cython-0.21-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-10-23", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "17ac3ff5b26a9656e971949cc250f963", + "name": "cython", + "requires": [], + "size": 5221960, + "version": "0.21" + }, + "cython-0.21-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "37b6ea1dd9576f34cf627095ca51c9b5", + "name": "cython", + "requires": [], + "size": 5660162, + "version": "0.21" + }, + "cython-0.21-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-10-23", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "fe2ff8e2ec5d2913efa163701f410400", + "name": "cython", + "requires": [], + "size": 5662140, + "version": "0.21" + }, + "cython-0.21-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "89def0c3c8d7521281e2ac9db7419e15", + "name": "cython", + "requires": [], + "size": 6288519, + "version": "0.21" + }, + "cython-0.21-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-10-23", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "67b335f5838f45fbcf9469788ced31a2", + "name": "cython", + "requires": [], + "size": 6286969, + "version": "0.21" + }, + "cython-0.21.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "19b3a640fac8cc704245e7dd49203679", + "name": "cython", + "requires": [], + "size": 5217072, + "version": "0.21.1" + }, + "cython-0.21.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "5f9b7bd9919fedd23dc2eda1952b101b", + "name": "cython", + "requires": [], + "size": 5222866, + "version": "0.21.1" + }, + "cython-0.21.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "65bae94da7080f13207b689989ea2e5d", + "name": "cython", + "requires": [], + "size": 5652080, + "version": "0.21.1" + }, + "cython-0.21.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "05de0545a4c9e3db6385bbe81d6a6a87", + "name": "cython", + "requires": [], + "size": 6277344, + "version": "0.21.1" + }, + "cython-0.21.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-02", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "34112704dd87da7278e33985352830ee", + "name": "cython", + "requires": [], + "size": 5216616, + "version": "0.21.2" + }, + "cython-0.21.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-02", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "5e02593cf963e0e1888b64f47bf7f79b", + "name": "cython", + "requires": [], + "size": 5222803, + "version": "0.21.2" + }, + "cython-0.21.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-02", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "b5d3a963cd8d7a50d37f183f6458260d", + "name": "cython", + "requires": [], + "size": 5651995, + "version": "0.21.2" + }, + "cython-0.21.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-02", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "706dedd2f273258be468d96435702857", + "name": "cython", + "requires": [], + "size": 6273833, + "version": "0.21.2" + }, + "cython-0.22-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-12", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "5f91f47e1058e67a7e835f7974c29379", + "name": "cython", + "requires": [], + "size": 5244022, + "version": "0.22" + }, + "cython-0.22-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-12", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "c33eec7355cf3813f39325618ce87164", + "name": "cython", + "requires": [], + "size": 5243585, + "version": "0.22" + }, + "cython-0.22-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-12", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "808c6bfd92b26d4a4758f1d2ffd76c78", + "name": "cython", + "requires": [], + "size": 5681419, + "version": "0.22" + }, + "cython-0.22-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-12", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "f66e13875f260052438cce6f48a91f1e", + "name": "cython", + "requires": [], + "size": 6304011, + "version": "0.22" + }, + "cython-0.22.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "5137b5511b64d5db27add04cfa0fdfc8", + "name": "cython", + "requires": [], + "size": 5244654, + "version": "0.22.1" + }, + "cython-0.22.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "5212d19a9ee47f31e7c27c47588f1714", + "name": "cython", + "requires": [], + "size": 5247887, + "version": "0.22.1" + }, + "cython-0.22.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "515adc49f687e070cc627146933efd86", + "name": "cython", + "requires": [], + "size": 5686971, + "version": "0.22.1" + }, + "cython-0.22.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "ca81893a6bb9c79cabec7f64efc26f6d", + "name": "cython", + "requires": [], + "size": 6301245, + "version": "0.22.1" + }, + "cython-0.23-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "f064640e9426eda8d331a696c4399f7c", + "name": "cython", + "requires": [], + "size": 5471892, + "version": "0.23" + }, + "cython-0.23-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "f58611418f48035fc3d6bc0d7534a8d6", + "name": "cython", + "requires": [], + "size": 6589797, + "version": "0.23" + }, + "cython-0.23.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-26", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "da1aa370fc5f7233a7d3f7c44e8ed32c", + "name": "cython", + "requires": [], + "size": 5478343, + "version": "0.23.1" + }, + "cython-0.23.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-26", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "3d6b3a722ebe0d50220e75bbf47a109a", + "name": "cython", + "requires": [], + "size": 6562087, + "version": "0.23.1" + }, + "cython-0.23.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "f65478208fbb63976d9fe73bcf0feb33", + "name": "cython", + "requires": [], + "size": 6559998, + "version": "0.23.1" + }, + "cython-0.23.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "11188ab1c4154fa659d057d606b60668", + "name": "cython", + "requires": [], + "size": 5743881, + "version": "0.23.2" + }, + "cython-0.23.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "47833365e62494fe77fc55b67cf17f3c", + "name": "cython", + "requires": [], + "size": 6541926, + "version": "0.23.2" + }, + "cython-0.23.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "9213e243e3cf98c417aeae887edff521", + "name": "cython", + "requires": [], + "size": 6541116, + "version": "0.23.2" + }, + "cython-0.23.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "4335e73d09166febca181d88b0680489", + "name": "cython", + "requires": [], + "size": 5751921, + "version": "0.23.3" + }, + "cython-0.23.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "032f7f8295e66fd4223ba6080245ae65", + "name": "cython", + "requires": [], + "size": 6562260, + "version": "0.23.3" + }, + "cython-0.23.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "24dc632e66224093ab74ca8bbc755f69", + "name": "cython", + "requires": [], + "size": 6559377, + "version": "0.23.3" + }, + "cython-0.23.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "2b91e715003c5f6b10764e3416d75995", + "name": "cython", + "requires": [], + "size": 5755316, + "version": "0.23.4" + }, + "cython-0.23.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "76cb65c9eaec78ae6837451641ca2c24", + "name": "cython", + "requires": [], + "size": 6559752, + "version": "0.23.4" + }, + "cython-0.23.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "dcbae73c12d578da98ad5575bca2c131", + "name": "cython", + "requires": [], + "size": 6557304, + "version": "0.23.4" + }, + "cython-0.23.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-29", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "1b3b00fc5b7f2a429292e4356d8f6c77", + "name": "cython", + "requires": [], + "size": 5484590, + "version": "0.23.5" + }, + "cython-0.23.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-29", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "7769aebfbfd7c2f5aedf93dc1e45f529", + "name": "cython", + "requires": [], + "size": 6541317, + "version": "0.23.5" + }, + "cython-0.23.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-29", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "536b48128c57f98837e1dcf17fbcb1fe", + "name": "cython", + "requires": [], + "size": 6272707, + "version": "0.23.5" + }, + "cython-0.24-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "7e3224a496473c42f98dbc4af3d17ee6", + "name": "cython", + "requires": [], + "size": 5516530, + "version": "0.24" + }, + "cython-0.24-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "6ab05006143621a7ebad79c1d23b9b3f", + "name": "cython", + "requires": [], + "size": 6652075, + "version": "0.24" + }, + "cython-0.24-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "d0ed9e33fac98c95c48b503f7cfc3d72", + "name": "cython", + "requires": [], + "size": 6354743, + "version": "0.24" + }, + "cytoolz-0.6.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "68460bf40a99ea3dcc55085ef4d36b4c", + "name": "cytoolz", + "requires": [], + "size": 390133, + "version": "0.6.1" + }, + "cytoolz-0.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4d8945e1da9fb8871a5cd62afff2b057", + "name": "cytoolz", + "requires": [], + "size": 390768, + "version": "0.6.1" + }, + "cytoolz-0.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "0f8123181831fbfe9b62a9c4987b3891", + "name": "cytoolz", + "requires": [], + "size": 398956, + "version": "0.6.1" + }, + "cytoolz-0.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "026b0495eed0643431c1136b60b1ae90", + "name": "cytoolz", + "requires": [], + "size": 440658, + "version": "0.6.1" + }, + "cytoolz-0.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "16500782c02fe5423861abcf5bd6a537", + "name": "cytoolz", + "requires": [], + "size": 513426, + "version": "0.7.0" + }, + "cytoolz-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bfb76724550a97a44027611dd636a6e7", + "name": "cytoolz", + "requires": [], + "size": 514254, + "version": "0.7.0" + }, + "cytoolz-0.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "6386135c7bffe336b6eb6414d9de535f", + "name": "cytoolz", + "requires": [], + "size": 527532, + "version": "0.7.0" + }, + "cytoolz-0.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e51fa9e3a473830e5dd6f1487294d9dd", + "name": "cytoolz", + "requires": [], + "size": 584052, + "version": "0.7.0" + }, + "cytoolz-0.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "5b4a93c9cec830a91e7385b59ef8dd69", + "name": "cytoolz", + "requires": [], + "size": 626054, + "version": "0.7.1" + }, + "cytoolz-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "62ebf0b83e93c23cc15e9f101052f8fc", + "name": "cytoolz", + "requires": [], + "size": 627321, + "version": "0.7.1" + }, + "cytoolz-0.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "70f7025be49217e37c6361af693358b6", + "name": "cytoolz", + "requires": [], + "size": 656203, + "version": "0.7.1" + }, + "cytoolz-0.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "af3d35587a5c1b647269c6d5ca429666", + "name": "cytoolz", + "requires": [], + "size": 741829, + "version": "0.7.1" + }, + "cytoolz-0.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "6f7c37d16d61b8ade23637c4f4ad3f2e", + "name": "cytoolz", + "requires": [], + "size": 666620, + "version": "0.7.2" + }, + "cytoolz-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "dbb6e3db1f5b01a620d32ec77508fbbd", + "name": "cytoolz", + "requires": [], + "size": 668479, + "version": "0.7.2" + }, + "cytoolz-0.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "ea6075f32f42dbff2cc53e7b5471a25c", + "name": "cytoolz", + "requires": [], + "size": 690263, + "version": "0.7.2" + }, + "cytoolz-0.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "27e6b94913d92e3260003fd83fadb58f", + "name": "cytoolz", + "requires": [], + "size": 782626, + "version": "0.7.2" + }, + "cytoolz-0.7.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "cd265754c390a9f7b3afbfe9564642ad", + "name": "cytoolz", + "requires": [], + "size": 754094, + "version": "0.7.3" + }, + "cytoolz-0.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "da918d28d754bac75ff0e8e15d1d8eaf", + "name": "cytoolz", + "requires": [], + "size": 755093, + "version": "0.7.3" + }, + "cytoolz-0.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "09813309e1fe7a95fb3050b4b1a780ad", + "name": "cytoolz", + "requires": [], + "size": 794764, + "version": "0.7.3" + }, + "cytoolz-0.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "9b5f5f0f96b89832dcbf1868de440a2b", + "name": "cytoolz", + "requires": [], + "size": 885055, + "version": "0.7.3" + }, + "cytoolz-0.7.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "2ab6ac3237a02da34e17c7b76e2eaa84", + "name": "cytoolz", + "requires": [], + "size": 885274, + "version": "0.7.3" + }, + "cytoolz-0.7.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-21", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "6f5351d640af30c210dbca7f2da0d0e3", + "name": "cytoolz", + "requires": [], + "size": 812760, + "version": "0.7.4" + }, + "cytoolz-0.7.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-21", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "6b5aaa2cf1e03be3619c0ebf681e22b2", + "name": "cytoolz", + "requires": [], + "size": 957167, + "version": "0.7.4" + }, + "cytoolz-0.7.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-21", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "7f990730790816de8d478935789a2c46", + "name": "cytoolz", + "requires": [], + "size": 958306, + "version": "0.7.4" + }, + "cytoolz-0.7.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "eba93ea2846171ba9ad7120ff7b8753a", + "name": "cytoolz", + "requires": [], + "size": 811578, + "version": "0.7.5" + }, + "cytoolz-0.7.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ad74e994a846d3b9b5f82077d5e9c71d", + "name": "cytoolz", + "requires": [], + "size": 956079, + "version": "0.7.5" + }, + "cytoolz-0.7.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "2a060dce6c95933a775b1e9eb4701d5c", + "name": "cytoolz", + "requires": [], + "size": 923788, + "version": "0.7.5" + }, + "dask-0.3.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "81cfb3c57e50ab910af83c8f84a2eea9", + "name": "dask", + "requires": [], + "size": 71602, + "version": "0.3.0" + }, + "dask-0.3.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "e6e6a3fc9f1ded50ca794fada789a2c5", + "name": "dask", + "requires": [], + "size": 70906, + "version": "0.3.0" + }, + "dask-0.3.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "9cca877117f07a564275531d07d23d83", + "name": "dask", + "requires": [], + "size": 73354, + "version": "0.3.0" + }, + "dask-0.3.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "49bbaa06941cd9ee0c81e28732b25f90", + "name": "dask", + "requires": [], + "size": 73870, + "version": "0.3.0" + }, + "dask-0.4.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "chest 0.2.2", + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "b24636453c87ea7961f18c2848530600", + "name": "dask", + "requires": [], + "size": 132803, + "version": "0.4.0" + }, + "dask-0.4.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "chest 0.2.2", + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "3d4a326bd76d347cb735de05df6d5264", + "name": "dask", + "requires": [], + "size": 131563, + "version": "0.4.0" + }, + "dask-0.4.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "chest 0.2.2", + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "4e4160b26866ff23ffe0198cb445099c", + "name": "dask", + "requires": [], + "size": 135643, + "version": "0.4.0" + }, + "dask-0.4.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "chest 0.2.2", + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "e4b73e59f4ae3ac21e948b9e0a880c11", + "name": "dask", + "requires": [], + "size": 136729, + "version": "0.4.0" + }, + "dask-0.5.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-17", + "depends": [ + "chest 0.2.2", + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 2.6*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "471018fe7747162034407dc3d11a7e9c", + "name": "dask", + "requires": [], + "size": 159646, + "version": "0.5.0" + }, + "dask-0.5.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-17", + "depends": [ + "chest 0.2.2", + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 2.7*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "bd2dea7b460188be05e2772000ccaff3", + "name": "dask", + "requires": [], + "size": 158224, + "version": "0.5.0" + }, + "dask-0.5.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-17", + "depends": [ + "chest 0.2.2", + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 3.3*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "f5dd7b6ca8763538b79c4508f26be09c", + "name": "dask", + "requires": [], + "size": 165975, + "version": "0.5.0" + }, + "dask-0.5.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-17", + "depends": [ + "chest 0.2.2", + "dill 0.2.2", + "numpy 1.9*", + "psutil", + "python 3.4*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "8bf48418d0aae2f6ef1f47287b6dfab9", + "name": "dask", + "requires": [], + "size": 164169, + "version": "0.5.0" + }, + "dask-0.6.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "chest 0.2.2", + "dill 0.2.3", + "numpy 1.9*", + "partd 0.3.2", + "python 2.6*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "c8e05e1f0dcdc62870ba4cec926122bd", + "name": "dask", + "requires": [], + "size": 195814, + "version": "0.6.0" + }, + "dask-0.6.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "chest 0.2.2", + "dill 0.2.3", + "numpy 1.9*", + "partd 0.3.2", + "python 2.7*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "f7e4ff3705ef89b8d93e15585d89a80e", + "name": "dask", + "requires": [], + "size": 193892, + "version": "0.6.0" + }, + "dask-0.6.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "chest 0.2.2", + "dill 0.2.3", + "numpy 1.9*", + "partd 0.3.2", + "python 3.3*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "c6a6a95becc55576296a25bb50570b5e", + "name": "dask", + "requires": [], + "size": 205438, + "version": "0.6.0" + }, + "dask-0.6.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "chest 0.2.2", + "dill 0.2.3", + "numpy 1.9*", + "partd 0.3.2", + "python 3.4*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "3e957e3c445d6922ca3ecdd734e604d6", + "name": "dask", + "requires": [], + "size": 195429, + "version": "0.6.0" + }, + "dask-0.6.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "chest 0.2.3", + "dill 0.2.3", + "numpy 1.9*", + "partd 0.3.2", + "python 2.6*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "c8556446233d53aa193e7bd55733d3c9", + "name": "dask", + "requires": [], + "size": 213671, + "version": "0.6.1" + }, + "dask-0.6.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "chest 0.2.3", + "dill 0.2.3", + "numpy 1.9*", + "partd 0.3.2", + "python 2.7*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "de281efc3172821762f2b6a06c99d285", + "name": "dask", + "requires": [], + "size": 212775, + "version": "0.6.1" + }, + "dask-0.6.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "chest 0.2.3", + "dill 0.2.3", + "numpy 1.9*", + "partd 0.3.2", + "python 3.3*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "9fda563ff01299a90a9b6f5d5785f831", + "name": "dask", + "requires": [], + "size": 225206, + "version": "0.6.1" + }, + "dask-0.6.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "chest 0.2.3", + "dill 0.2.3", + "numpy 1.9*", + "partd 0.3.2", + "python 3.4*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "05479d6463d80478fbe3988e9d527db7", + "name": "dask", + "requires": [], + "size": 219267, + "version": "0.6.1" + }, + "dask-0.7.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "chest 0.2.3", + "dill 0.2.4", + "numpy 1.9*", + "partd 0.3.2", + "python 2.7*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "1bb2ad1440ca65b42a9c31ca7d59033a", + "name": "dask", + "requires": [], + "size": 234258, + "version": "0.7.0" + }, + "dask-0.7.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "chest 0.2.3", + "dill 0.2.4", + "numpy 1.9*", + "partd 0.3.2", + "python 3.4*", + "pyzmq 14.*", + "toolz" + ], + "license": "BSD", + "md5": "ce3370b13a333ce7fcb985509fc21844", + "name": "dask", + "requires": [], + "size": 244704, + "version": "0.7.0" + }, + "dask-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-04", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 2.7*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "6ab18abf1311ba576d04cb085a5c4649", + "name": "dask", + "requires": [], + "size": 251155, + "version": "0.7.1" + }, + "dask-0.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-04", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 3.4*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "0e9df216c3e3492686677a9478031f90", + "name": "dask", + "requires": [], + "size": 262926, + "version": "0.7.1" + }, + "dask-0.7.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 3.5*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "0148d8cd12dc2a6c0825fb326d557d25", + "name": "dask", + "requires": [], + "size": 262061, + "version": "0.7.1" + }, + "dask-0.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 2.7*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "34e3af2baa56c5146fddc4098b99059e", + "name": "dask", + "requires": [], + "size": 270805, + "version": "0.7.3" + }, + "dask-0.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 3.4*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "fd06d7f097fd12f07fb9991daadfdfc6", + "name": "dask", + "requires": [], + "size": 285632, + "version": "0.7.3" + }, + "dask-0.7.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 3.5*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "7159c1ec1ea0404e219f9187c8f68bff", + "name": "dask", + "requires": [], + "size": 284476, + "version": "0.7.3" + }, + "dask-0.7.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 2.7*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "f3d9e9ae8d49ad663b62979764db704b", + "name": "dask", + "requires": [], + "size": 275683, + "version": "0.7.5" + }, + "dask-0.7.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 3.4*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "ffb182ff9a2c6a67a7fb591473a20eda", + "name": "dask", + "requires": [], + "size": 293263, + "version": "0.7.5" + }, + "dask-0.7.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "chest", + "dill", + "numpy", + "partd", + "python 3.5*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "26880769e5e708d8263bc17b16abef1f", + "name": "dask", + "requires": [], + "size": 292010, + "version": "0.7.5" + }, + "dask-0.7.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "chest", + "cloudpickle", + "dill", + "numpy", + "partd", + "python 2.7*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "f3790862b909c67a7d63c471eb511161", + "name": "dask", + "requires": [], + "size": 267189, + "version": "0.7.6" + }, + "dask-0.7.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "chest", + "cloudpickle", + "dill", + "numpy", + "partd", + "python 3.4*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "7668ef1ca201c055f5901aee998efb2a", + "name": "dask", + "requires": [], + "size": 282949, + "version": "0.7.6" + }, + "dask-0.7.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "chest", + "cloudpickle", + "dill", + "numpy", + "partd", + "python 3.5*", + "pyzmq", + "toolz" + ], + "license": "BSD", + "md5": "843c4240c19aa09ec60e045999b825b1", + "name": "dask", + "requires": [], + "size": 282519, + "version": "0.7.6" + }, + "dask-0.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "bokeh", + "chest", + "cloudpickle", + "numpy", + "pandas", + "partd", + "psutil", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "df69dea63ced38803370a66706a16016", + "name": "dask", + "requires": [], + "size": 282554, + "version": "0.8.0" + }, + "dask-0.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "bokeh", + "chest", + "cloudpickle", + "numpy", + "pandas", + "partd", + "psutil", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "a5c5ad06b955f7ad8de2606c81471b13", + "name": "dask", + "requires": [], + "size": 296516, + "version": "0.8.0" + }, + "dask-0.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "bokeh", + "chest", + "cloudpickle", + "numpy", + "pandas", + "partd", + "psutil", + "python 3.5*", + "toolz" + ], + "license": "BSD", + "md5": "b6ed6ccf90f0ae8e4541719e4e1fa05a", + "name": "dask", + "requires": [], + "size": 295739, + "version": "0.8.0" + }, + "dask-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "bokeh", + "chest", + "cloudpickle", + "numpy", + "pandas", + "partd", + "psutil", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "7df1f614e6baa8b6c2dadb7c8aa88086", + "name": "dask", + "requires": [], + "size": 289771, + "version": "0.8.1" + }, + "dask-0.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "bokeh", + "chest", + "cloudpickle", + "numpy", + "pandas", + "partd", + "psutil", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "c14accafb2f3ec1d5866eceb16e13873", + "name": "dask", + "requires": [], + "size": 302835, + "version": "0.8.1" + }, + "dask-0.8.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "bokeh", + "chest", + "cloudpickle", + "numpy", + "pandas", + "partd", + "psutil", + "python 3.5*", + "toolz" + ], + "license": "BSD", + "md5": "0bdce8777c1a7637ab710e5e22f12753", + "name": "dask", + "requires": [], + "size": 301930, + "version": "0.8.1" + }, + "datashader-0.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "dask >=0.7.6", + "datashape >=0.5.1", + "numba >=0.24.0", + "numpy >=1.7", + "odo >=0.4.1", + "pandas >=0.15.0", + "pillow >=3.1.1", + "python 2.7*", + "toolz >=0.7.4", + "xarray >=0.7.0" + ], + "license": "New BSD", + "license_family": "BSD", + "md5": "fa6ad630f7e3397d7f31d823d862b9e3", + "name": "datashader", + "requires": [], + "size": 39654, + "version": "0.1.0" + }, + "datashader-0.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "dask >=0.7.6", + "datashape >=0.5.1", + "numba >=0.24.0", + "numpy >=1.7", + "odo >=0.4.1", + "pandas >=0.15.0", + "pillow >=3.1.1", + "python 3.4*", + "toolz >=0.7.4", + "xarray >=0.7.0" + ], + "license": "New BSD", + "license_family": "BSD", + "md5": "9be556983d2cc6d7973f596b1c52ac7d", + "name": "datashader", + "requires": [], + "size": 40797, + "version": "0.1.0" + }, + "datashader-0.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "dask >=0.7.6", + "datashape >=0.5.1", + "numba >=0.24.0", + "numpy >=1.7", + "odo >=0.4.1", + "pandas >=0.15.0", + "pillow >=3.1.1", + "python 3.5*", + "toolz >=0.7.4", + "xarray >=0.7.0" + ], + "license": "New BSD", + "license_family": "BSD", + "md5": "7a5ea956e3adb00f46417ea0302a0f73", + "name": "datashader", + "requires": [], + "size": 40592, + "version": "0.1.0" + }, + "datashader-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-02", + "depends": [ + "dask >=0.7.6", + "datashape >=0.5.1", + "numba >=0.24.0", + "numpy >=1.7", + "odo >=0.4.1", + "pandas >=0.15.0", + "pillow >=3.1.1", + "python 2.7*", + "toolz >=0.7.4", + "xarray >=0.7.0" + ], + "license": "New BSD", + "license_family": "BSD", + "md5": "06d23908c6d982e36c3bf43f95427936", + "name": "datashader", + "requires": [], + "size": 81047, + "version": "0.2.0" + }, + "datashader-0.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-02", + "depends": [ + "dask >=0.7.6", + "datashape >=0.5.1", + "numba >=0.24.0", + "numpy >=1.7", + "odo >=0.4.1", + "pandas >=0.15.0", + "pillow >=3.1.1", + "python 3.4*", + "toolz >=0.7.4", + "xarray >=0.7.0" + ], + "license": "New BSD", + "license_family": "BSD", + "md5": "aada6d4765ea9c74072f4005e13af830", + "name": "datashader", + "requires": [], + "size": 82785, + "version": "0.2.0" + }, + "datashader-0.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-02", + "depends": [ + "dask >=0.7.6", + "datashape >=0.5.1", + "numba >=0.24.0", + "numpy >=1.7", + "odo >=0.4.1", + "pandas >=0.15.0", + "pillow >=3.1.1", + "python 3.5*", + "toolz >=0.7.4", + "xarray >=0.7.0" + ], + "license": "New BSD", + "license_family": "BSD", + "md5": "448a01080ed56b7a1eb57896a36cdc56", + "name": "datashader", + "requires": [], + "size": 82647, + "version": "0.2.0" + }, + "datashape-0.1.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.7*", + "ply 3.4", + "python 2.6*" + ], + "license": "BSD", + "md5": "c0dae5afc656ffffbfd50e32943bde7f", + "name": "datashape", + "requires": [], + "size": 72320, + "version": "0.1.0" + }, + "datashape-0.1.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.7*", + "ply 3.4", + "python 2.7*" + ], + "license": "BSD", + "md5": "8c8c165694c236683aced6717e727064", + "name": "datashape", + "requires": [], + "size": 72365, + "version": "0.1.0" + }, + "datashape-0.1.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.7*", + "ply 3.4", + "python 3.3*" + ], + "license": "BSD", + "md5": "77daf66c3836ccfcf225533f1af38050", + "name": "datashape", + "requires": [], + "size": 75465, + "version": "0.1.0" + }, + "datashape-0.1.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "ply 3.4", + "python 2.6*" + ], + "license": "BSD", + "md5": "f569936dfa807300dd8bd359e04d1d9b", + "name": "datashape", + "requires": [], + "size": 72504, + "version": "0.1.0" + }, + "datashape-0.1.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "ply 3.4", + "python 2.7*" + ], + "license": "BSD", + "md5": "9298a354f8611c0f2de10dbf932fa7f5", + "name": "datashape", + "requires": [], + "size": 72515, + "version": "0.1.0" + }, + "datashape-0.1.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "ply 3.4", + "python 3.3*" + ], + "license": "BSD", + "md5": "a117a39603a1b3d864477f1701cd22dc", + "name": "datashape", + "requires": [], + "size": 75417, + "version": "0.1.0" + }, + "datashape-0.1.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "ply 3.4", + "python 2.6*" + ], + "license": "BSD", + "md5": "128c500271509ad043be517f45f5299b", + "name": "datashape", + "requires": [], + "size": 74850, + "version": "0.1.1" + }, + "datashape-0.1.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "ply 3.4", + "python 2.7*" + ], + "license": "BSD", + "md5": "831bee214196fa7daebd758e99133b5d", + "name": "datashape", + "requires": [], + "size": 74778, + "version": "0.1.1" + }, + "datashape-0.1.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "ply 3.4", + "python 3.3*" + ], + "license": "BSD", + "md5": "ad8434d8075825b918b5a08879613900", + "name": "datashape", + "requires": [], + "size": 77788, + "version": "0.1.1" + }, + "datashape-0.1.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "ply 3.4", + "python 3.4*" + ], + "license": "BSD", + "md5": "8d7bf7f61d4b5295aa2df401572b9bf3", + "name": "datashape", + "requires": [], + "size": 77679, + "version": "0.1.1" + }, + "datashape-0.2.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "multipledispatch 0.4*", + "nose", + "numpy 1.8*", + "ply 3.4", + "python 2.6*" + ], + "license": "BSD", + "md5": "2f789fc174bbbdf31d63e0dee3369329", + "name": "datashape", + "requires": [], + "size": 74203, + "version": "0.2.0" + }, + "datashape-0.2.0-np18py26_1.tar.bz2": { + "build": "np18py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.8*", + "ply 3.4", + "python 2.6*" + ], + "license": "BSD", + "md5": "a9da900a3d913f9b49c246aa16c7f19d", + "name": "datashape", + "requires": [], + "size": 74154, + "version": "0.2.0" + }, + "datashape-0.2.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "multipledispatch 0.4*", + "nose", + "numpy 1.8*", + "ply 3.4", + "python 2.7*" + ], + "license": "BSD", + "md5": "0db736d18293ef16c588f4860702e9b3", + "name": "datashape", + "requires": [], + "size": 74239, + "version": "0.2.0" + }, + "datashape-0.2.0-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.8*", + "ply 3.4", + "python 2.7*" + ], + "license": "BSD", + "md5": "5cdcd52c50cf3827f8cf4223b0e6ebd2", + "name": "datashape", + "requires": [], + "size": 74196, + "version": "0.2.0" + }, + "datashape-0.2.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "multipledispatch 0.4*", + "nose", + "numpy 1.8*", + "ply 3.4", + "python 3.3*" + ], + "license": "BSD", + "md5": "2054b0c6228915522997dc58f47a8caf", + "name": "datashape", + "requires": [], + "size": 76935, + "version": "0.2.0" + }, + "datashape-0.2.0-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.8*", + "ply 3.4", + "python 3.3*" + ], + "license": "BSD", + "md5": "10631d6b9f7a41934c73633037e233b6", + "name": "datashape", + "requires": [], + "size": 76917, + "version": "0.2.0" + }, + "datashape-0.2.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "multipledispatch 0.4*", + "nose", + "numpy 1.8*", + "ply 3.4", + "python 3.4*" + ], + "license": "BSD", + "md5": "634e54578f25533dffc7af6f46f1986a", + "name": "datashape", + "requires": [], + "size": 77001, + "version": "0.2.0" + }, + "datashape-0.2.0-np18py34_1.tar.bz2": { + "build": "np18py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.8*", + "ply 3.4", + "python 3.4*" + ], + "license": "BSD", + "md5": "21236a6b4b9077343cef6b9588cb9aa2", + "name": "datashape", + "requires": [], + "size": 76888, + "version": "0.2.0" + }, + "datashape-0.3.0-np18py26_1.tar.bz2": { + "build": "np18py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "94b0477f4d927b3fa7e2509299c715cc", + "name": "datashape", + "requires": [], + "size": 84776, + "version": "0.3.0" + }, + "datashape-0.3.0-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "eb3c12ea053b319cce29aceaae08ec7c", + "name": "datashape", + "requires": [], + "size": 84761, + "version": "0.3.0" + }, + "datashape-0.3.0-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "fb03635c438c7da11043c3d57b36eedb", + "name": "datashape", + "requires": [], + "size": 87934, + "version": "0.3.0" + }, + "datashape-0.3.0-np18py34_1.tar.bz2": { + "build": "np18py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "92f7fb3a0b2838cd25efef33d3521d76", + "name": "datashape", + "requires": [], + "size": 87988, + "version": "0.3.0" + }, + "datashape-0.3.0-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2014-09-09", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "80cfead289131ee2f6157a3d3db3a18c", + "name": "datashape", + "requires": [], + "size": 84744, + "version": "0.3.0" + }, + "datashape-0.3.0-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2014-09-09", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a83ac54686aa7c1c55007ceebb967cc6", + "name": "datashape", + "requires": [], + "size": 84644, + "version": "0.3.0" + }, + "datashape-0.3.0-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2014-09-09", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "9fc2bbfd48c9c42f63bd348bf6aec463", + "name": "datashape", + "requires": [], + "size": 87959, + "version": "0.3.0" + }, + "datashape-0.3.0-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2014-09-10", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "7cdcf2bc41d2193219cd53cdbb4b0952", + "name": "datashape", + "requires": [], + "size": 88073, + "version": "0.3.0" + }, + "datashape-0.4.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "c271f66519450d72ded68cc725ca1896", + "name": "datashape", + "requires": [], + "size": 87225, + "version": "0.4.0" + }, + "datashape-0.4.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d02fcd611ecdfd17a5b6afd0b3d046dd", + "name": "datashape", + "requires": [], + "size": 87188, + "version": "0.4.0" + }, + "datashape-0.4.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "97a3c3ce980e8858759869b0b4d8f7ac", + "name": "datashape", + "requires": [], + "size": 90241, + "version": "0.4.0" + }, + "datashape-0.4.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "b4d5af27ed4ff94a414ee1e1bb99ff7c", + "name": "datashape", + "requires": [], + "size": 90554, + "version": "0.4.0" + }, + "datashape-0.4.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "720e45a57ca52fdcd0782c3acaf9ab1e", + "name": "datashape", + "requires": [], + "size": 94672, + "version": "0.4.2" + }, + "datashape-0.4.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "1775bcf69e6ea159736838070499d007", + "name": "datashape", + "requires": [], + "size": 94706, + "version": "0.4.2" + }, + "datashape-0.4.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "9a0d30402902201bdd591f241fe38f94", + "name": "datashape", + "requires": [], + "size": 98135, + "version": "0.4.2" + }, + "datashape-0.4.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "27bb4d039023b574794800289044a6c7", + "name": "datashape", + "requires": [], + "size": 98339, + "version": "0.4.2" + }, + "datashape-0.4.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "4677ae81a1af426b6e45c4983c3241d1", + "name": "datashape", + "requires": [], + "size": 96884, + "version": "0.4.3" + }, + "datashape-0.4.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "78ceb16dab32e85a07757ac5c0a9910e", + "name": "datashape", + "requires": [], + "size": 96929, + "version": "0.4.3" + }, + "datashape-0.4.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "e365a33767fa890a7c66ed82af74eb61", + "name": "datashape", + "requires": [], + "size": 100286, + "version": "0.4.3" + }, + "datashape-0.4.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "5b08c8ed4bdbff4f92c6b650c23289c8", + "name": "datashape", + "requires": [], + "size": 100480, + "version": "0.4.3" + }, + "datashape-0.4.4-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "04c269c1d2582bcadb20560d38c9741b", + "name": "datashape", + "requires": [], + "size": 97321, + "version": "0.4.4" + }, + "datashape-0.4.4-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.6*", + "python-dateutil" + ], + "license": "BSD", + "md5": "3a703af6554bc6ac86091d3591f32d80", + "name": "datashape", + "requires": [], + "size": 97295, + "version": "0.4.4" + }, + "datashape-0.4.4-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "de712f640771a6e28f9a69af5b517bea", + "name": "datashape", + "requires": [], + "size": 97341, + "version": "0.4.4" + }, + "datashape-0.4.4-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.7*", + "python-dateutil" + ], + "license": "BSD", + "md5": "4f1e8ebe9b2671f6ca3900583ee93a39", + "name": "datashape", + "requires": [], + "size": 97280, + "version": "0.4.4" + }, + "datashape-0.4.4-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "c1d071b295899ee47edbe0d78ff95099", + "name": "datashape", + "requires": [], + "size": 100895, + "version": "0.4.4" + }, + "datashape-0.4.4-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.3*", + "python-dateutil" + ], + "license": "BSD", + "md5": "13ea7ce4d6c1a001776bf64444d598e6", + "name": "datashape", + "requires": [], + "size": 100948, + "version": "0.4.4" + }, + "datashape-0.4.4-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "dateutil", + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "e72fecec211b9fd930edde1bd7056c99", + "name": "datashape", + "requires": [], + "size": 101067, + "version": "0.4.4" + }, + "datashape-0.4.4-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.4*", + "python-dateutil" + ], + "license": "BSD", + "md5": "642267a2fe2523e89947097c983429a0", + "name": "datashape", + "requires": [], + "size": 101056, + "version": "0.4.4" + }, + "datashape-0.4.5-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.6*", + "python-dateutil" + ], + "license": "BSD", + "md5": "5156dfdc9c702b5716426f66adafb871", + "name": "datashape", + "requires": [], + "size": 96801, + "version": "0.4.5" + }, + "datashape-0.4.5-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.7*", + "python-dateutil" + ], + "license": "BSD", + "md5": "8164c3c14bc5fcb4ca7db72ddca0deb8", + "name": "datashape", + "requires": [], + "size": 97035, + "version": "0.4.5" + }, + "datashape-0.4.5-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.3*", + "python-dateutil" + ], + "license": "BSD", + "md5": "9b81d1e31206dffaef712e7a59592953", + "name": "datashape", + "requires": [], + "size": 100521, + "version": "0.4.5" + }, + "datashape-0.4.5-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.4*", + "python-dateutil" + ], + "license": "BSD", + "md5": "d737ac061a88b0b11d29507126f59c6c", + "name": "datashape", + "requires": [], + "size": 100754, + "version": "0.4.5" + }, + "datashape-0.4.6-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.6*", + "python-dateutil" + ], + "license": "BSD", + "md5": "5b1c7b62b8b86545a11c61dc72ac57d7", + "name": "datashape", + "requires": [], + "size": 98059, + "version": "0.4.6" + }, + "datashape-0.4.6-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 2.7*", + "python-dateutil" + ], + "license": "BSD", + "md5": "53d31771efadd917623632ca56ace560", + "name": "datashape", + "requires": [], + "size": 98127, + "version": "0.4.6" + }, + "datashape-0.4.6-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.3*", + "python-dateutil" + ], + "license": "BSD", + "md5": "366c08bfd7fc2af281bc805e0de7f287", + "name": "datashape", + "requires": [], + "size": 101987, + "version": "0.4.6" + }, + "datashape-0.4.6-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.4*", + "python-dateutil" + ], + "license": "BSD", + "md5": "b340085efe9937ddc49e251f2e89b286", + "name": "datashape", + "requires": [], + "size": 102022, + "version": "0.4.6" + }, + "datashape-0.4.6-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "multipledispatch 0.4*", + "numpy 1.9*", + "python 3.5*", + "python-dateutil" + ], + "license": "BSD", + "md5": "cdbfe562dea787d5672f313bf4d9be1c", + "name": "datashape", + "requires": [], + "size": 101776, + "version": "0.4.6" + }, + "datashape-0.4.7-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2015-10-29", + "depends": [ + "multipledispatch >=0.4.7", + "numpy 1.10*", + "python 2.7*", + "python-dateutil" + ], + "license": "BSD", + "md5": "95c7a2421f3d58859073667be134149a", + "name": "datashape", + "requires": [], + "size": 82696, + "version": "0.4.7" + }, + "datashape-0.4.7-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2015-10-29", + "depends": [ + "multipledispatch >=0.4.7", + "numpy 1.10*", + "python 3.4*", + "python-dateutil" + ], + "license": "BSD", + "md5": "7a829c9499672b34a64141b523393e3c", + "name": "datashape", + "requires": [], + "size": 85790, + "version": "0.4.7" + }, + "datashape-0.4.7-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2015-10-29", + "depends": [ + "multipledispatch >=0.4.7", + "numpy 1.10*", + "python 3.5*", + "python-dateutil" + ], + "license": "BSD", + "md5": "e89e6b1fa2c2618659a95be18002bffa", + "name": "datashape", + "requires": [], + "size": 85369, + "version": "0.4.7" + }, + "datashape-0.4.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "multipledispatch >=0.4.7", + "numpy", + "python 2.7*", + "python-dateutil" + ], + "license": "BSD", + "md5": "70570c8737671654e17571a9167fbc8c", + "name": "datashape", + "requires": [], + "size": 82246, + "version": "0.4.7" + }, + "datashape-0.4.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "multipledispatch >=0.4.7", + "numpy", + "python 3.4*", + "python-dateutil" + ], + "license": "BSD", + "md5": "a61a0a526c68e8f32095b0eb9c0855c0", + "name": "datashape", + "requires": [], + "size": 85189, + "version": "0.4.7" + }, + "datashape-0.4.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "multipledispatch >=0.4.7", + "numpy", + "python 3.5*", + "python-dateutil" + ], + "license": "BSD", + "md5": "6b7a8e4cc134a717aeae78866718b95f", + "name": "datashape", + "requires": [], + "size": 85004, + "version": "0.4.7" + }, + "datashape-0.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "multipledispatch >=0.4.7", + "numpy", + "python 2.7*", + "python-dateutil" + ], + "license": "BSD", + "md5": "d1d609026b882cf3622faa6344dd8abd", + "name": "datashape", + "requires": [], + "size": 89453, + "version": "0.5.0" + }, + "datashape-0.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "multipledispatch >=0.4.7", + "numpy", + "python 3.4*", + "python-dateutil" + ], + "license": "BSD", + "md5": "4e83008349a7023ce59b25353555a250", + "name": "datashape", + "requires": [], + "size": 92938, + "version": "0.5.0" + }, + "datashape-0.5.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "multipledispatch >=0.4.7", + "numpy", + "python 3.5*", + "python-dateutil" + ], + "license": "BSD", + "md5": "81084c4aaac5ee574261c0629fa69498", + "name": "datashape", + "requires": [], + "size": 92680, + "version": "0.5.0" + }, + "datashape-0.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "multipledispatch >=0.4.7", + "numpy >=1.7", + "python 2.7*", + "python-dateutil" + ], + "license": "BSD", + "md5": "bd0be3cd5f8c7fa9cc04ac7b9c3a1f99", + "name": "datashape", + "requires": [], + "size": 90694, + "version": "0.5.1" + }, + "datashape-0.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "multipledispatch >=0.4.7", + "numpy >=1.7", + "python 3.4*", + "python-dateutil" + ], + "license": "BSD", + "md5": "49d8adf5d10cc97382259c2d9a098e5a", + "name": "datashape", + "requires": [], + "size": 94086, + "version": "0.5.1" + }, + "datashape-0.5.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "multipledispatch >=0.4.7", + "numpy >=1.7", + "python 3.5*", + "python-dateutil" + ], + "license": "BSD", + "md5": "d44ef8c8004edca0f7027dfe7aaf94a6", + "name": "datashape", + "requires": [], + "size": 93635, + "version": "0.5.1" + }, + "dateutil-1.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license_family": "BSD", + "md5": "02613665bf5fde3984bd8e3889861a05", + "name": "dateutil", + "requires": [], + "size": 232226, + "version": "1.5" + }, + "dateutil-1.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "BSD", + "md5": "9ed2e744842e7bf6c6f56f9a88439bd2", + "name": "dateutil", + "requires": [], + "size": 232827, + "version": "1.5" + }, + "dateutil-1.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license_family": "BSD", + "md5": "ced2e9134a4858dcce4e7aa1dd020213", + "name": "dateutil", + "requires": [], + "size": 205059, + "version": "1.5" + }, + "dateutil-2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "six" + ], + "license_family": "BSD", + "md5": "5199a4f8151d5b86cd63694ac4b8aacb", + "name": "dateutil", + "requires": [], + "size": 148167, + "version": "2.1" + }, + "dateutil-2.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "six" + ], + "license_family": "BSD", + "md5": "5c9402af3d53fc3aeb81d6385ef9c7c6", + "name": "dateutil", + "requires": [], + "size": 148174, + "version": "2.1" + }, + "dateutil-2.1-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "six" + ], + "license_family": "BSD", + "md5": "52043ad3f629751c67614c5e9fbfd9e3", + "name": "dateutil", + "requires": [], + "size": 232169, + "version": "2.1" + }, + "dateutil-2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "six" + ], + "license_family": "BSD", + "md5": "34e43a569c75c51a7c109065a318a36a", + "name": "dateutil", + "requires": [], + "size": 148473, + "version": "2.1" + }, + "dateutil-2.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "six" + ], + "license_family": "BSD", + "md5": "b0867108ac2170df1670b18bccdff32e", + "name": "dateutil", + "requires": [], + "size": 148435, + "version": "2.1" + }, + "dateutil-2.1-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "six" + ], + "license_family": "BSD", + "md5": "4df9236c53ea69fe342d1aa76dbb7023", + "name": "dateutil", + "requires": [], + "size": 232735, + "version": "2.1" + }, + "dateutil-2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "six" + ], + "license_family": "BSD", + "md5": "5eeaebb11d136d7f34dad02167025ac7", + "name": "dateutil", + "requires": [], + "size": 149258, + "version": "2.1" + }, + "dateutil-2.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "six" + ], + "license_family": "BSD", + "md5": "73bd2d355e2924005206c9c56099b565", + "name": "dateutil", + "requires": [], + "size": 149286, + "version": "2.1" + }, + "dateutil-2.1-py33_2.tar.bz2": { + "build": "py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "six" + ], + "license_family": "BSD", + "md5": "da51304f2686d9781b1b257c31bb131a", + "name": "dateutil", + "requires": [], + "size": 149363, + "version": "2.1" + }, + "dateutil-2.1-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "825393ef686215b278a4e5af6efc17e6", + "name": "dateutil", + "requires": [], + "size": 150354, + "version": "2.1" + }, + "dateutil-2.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "python 2.6*", + "six" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "941cf44cabdfb1b050ae754fb986ad72", + "name": "dateutil", + "requires": [], + "size": 222642, + "version": "2.4.1" + }, + "dateutil-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "7f917317038e0721e5bfde79c22de79e", + "name": "dateutil", + "requires": [], + "size": 223222, + "version": "2.4.1" + }, + "dateutil-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9dd1657127be3cb0845a6417588a5bbe", + "name": "dateutil", + "requires": [], + "size": 223884, + "version": "2.4.1" + }, + "dateutil-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "530daee0c64115aef5ae831660690edf", + "name": "dateutil", + "requires": [], + "size": 224758, + "version": "2.4.1" + }, + "datrie-0.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-25", + "depends": [ + "python 2.6*" + ], + "license": "LGPLv2", + "license_family": "LGPL", + "md5": "c8770cd77e94de013c6edfbca3caa078", + "name": "datrie", + "requires": [], + "size": 332574, + "version": "0.7" + }, + "datrie-0.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-25", + "depends": [ + "python 2.7*" + ], + "license": "LGPLv2", + "license_family": "LGPL", + "md5": "7910da760626f24ec425b109dd07df28", + "name": "datrie", + "requires": [], + "size": 333400, + "version": "0.7" + }, + "datrie-0.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-25", + "depends": [ + "python 3.3*" + ], + "license": "LGPLv2", + "license_family": "LGPL", + "md5": "6388ccbceba3ae7a6a492d89be0876d0", + "name": "datrie", + "requires": [], + "size": 356310, + "version": "0.7" + }, + "datrie-0.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-25", + "depends": [ + "python 3.4*" + ], + "license": "LGPLv2", + "license_family": "LGPL", + "md5": "9957f41d59e833cc85cf5b254e1eb3ea", + "name": "datrie", + "requires": [], + "size": 387788, + "version": "0.7" + }, + "datrie-0.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "LGPLv2", + "license_family": "LGPL", + "md5": "f056d91d241c2a908b4076002501ce14", + "name": "datrie", + "requires": [], + "size": 388021, + "version": "0.7" + }, + "db-5.3.28-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "AGPLv3", + "license_family": "AGPL", + "md5": "27b1937e6fde0705fd874a5dbe48f33c", + "name": "db", + "requires": [], + "size": 2333083, + "version": "5.3.28" + }, + "dbf-0.96.003-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "enum34", + "python 2.6*" + ], + "license": "BSD", + "md5": "b42f4fe154860c375ab1c11057df5457", + "name": "dbf", + "requires": [], + "size": 166848, + "version": "0.96.003" + }, + "dbf-0.96.003-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "2542f1c926803940e61ffe4e6fb2dab3", + "name": "dbf", + "requires": [], + "size": 166996, + "version": "0.96.003" + }, + "dbf-0.96.003-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "enum34", + "python 3.3*" + ], + "license": "BSD", + "md5": "2c11e706e8ced4a69582e4a6cb9090d2", + "name": "dbf", + "requires": [], + "size": 165443, + "version": "0.96.003" + }, + "dbf-0.96.003-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "989c9c66acdacf28d6eaea04d1d8424a", + "name": "dbf", + "requires": [], + "size": 160595, + "version": "0.96.003" + }, + "dbf-0.96.003-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "50f1b46e3fbef24bace39186bf060e72", + "name": "dbf", + "requires": [], + "size": 159962, + "version": "0.96.003" + }, + "debug-1.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-02-03", + "depends": [], + "license": "Public-Domain", + "md5": "26ff49364fafd79be56cd12213511223", + "name": "debug", + "requires": [], + "size": 762, + "track_features": "debug", + "version": "1.0" + }, + "decorator-3.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "3be2f8577d79236f400494da765c95b8", + "name": "decorator", + "requires": [], + "size": 8217, + "version": "3.4.0" + }, + "decorator-3.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "efc6dc66dfb2fb860fc206d22ae4db3f", + "name": "decorator", + "requires": [], + "size": 8193, + "version": "3.4.0" + }, + "decorator-3.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "77baff6435738e471543384c3cc165b9", + "name": "decorator", + "requires": [], + "size": 5317, + "version": "3.4.0" + }, + "decorator-3.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f35d4d93259d343fe4379d3f894eff15", + "name": "decorator", + "requires": [], + "size": 5320, + "version": "3.4.0" + }, + "decorator-3.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "ec94b115dc7693bc3c7e76a91e4348b3", + "name": "decorator", + "requires": [], + "size": 8617, + "version": "3.4.2" + }, + "decorator-3.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b58d5bda88b92c36e393eaa383b1d606", + "name": "decorator", + "requires": [], + "size": 8588, + "version": "3.4.2" + }, + "decorator-3.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "59adcee7ea85ada22157a665080c4986", + "name": "decorator", + "requires": [], + "size": 5296, + "version": "3.4.2" + }, + "decorator-3.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "6dc5907ecc7cc8c8df03df5e36524d15", + "name": "decorator", + "requires": [], + "size": 5288, + "version": "3.4.2" + }, + "decorator-4.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "d6b01423866f96bf98e30e8ee824cebc", + "name": "decorator", + "requires": [], + "size": 11369, + "version": "4.0.2" + }, + "decorator-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b1e39bfe27696d356d805054976f3cac", + "name": "decorator", + "requires": [], + "size": 11305, + "version": "4.0.2" + }, + "decorator-4.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a06ddf1d0c32d76c56ff19b9eb210f94", + "name": "decorator", + "requires": [], + "size": 6380, + "version": "4.0.2" + }, + "decorator-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e3a14faa6a3346f22489fceff82a1ade", + "name": "decorator", + "requires": [], + "size": 6374, + "version": "4.0.2" + }, + "decorator-4.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "7a204cf802ed17b26b5f8e3141257e6b", + "name": "decorator", + "requires": [], + "size": 6368, + "version": "4.0.2" + }, + "decorator-4.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "816aef9f9565fc85c0b1cc0c61c8859b", + "name": "decorator", + "requires": [], + "size": 11369, + "version": "4.0.4" + }, + "decorator-4.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "5820a40248fb0a55b1ffc3e4ebd1f345", + "name": "decorator", + "requires": [], + "size": 6352, + "version": "4.0.4" + }, + "decorator-4.0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "07109f1c1ee26e33b040f93f7b3834e5", + "name": "decorator", + "requires": [], + "size": 6363, + "version": "4.0.4" + }, + "decorator-4.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ec13f924fa1452892e48d67b9d19e962", + "name": "decorator", + "requires": [], + "size": 11125, + "version": "4.0.6" + }, + "decorator-4.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "38940c838ed01ddd44105d4f4da15fe1", + "name": "decorator", + "requires": [], + "size": 6229, + "version": "4.0.6" + }, + "decorator-4.0.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "bf36a34bc5d388b6c3406927a5bab16c", + "name": "decorator", + "requires": [], + "size": 6243, + "version": "4.0.6" + }, + "decorator-4.0.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "135bda4286a15375129433629547abbb", + "name": "decorator", + "requires": [], + "size": 12079, + "version": "4.0.9" + }, + "decorator-4.0.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b03ac43e5d06af4254630cbfc3d23088", + "name": "decorator", + "requires": [], + "size": 7179, + "version": "4.0.9" + }, + "decorator-4.0.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "94c62d22b3fe082dda8d9841df1953d4", + "name": "decorator", + "requires": [], + "size": 7174, + "version": "4.0.9" + }, + "dill-0.2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8e1eaf4f9f2d75921f28fbeb8b9f4527", + "name": "dill", + "requires": [], + "size": 68530, + "version": "0.2.2" + }, + "dill-0.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "54c16173cd583953b95cdf712af3b815", + "name": "dill", + "requires": [], + "size": 68788, + "version": "0.2.2" + }, + "dill-0.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "df9ffb2e7ea560720f18f9ade966cbfa", + "name": "dill", + "requires": [], + "size": 69656, + "version": "0.2.2" + }, + "dill-0.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2ef419b210ffb881152e8943863e616e", + "name": "dill", + "requires": [], + "size": 69868, + "version": "0.2.2" + }, + "dill-0.2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-23", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a6efe4f91204c7adf041bb1dbb09a4e8", + "name": "dill", + "requires": [], + "size": 71640, + "version": "0.2.3" + }, + "dill-0.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-23", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "efc15f660ed027377de1095ff1ed707d", + "name": "dill", + "requires": [], + "size": 71871, + "version": "0.2.3" + }, + "dill-0.2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-23", + "depends": [ + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f24f730f8e4b138cb54d7c1eaca44b69", + "name": "dill", + "requires": [], + "size": 72786, + "version": "0.2.3" + }, + "dill-0.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-23", + "depends": [ + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6d0c5ed1d212f790d04ec9bdfa3636e3", + "name": "dill", + "requires": [], + "size": 73190, + "version": "0.2.3" + }, + "dill-0.2.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "49c5a3c111ca02692bf5ef5f4a43d2a0", + "name": "dill", + "requires": [], + "size": 72771, + "version": "0.2.4" + }, + "dill-0.2.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4fded09bff51cdd445d7d59dadec2f22", + "name": "dill", + "requires": [], + "size": 73003, + "version": "0.2.4" + }, + "dill-0.2.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d406f27242d73305c30f4cc74a8eefa3", + "name": "dill", + "requires": [], + "size": 73920, + "version": "0.2.4" + }, + "dill-0.2.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a1e74879a29c822727c9a0350cae0477", + "name": "dill", + "requires": [], + "size": 74257, + "version": "0.2.4" + }, + "dill-0.2.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "77e30b51cf2492187915965338a9a752", + "name": "dill", + "requires": [], + "size": 73957, + "version": "0.2.4" + }, + "disco-0.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "erlang R15B01", + "python 2.6*" + ], + "license": "BSD", + "md5": "3fb571145f883f53b68c306dc5998180", + "name": "disco", + "requires": [], + "size": 972931, + "version": "0.4.2" + }, + "disco-0.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "erlang R15B01", + "python 2.7*" + ], + "license": "BSD", + "md5": "79cceb3747ccdc856cada3afcbeff781", + "name": "disco", + "requires": [], + "size": 972437, + "version": "0.4.2" + }, + "disco-0.4.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "erlang R15B01", + "python 2.6*" + ], + "license": "BSD", + "md5": "ae39a0e2968e7f29cd814c9d31c37002", + "name": "disco", + "requires": [], + "size": 981857, + "version": "0.4.4" + }, + "disco-0.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "erlang R15B01", + "python 2.7*" + ], + "license": "BSD", + "md5": "4bf554d35b1a78f20d27288dce5b2b0a", + "name": "disco", + "requires": [], + "size": 981265, + "version": "0.4.4" + }, + "distribute-0.6.30-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "4b8870938e9da1315e1f58b7c2acf967", + "name": "distribute", + "requires": [], + "size": 443491, + "version": "0.6.30" + }, + "distribute-0.6.30-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "40854bfee64524002121834c40005a39", + "name": "distribute", + "requires": [], + "size": 443597, + "version": "0.6.30" + }, + "distribute-0.6.30-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "637314ae0c2c94c7b1aeb52d38dd2a6f", + "name": "distribute", + "requires": [], + "size": 456031, + "version": "0.6.30" + }, + "distribute-0.6.34-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "eeae2bae5c5fe2c7611b4f1eca80e083", + "name": "distribute", + "requires": [], + "size": 446203, + "version": "0.6.34" + }, + "distribute-0.6.34-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "b520a31e906ad4be3da0479117159bcc", + "name": "distribute", + "requires": [], + "size": 446491, + "version": "0.6.34" + }, + "distribute-0.6.34-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "ae68b7b1d9b043889ef2d9643c6a7f24", + "name": "distribute", + "requires": [], + "size": 446560, + "version": "0.6.34" + }, + "distribute-0.6.34-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "9da7ee775dad591cad26e31d255fe5f2", + "name": "distribute", + "requires": [], + "size": 446657, + "version": "0.6.34" + }, + "distribute-0.6.34-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "d08ae521dc47f5a78ef1197668eddb0f", + "name": "distribute", + "requires": [], + "size": 459979, + "version": "0.6.34" + }, + "distribute-0.6.36-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "e6015e148fcc2c389b9ab847b3f8e433", + "name": "distribute", + "requires": [], + "size": 446381, + "version": "0.6.36" + }, + "distribute-0.6.36-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "88c3b45745aeeaf03977ff13c7570aea", + "name": "distribute", + "requires": [], + "size": 446718, + "version": "0.6.36" + }, + "distribute-0.6.36-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "7c726523ad20faf8eb676bac82c2c65a", + "name": "distribute", + "requires": [], + "size": 460373, + "version": "0.6.36" + }, + "distribute-0.6.45-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "f19009cc035224d9737abd1c835f1d74", + "name": "distribute", + "requires": [], + "size": 529492, + "version": "0.6.45" + }, + "distribute-0.6.45-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "db8e3e68a1679a944643bec9500d7942", + "name": "distribute", + "requires": [], + "size": 529544, + "version": "0.6.45" + }, + "distribute-0.6.45-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "a29487fee2c0ad6dc2a1dccf72957833", + "name": "distribute", + "requires": [], + "size": 529648, + "version": "0.6.45" + }, + "distribute-0.6.45-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "00cf558f60d3c16e3c3523eff618bdcc", + "name": "distribute", + "requires": [], + "size": 529624, + "version": "0.6.45" + }, + "distribute-0.6.45-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "7b23488c42db61333e3cde13a99ecf79", + "name": "distribute", + "requires": [], + "size": 550479, + "version": "0.6.45" + }, + "distribute-0.6.45-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "16996ba2a1500c9c08259b11834be1ba", + "name": "distribute", + "requires": [], + "size": 520603, + "version": "0.6.45" + }, + "distribute-0.6.45-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF, ZPL", + "license_family": "PSF", + "md5": "3a55b2939feb1a9ca3d5dcbbdb06e226", + "name": "distribute", + "requires": [], + "size": 516016, + "version": "0.6.45" + }, + "distributed-1.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "boto3", + "click", + "cloudpickle", + "dask", + "futures", + "locket", + "locket", + "python 2.7*", + "setuptools", + "singledispatch", + "six", + "tblib", + "toolz", + "tornado >=4.2" + ], + "license": "BSD", + "md5": "7bac75f1dec0daaa73135629d8dce590", + "name": "distributed", + "requires": [], + "size": 114604, + "version": "1.8.1" + }, + "distributed-1.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "boto3", + "click", + "cloudpickle", + "dask", + "futures", + "locket", + "locket", + "python 3.4*", + "setuptools", + "singledispatch", + "six", + "tblib", + "toolz", + "tornado >=4.2" + ], + "license": "BSD", + "md5": "fae00368564531680ff62e95276ebcd9", + "name": "distributed", + "requires": [], + "size": 118776, + "version": "1.8.1" + }, + "distributed-1.8.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "boto3", + "click", + "cloudpickle", + "dask", + "futures", + "locket", + "locket", + "python 3.5*", + "setuptools", + "singledispatch", + "six", + "tblib", + "toolz", + "tornado >=4.2" + ], + "license": "BSD", + "md5": "054b6c4e00892c0ddd0c850a8140b42c", + "name": "distributed", + "requires": [], + "size": 118257, + "version": "1.8.1" + }, + "distributed-1.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "boto3", + "click", + "cloudpickle", + "dask", + "futures", + "locket", + "locket", + "python 2.7*", + "setuptools", + "singledispatch", + "six", + "tblib", + "toolz", + "tornado >=4.2" + ], + "license": "BSD", + "md5": "3a1637177be812804a48900a15a480fd", + "name": "distributed", + "requires": [], + "size": 136357, + "version": "1.9.1" + }, + "distributed-1.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "boto3", + "click", + "cloudpickle", + "dask", + "futures", + "locket", + "locket", + "python 3.4*", + "setuptools", + "singledispatch", + "six", + "tblib", + "toolz", + "tornado >=4.2" + ], + "license": "BSD", + "md5": "a11f7187a18401607f78ebc62ececd0f", + "name": "distributed", + "requires": [], + "size": 141148, + "version": "1.9.1" + }, + "distributed-1.9.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "boto3", + "click", + "cloudpickle", + "dask", + "futures", + "locket", + "locket", + "python 3.5*", + "setuptools", + "singledispatch", + "six", + "tblib", + "toolz", + "tornado >=4.2" + ], + "license": "BSD", + "md5": "9e797cad79c3076f0fd8b2e66f606376", + "name": "distributed", + "requires": [], + "size": 140511, + "version": "1.9.1" + }, + "django-1.6.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "202e35e8f7ac4f009f781f09a05221b9", + "name": "django", + "requires": [], + "size": 3581598, + "version": "1.6.5" + }, + "django-1.6.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3f92c760c47d072df801c71ff3bfc386", + "name": "django", + "requires": [], + "size": 3581718, + "version": "1.6.5" + }, + "django-1.6.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d2a559e6bb19e4b6affc2ce35657457b", + "name": "django", + "requires": [], + "size": 3673150, + "version": "1.6.5" + }, + "django-1.6.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a5018c11a2bbcdc151c695a53f21b377", + "name": "django", + "requires": [], + "size": 3659617, + "version": "1.6.5" + }, + "django-1.6.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "681f743d37c87affae441992b0e8b597", + "name": "django", + "requires": [], + "size": 3584292, + "version": "1.6.6" + }, + "django-1.6.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3329a520933988e0bd62a5af3b7926b2", + "name": "django", + "requires": [], + "size": 3582237, + "version": "1.6.6" + }, + "django-1.6.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "cb0676be5dc8b3784c29b414582319d8", + "name": "django", + "requires": [], + "size": 3675753, + "version": "1.6.6" + }, + "django-1.6.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "4a3757cee850eb40d387d2d5cff106ae", + "name": "django", + "requires": [], + "size": 3660735, + "version": "1.6.6" + }, + "django-1.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "cd95b124771358f692aa5b004a58f89a", + "name": "django", + "requires": [], + "size": 3906284, + "version": "1.7" + }, + "django-1.7-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-09-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e36726f4bbab27008cb9eff695bd6e5b", + "name": "django", + "requires": [], + "size": 3906205, + "version": "1.7" + }, + "django-1.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "2f0abc52bf55939cacfaa7360096080b", + "name": "django", + "requires": [], + "size": 3998678, + "version": "1.7" + }, + "django-1.7-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-09-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "b0388dc4c4a41ebb611b3d1c1cbb7cc0", + "name": "django", + "requires": [], + "size": 3997394, + "version": "1.7" + }, + "django-1.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f3a47de673ccf7c6cc2b2be33c01e5b9", + "name": "django", + "requires": [], + "size": 3992550, + "version": "1.7" + }, + "django-1.7-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-09-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "aaff90ecc4470b886ac808e59590e754", + "name": "django", + "requires": [], + "size": 3991447, + "version": "1.7" + }, + "django-1.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d1859d9ff03b5f20bb42db172cbd3f0a", + "name": "django", + "requires": [], + "size": 3929680, + "version": "1.7.1" + }, + "django-1.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "af453c6dd5c88c645fd42c60198f378f", + "name": "django", + "requires": [], + "size": 4016445, + "version": "1.7.1" + }, + "django-1.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "03eb354e5baf556aa72059aafaff24f9", + "name": "django", + "requires": [], + "size": 4019727, + "version": "1.7.1" + }, + "django-1.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2a187a49b2f0df723dee635af5506a28", + "name": "django", + "requires": [], + "size": 3934234, + "version": "1.7.2" + }, + "django-1.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "57f80f1d1d36558edaa378fcbb2d65e9", + "name": "django", + "requires": [], + "size": 4022188, + "version": "1.7.2" + }, + "django-1.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8a15f5f6c6fcbe0c9f53812c9af612f5", + "name": "django", + "requires": [], + "size": 4027158, + "version": "1.7.2" + }, + "django-1.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b35675163e2e26bcd44082bff9093852", + "name": "django", + "requires": [], + "size": 3932512, + "version": "1.7.3" + }, + "django-1.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "0a671bf9defce2397803e952c24e1665", + "name": "django", + "requires": [], + "size": 4023930, + "version": "1.7.3" + }, + "django-1.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8ffb9a492bce70061976961dbb0989a7", + "name": "django", + "requires": [], + "size": 4028875, + "version": "1.7.3" + }, + "django-1.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2de91eef7e2824572655cbd50fad99a5", + "name": "django", + "requires": [], + "size": 3332923, + "version": "1.8" + }, + "django-1.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "78534bd2b5c2854d9851e852fee13c30", + "name": "django", + "requires": [], + "size": 3407308, + "version": "1.8" + }, + "django-1.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "0dfead62c5f606f42acd27242d6453b3", + "name": "django", + "requires": [], + "size": 3382699, + "version": "1.8" + }, + "django-1.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7e36d15613781f6f15a108f59ab5778f", + "name": "django", + "requires": [], + "size": 3340803, + "version": "1.8.1" + }, + "django-1.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "87fc01b9756affc7d1ca2c3fcd621116", + "name": "django", + "requires": [], + "size": 3467309, + "version": "1.8.1" + }, + "django-1.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "2ce06533dc293f1ec8ccf48e41fd1555", + "name": "django", + "requires": [], + "size": 3412017, + "version": "1.8.1" + }, + "django-1.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-21", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e8a26593e9dcd3bc2793c348ae00f400", + "name": "django", + "requires": [], + "size": 3340936, + "version": "1.8.2" + }, + "django-1.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-21", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "49beebef8503af6f9f15a8df0669942a", + "name": "django", + "requires": [], + "size": 3468459, + "version": "1.8.2" + }, + "django-1.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-21", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a87f663a9b08dfbda99f8b6c1db01cb6", + "name": "django", + "requires": [], + "size": 3413585, + "version": "1.8.2" + }, + "django-1.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "57e9ed59403c6a6a8ede3224a3946643", + "name": "django", + "requires": [], + "size": 3342308, + "version": "1.8.3" + }, + "django-1.8.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3532a5f2c0240d05e88ed4716ce74529", + "name": "django", + "requires": [], + "size": 3471892, + "version": "1.8.3" + }, + "django-1.8.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "fc77f0659a1937732012978bb8d618ec", + "name": "django", + "requires": [], + "size": 3416955, + "version": "1.8.3" + }, + "django-1.8.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-20", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "a66ef0dc5b611c3efd26c82497147c2b", + "name": "django", + "requires": [], + "size": 3342685, + "version": "1.8.4" + }, + "django-1.8.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-20", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8c9504e824758ac7c2b960618df55052", + "name": "django", + "requires": [], + "size": 3418590, + "version": "1.8.4" + }, + "django-1.8.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "36f7b3e0e7bc6d89d2e9ab52770a500f", + "name": "django", + "requires": [], + "size": 3407678, + "version": "1.8.4" + }, + "django-1.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-26", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7d801ff1d0206fe419b6b910ef4dd377", + "name": "django", + "requires": [], + "size": 3701977, + "version": "1.9.2" + }, + "django-1.9.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-26", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "91ca7bb8afa92ea10abbdcff7228df01", + "name": "django", + "requires": [], + "size": 3762086, + "version": "1.9.2" + }, + "django-1.9.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-26", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "1e4b3d3091c8608d03dfbd259081eeed", + "name": "django", + "requires": [], + "size": 3753344, + "version": "1.9.2" + }, + "dnspython-1.10.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD-style (http://www.dnspython.org/LICENSE)", + "license_family": "BSD", + "md5": "1b510c05f7670aeae051ae8cf39020b3", + "name": "dnspython", + "requires": [], + "size": 138357, + "version": "1.10.0" + }, + "dnspython-1.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD-style (http://www.dnspython.org/LICENSE)", + "license_family": "BSD", + "md5": "783561527b8c6decb408bedbbb9115b2", + "name": "dnspython", + "requires": [], + "size": 138266, + "version": "1.10.0" + }, + "dnspython-1.12.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "python 2.6*" + ], + "license": "BSD-style (http://www.dnspython.org/LICENSE)", + "license_family": "BSD", + "md5": "1304956eb056d0bf4d317d2b1ad16576", + "name": "dnspython", + "requires": [], + "size": 149021, + "version": "1.12.0" + }, + "dnspython-1.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "python 2.7*" + ], + "license": "BSD-style (http://www.dnspython.org/LICENSE)", + "license_family": "BSD", + "md5": "730083789f41867ba21edd8dbd36fc3a", + "name": "dnspython", + "requires": [], + "size": 149604, + "version": "1.12.0" + }, + "docopt-0.6.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "d125cd9f321dbf01b5e9bb8d837cacb3", + "name": "docopt", + "requires": [], + "size": 19053, + "version": "0.6.2" + }, + "docopt-0.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "87a6ed6739a71a567e1a2fd5d869d700", + "name": "docopt", + "requires": [], + "size": 18943, + "version": "0.6.2" + }, + "docopt-0.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "3a089ee64feabecc4fd17f614a4eddab", + "name": "docopt", + "requires": [], + "size": 19590, + "version": "0.6.2" + }, + "docopt-0.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "9a5af82aaa36bf46fc55d2f765a8b6c4", + "name": "docopt", + "requires": [], + "size": 19494, + "version": "0.6.2" + }, + "docopt-0.6.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "bfe56c11043e73ed2ab3c83792cedae5", + "name": "docopt", + "requires": [], + "size": 19189, + "version": "0.6.2" + }, + "docutils-0.10-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "3381cd22cd83713c72ca019734b07fd6", + "name": "docutils", + "requires": [], + "size": 641877, + "version": "0.10" + }, + "docutils-0.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "139004d98048127c8b3d4c88177b9e7b", + "name": "docutils", + "requires": [], + "size": 642794, + "version": "0.10" + }, + "docutils-0.10-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "37c92bd1219d64935b77c4bb64a159f6", + "name": "docutils", + "requires": [], + "size": 657363, + "version": "0.10" + }, + "docutils-0.11-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "511fc1f694b02128611ba3e22900ef36", + "name": "docutils", + "requires": [], + "size": 649425, + "version": "0.11" + }, + "docutils-0.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "b75ff54523a6bd636d4e2848c95f7650", + "name": "docutils", + "requires": [], + "size": 650274, + "version": "0.11" + }, + "docutils-0.11-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "a7badc93c6dc61c375664109a98d0e00", + "name": "docutils", + "requires": [], + "size": 662719, + "version": "0.11" + }, + "docutils-0.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "840d54f40d4f7b99cf4b9edf58e7c2ad", + "name": "docutils", + "requires": [], + "size": 687430, + "version": "0.11" + }, + "docutils-0.12-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "7494bda1432610a04bb6cadd0f3c1fe2", + "name": "docutils", + "requires": [], + "size": 650266, + "version": "0.12" + }, + "docutils-0.12-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "30c186f59d73b206baa0094bbe60574f", + "name": "docutils", + "requires": [], + "size": 650997, + "version": "0.12" + }, + "docutils-0.12-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "5291ec7d0f287b68e944bc384509a5f2", + "name": "docutils", + "requires": [], + "size": 663692, + "version": "0.12" + }, + "docutils-0.12-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "16d0367f3ca59a016dcfa6c2b13f674b", + "name": "docutils", + "requires": [], + "size": 687849, + "version": "0.12" + }, + "docutils-0.12-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "03c48de0e896014671504e9aca0affbf", + "name": "docutils", + "requires": [], + "size": 681228, + "version": "0.12" + }, + "docutils-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "01edfa9fd24284e8b0c449d5c28371bb", + "name": "docutils", + "requires": [], + "size": 617050, + "version": "0.9.1" + }, + "docutils-0.9.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "9ca8ea06a51a48c6b5b0ec8662f1cf6c", + "name": "docutils", + "requires": [], + "size": 617092, + "version": "0.9.1" + }, + "docutils-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "399a14da2ff35806d93fa15f50386587", + "name": "docutils", + "requires": [], + "size": 617310, + "version": "0.9.1" + }, + "docutils-0.9.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain, PSF, 2-clause BSD, GPLv3", + "license_family": "GPL3", + "md5": "d4aca9de6ff483c23a1b84656e5107bb", + "name": "docutils", + "requires": [], + "size": 617248, + "version": "0.9.1" + }, + "drmaa-0.7.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "c9d6da40b0cf8f9c111ec1c84883bfa0", + "name": "drmaa", + "requires": [], + "size": 24434, + "version": "0.7.6" + }, + "drmaa-0.7.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "abc20e5bbd08895bbc7e71b57438b5ba", + "name": "drmaa", + "requires": [], + "size": 24754, + "version": "0.7.6" + }, + "drmaa-0.7.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ed608c60f7c5db62883f60b1029af775", + "name": "drmaa", + "requires": [], + "size": 24784, + "version": "0.7.6" + }, + "drmaa-0.7.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "d4102248ca2e6264d3cca4c8e5ccfea8", + "name": "drmaa", + "requires": [], + "size": 24777, + "version": "0.7.6" + }, + "dropbox-1.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.7*" + ], + "license": "proprietary - Dropbox Inc.", + "license_family": "Proprietary", + "md5": "d70817c8a159929d47c509cde204b5c8", + "name": "dropbox", + "requires": [], + "size": 39637, + "version": "1.5.1" + }, + "dynd-python-0.3.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.3.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "ab8110c6447a639fb9fd9b8fa5f1e9b5", + "name": "dynd-python", + "requires": [], + "size": 1299905, + "version": "0.3.0" + }, + "dynd-python-0.3.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.3.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "1a51a3eae266680ce8bbf75a64f68163", + "name": "dynd-python", + "requires": [], + "size": 1300002, + "version": "0.3.0" + }, + "dynd-python-0.3.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.3.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "393f55c5c81aba11573a649080419f1a", + "name": "dynd-python", + "requires": [], + "size": 1268347, + "version": "0.3.0" + }, + "dynd-python-0.4.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.4.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "37088acd6a71f2bb85b54349b5ca1f5b", + "name": "dynd-python", + "requires": [], + "size": 1400018, + "version": "0.4.0" + }, + "dynd-python-0.4.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.4.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "065b58ddfa6caf63948da32c6d4a77cf", + "name": "dynd-python", + "requires": [], + "size": 1400375, + "version": "0.4.0" + }, + "dynd-python-0.4.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.4.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "f0e6b60a49ddc20f59a8d7ba964960b0", + "name": "dynd-python", + "requires": [], + "size": 1365361, + "version": "0.4.0" + }, + "dynd-python-0.4.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.4.2", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "26442b2b4f386a057a13e90a532786c5", + "name": "dynd-python", + "requires": [], + "size": 1412313, + "version": "0.4.2" + }, + "dynd-python-0.4.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.4.2", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "fae102249d469c9bf46b8c0d923ecb78", + "name": "dynd-python", + "requires": [], + "size": 1412660, + "version": "0.4.2" + }, + "dynd-python-0.4.2-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.4.2", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "a0b5910858f4b56c296ce2d2c656f5b0", + "name": "dynd-python", + "requires": [], + "size": 1378095, + "version": "0.4.2" + }, + "dynd-python-0.5.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.5.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "efdab14313a95a683f2798c20ececf10", + "name": "dynd-python", + "requires": [], + "size": 1578151, + "version": "0.5.0" + }, + "dynd-python-0.5.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.5.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "86a23ff87fdd76a17cf8cd4c90f13c98", + "name": "dynd-python", + "requires": [], + "size": 1577846, + "version": "0.5.0" + }, + "dynd-python-0.5.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.5.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "204d69c3427ed817bd3e8480aaa01a91", + "name": "dynd-python", + "requires": [], + "size": 1523044, + "version": "0.5.0" + }, + "dynd-python-0.6.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "d01d6f817cf60955ab7d855ef2bf81d0", + "name": "dynd-python", + "requires": [], + "size": 1679964, + "version": "0.6.0" + }, + "dynd-python-0.6.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "bd5d78caeb7b0b58af934a853a743800", + "name": "dynd-python", + "requires": [], + "size": 1680159, + "version": "0.6.0" + }, + "dynd-python-0.6.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "39103f273cd1c29949ea2d686261fb7b", + "name": "dynd-python", + "requires": [], + "size": 1635325, + "version": "0.6.0" + }, + "dynd-python-0.6.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.0", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "030c1d4ff4f318c3ca48fb988a586f71", + "name": "dynd-python", + "requires": [], + "size": 1682049, + "version": "0.6.0" + }, + "dynd-python-0.6.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.0", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "2dbcd5a75640c058e85acc232c340f6d", + "name": "dynd-python", + "requires": [], + "size": 1681941, + "version": "0.6.0" + }, + "dynd-python-0.6.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.0", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "7bed9687166ef9c479c98501ddfdb14d", + "name": "dynd-python", + "requires": [], + "size": 1636216, + "version": "0.6.0" + }, + "dynd-python-0.6.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.1", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "095661780e1f8a5e0351039b8ce9b2c1", + "name": "dynd-python", + "requires": [], + "size": 1789398, + "version": "0.6.1" + }, + "dynd-python-0.6.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.1", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "efeda7004b3d85ba9e9d4e34e3d9f58f", + "name": "dynd-python", + "requires": [], + "size": 1789380, + "version": "0.6.1" + }, + "dynd-python-0.6.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.1", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "55ac28453b931599e82c9bde94ca7bd5", + "name": "dynd-python", + "requires": [], + "size": 1755992, + "version": "0.6.1" + }, + "dynd-python-0.6.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.2", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "f2f6c12b62f6981e355656440e18847d", + "name": "dynd-python", + "requires": [], + "size": 1871227, + "version": "0.6.2" + }, + "dynd-python-0.6.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.2", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "2cbfa7592d32af7ee82e9dd0956e4750", + "name": "dynd-python", + "requires": [], + "size": 1870791, + "version": "0.6.2" + }, + "dynd-python-0.6.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.2", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "fd71612506417284c5f13e20aaf71e24", + "name": "dynd-python", + "requires": [], + "size": 1824954, + "version": "0.6.2" + }, + "dynd-python-0.6.2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.2", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "d566a0c76859f52f3a6da1e4f5ee8d72", + "name": "dynd-python", + "requires": [], + "size": 1859658, + "version": "0.6.2" + }, + "dynd-python-0.6.4-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.4", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "8f7565cf6beb91895588ec3a4558e1c3", + "name": "dynd-python", + "requires": [], + "size": 2465966, + "version": "0.6.4" + }, + "dynd-python-0.6.4-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.4", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0d755cab1f650d0c6cec8d39cf0c76a3", + "name": "dynd-python", + "requires": [], + "size": 2464183, + "version": "0.6.4" + }, + "dynd-python-0.6.4-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.4", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "26dac33b368be8f82df7d97b80b927cb", + "name": "dynd-python", + "requires": [], + "size": 2424184, + "version": "0.6.4" + }, + "dynd-python-0.6.4-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libdynd 0.6.4", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "077f9f844487a3c0a28e81163da3de0e", + "name": "dynd-python", + "requires": [], + "size": 2463855, + "version": "0.6.4" + }, + "dynd-python-0.6.5-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "libdynd 0.6.5", + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "8a81c606e5a725d42cfeaea3721eb791", + "name": "dynd-python", + "requires": [], + "size": 2535792, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-29", + "depends": [ + "libdynd 0.6.5", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "9a2318ccc195b311023f80efa95bf3d9", + "name": "dynd-python", + "requires": [], + "size": 2523055, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-29", + "depends": [ + "libdynd 0.6.5", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "b923f2dee6ae2dd7771772bfbd54ef25", + "name": "dynd-python", + "requires": [], + "size": 2522326, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-29", + "depends": [ + "libdynd 0.6.5", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "a8bd91bdf34c238e5825ea7e30946ad2", + "name": "dynd-python", + "requires": [], + "size": 2482489, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-29", + "depends": [ + "libdynd 0.6.5", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "edbb5ed6338675a98c59624481f8931f", + "name": "dynd-python", + "requires": [], + "size": 2520179, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "libdynd 0.6.5", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "7acc112654585920eb25dcc1126cc12a", + "name": "dynd-python", + "requires": [], + "size": 2522588, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "libdynd 0.6.5", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7bfda96e7a42ddb2c07e4f13f6de1fed", + "name": "dynd-python", + "requires": [], + "size": 2522909, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "libdynd 0.6.5", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "502049699d89efb99581badeb1d8e2c9", + "name": "dynd-python", + "requires": [], + "size": 2482481, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "libdynd 0.6.5", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "a5be6651504fc871fe271a33fa1cb7c1", + "name": "dynd-python", + "requires": [], + "size": 2518451, + "version": "0.6.5" + }, + "dynd-python-0.6.5-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "libdynd 0.6.5", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "67b60902b14d9b08ccf823f3711c8de0", + "name": "dynd-python", + "requires": [], + "size": 2512212, + "version": "0.6.5" + }, + "dynd-python-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "libdynd", + "numpy", + "python 2.7*" + ], + "license": "BSD", + "md5": "97193e67ad2745e99b37da14a2a61736", + "name": "dynd-python", + "requires": [], + "size": 3323024, + "version": "0.7.0" + }, + "dynd-python-0.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "libdynd", + "numpy", + "python 3.5*" + ], + "license": "BSD", + "md5": "9b3be27d98cf301cdb0cdfb3f6af7b11", + "name": "dynd-python", + "requires": [], + "size": 3357660, + "version": "0.7.0" + }, + "dynd-python-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-03", + "depends": [ + "libdynd", + "numpy", + "python 2.7*" + ], + "license": "BSD", + "md5": "d6755b23172d8794461c0dfcf9fe6b52", + "name": "dynd-python", + "requires": [], + "size": 2780884, + "version": "0.7.1" + }, + "dynd-python-0.7.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-03", + "depends": [ + "libdynd", + "numpy", + "python 3.5*" + ], + "license": "BSD", + "md5": "f20a976161050b3ad413c5527fd94ab3", + "name": "dynd-python", + "requires": [], + "size": 2810467, + "version": "0.7.1" + }, + "dynd-python-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "libdynd", + "numpy", + "python 2.7*" + ], + "license": "BSD", + "md5": "77e94accbe86996b90e7c84d0cb03025", + "name": "dynd-python", + "requires": [], + "size": 3244996, + "version": "0.7.2" + }, + "dynd-python-0.7.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "libdynd", + "numpy", + "python 3.5*" + ], + "license": "BSD", + "md5": "417e46c826c0d8cd889377cf4fc92183", + "name": "dynd-python", + "requires": [], + "size": 3266537, + "version": "0.7.2" + }, + "ecdsa-0.10-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "08d3a6c2290f672062a079020732690e", + "name": "ecdsa", + "requires": [], + "size": 74298, + "version": "0.10" + }, + "ecdsa-0.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "fa4124a6037febb5eceb070f112f9e92", + "name": "ecdsa", + "requires": [], + "size": 74323, + "version": "0.10" + }, + "ecdsa-0.10-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "6aa729c16d8a1d428ee0e219cf63e86c", + "name": "ecdsa", + "requires": [], + "size": 75688, + "version": "0.10" + }, + "ecdsa-0.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "d1204f561dc939f5abe299d4bfe743b0", + "name": "ecdsa", + "requires": [], + "size": 75746, + "version": "0.10" + }, + "ecdsa-0.11-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "f2533ee895fb82a064730a51fa7a037b", + "name": "ecdsa", + "requires": [], + "size": 74729, + "version": "0.11" + }, + "ecdsa-0.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "eaaa8f0cb71dd2855fae02499747f852", + "name": "ecdsa", + "requires": [], + "size": 74742, + "version": "0.11" + }, + "ecdsa-0.11-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "cadf7328700e0941e25ea70a7286b72f", + "name": "ecdsa", + "requires": [], + "size": 76091, + "version": "0.11" + }, + "ecdsa-0.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "29973bcaae1c395cd145c799dd51f3be", + "name": "ecdsa", + "requires": [], + "size": 76196, + "version": "0.11" + }, + "ecdsa-0.13-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "15b03033eafd271d390da3b301005a8c", + "name": "ecdsa", + "requires": [], + "size": 74969, + "version": "0.13" + }, + "ecdsa-0.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "57d1f44a77583a3b203ca8908c0354b3", + "name": "ecdsa", + "requires": [], + "size": 75042, + "version": "0.13" + }, + "ecdsa-0.13-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "8bc79541be45d568f111f6d3eb943e57", + "name": "ecdsa", + "requires": [], + "size": 76408, + "version": "0.13" + }, + "ecdsa-0.13-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "c0f5bca6c2dc20c9949c23f02beece4e", + "name": "ecdsa", + "requires": [], + "size": 76446, + "version": "0.13" + }, + "ecdsa-0.13-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "df146dd6e69e530bc73ba1ca7c0a9ad5", + "name": "ecdsa", + "requires": [], + "size": 76117, + "version": "0.13" + }, + "ecos-2.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "numpy", + "python 2.7*", + "scipy" + ], + "license": "GPL3", + "md5": "e302f3f2a51f028da25aff51533a67b9", + "name": "ecos", + "requires": [], + "size": 115940, + "version": "2.0.4" + }, + "ecos-2.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "numpy", + "python 3.4*", + "scipy" + ], + "license": "GPL3", + "md5": "aa12532725bcf20618d2832e59823f5d", + "name": "ecos", + "requires": [], + "size": 118495, + "version": "2.0.4" + }, + "ecos-2.0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "numpy", + "python 3.5*", + "scipy" + ], + "license": "GPL3", + "md5": "860741ee2389d8046b191a89efeea36d", + "name": "ecos", + "requires": [], + "size": 118616, + "version": "2.0.4" + }, + "enable-4.3.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "imaging 1.1.7", + "numpy 1.7*", + "pyside", + "python 2.7*", + "traitsui 4.3.0" + ], + "license": "BSD", + "md5": "cfff75494d842cea500c2e52ae6e6bbf", + "name": "enable", + "requires": [], + "size": 3768468, + "version": "4.3.0" + }, + "enable-4.3.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pil 1.1.7", + "pyside", + "python 2.7*", + "traitsui 4.4.0" + ], + "license": "BSD", + "md5": "9d47c05aa37cfc5dc6b3e17dfc9a2142", + "name": "enable", + "requires": [], + "size": 3768871, + "version": "4.3.0" + }, + "enable-4.3.0-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pil 1.1.7", + "pyside", + "python 2.7*", + "traitsui 4.4.0" + ], + "license": "BSD", + "md5": "77aeb8ba8026e50c86113fd95d8ef7e6", + "name": "enable", + "requires": [], + "size": 3766519, + "version": "4.3.0" + }, + "enable-4.3.0-np18py27_2.tar.bz2": { + "build": "np18py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pil 1.1.7", + "pyqt", + "python 2.7*", + "traitsui 4.4.0" + ], + "license": "BSD", + "md5": "30b92c4ed26e51b4a2dd5f1237009533", + "name": "enable", + "requires": [], + "size": 3767515, + "version": "4.3.0" + }, + "enable-4.3.0-np19py27_2.tar.bz2": { + "build": "np19py27_2", + "build_number": 2, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "pil 1.1.7", + "pyqt", + "python 2.7*", + "traitsui 4.4.0" + ], + "license": "BSD", + "md5": "ade61def8f13669ef4bad484b6992e29", + "name": "enable", + "requires": [], + "size": 4089636, + "version": "4.3.0" + }, + "enable-4.3.0-np19py27_3.tar.bz2": { + "build": "np19py27_3", + "build_number": 3, + "date": "2015-03-04", + "depends": [ + "numpy 1.9*", + "pillow", + "pyqt", + "python 2.7*", + "traitsui 4.4.0" + ], + "license": "BSD", + "md5": "27b8078e3e47ef82eee33da859589a3b", + "name": "enable", + "requires": [], + "size": 4089705, + "version": "4.3.0" + }, + "enable-4.4.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "numpy 1.9*", + "pillow", + "pyqt", + "python 2.7*", + "traitsui 4.4.0" + ], + "license": "BSD", + "md5": "0b78f449d812df0f1ce04c768f9043cf", + "name": "enable", + "requires": [], + "size": 4088924, + "version": "4.4.1" + }, + "enable-4.5.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "pillow", + "pyqt", + "python 2.7*", + "traitsui 4.5.1" + ], + "license": "BSD", + "md5": "ec609535bc5ad899ceb22a3fee3e47b1", + "name": "enable", + "requires": [], + "size": 4183780, + "version": "4.5.1" + }, + "enable-4.5.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "numpy 1.9*", + "pillow", + "pyqt", + "python 2.7*", + "traitsui 4.5.1" + ], + "license": "BSD", + "md5": "e6e332c87f171de1e352d3f0125fd762", + "name": "enable", + "requires": [], + "size": 4182532, + "version": "4.5.1" + }, + "enaml-0.7.19-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "atom 0.3.2", + "casuarius 1.1", + "ply 3.4", + "pyside", + "python 2.7*" + ], + "license": "BSD", + "md5": "3810045edf1e7017b09091246ab8ba3e", + "name": "enaml", + "requires": [], + "size": 1185542, + "version": "0.7.19" + }, + "enaml-0.7.19-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "atom 0.3.2", + "casuarius 1.1", + "ply 3.4", + "pyside", + "python 2.7*" + ], + "license": "BSD", + "md5": "8852d8effac6783d93278decfd0faff8", + "name": "enaml", + "requires": [], + "size": 1185229, + "version": "0.7.19" + }, + "enaml-0.7.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "atom 0.2.3", + "casuarius 1.1", + "ply 3.4", + "pyside", + "python 2.7*" + ], + "license": "BSD", + "md5": "ea36fa2a55ccbfa46b2628dfe1bd66b4", + "name": "enaml", + "requires": [], + "size": 1120748, + "version": "0.7.6" + }, + "enaml-0.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "atom 0.3.4", + "casuarius 1.1", + "ply 3.4", + "pyside", + "python 2.7*" + ], + "license": "BSD", + "md5": "ffbd87324e5016e6118e03ffb97b9cfb", + "name": "enaml", + "requires": [], + "size": 1332667, + "version": "0.8.3" + }, + "enaml-0.8.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "atom 0.3.5", + "casuarius 1.1", + "ply 3.4", + "pyside", + "python 2.7*" + ], + "license": "BSD", + "md5": "a0c8aace528c33ac7e894d7c07e816da", + "name": "enaml", + "requires": [], + "size": 1367802, + "version": "0.8.9" + }, + "enaml-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "atom 0.3.6", + "kiwisolver 0.1.2", + "ply 3.4", + "pyside", + "python 2.7*" + ], + "license": "BSD", + "md5": "b8d78c8a04ec3b8d8a7278f98172bf1e", + "name": "enaml", + "requires": [], + "size": 1351417, + "version": "0.9.0" + }, + "enaml-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "atom 0.3.7", + "kiwisolver 0.1.2", + "ply 3.4", + "pyside", + "python 2.7*" + ], + "license": "BSD", + "md5": "870c22f33c704aa7448bf79f07136b69", + "name": "enaml", + "requires": [], + "size": 1340613, + "version": "0.9.1" + }, + "enaml-0.9.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "atom 0.3.7", + "kiwisolver 0.1.2", + "ply 3.4", + "pyqt", + "python 2.7*" + ], + "license": "BSD", + "md5": "cd3815547cae87565de77f1225ba69ba", + "name": "enaml", + "requires": [], + "size": 1341099, + "version": "0.9.1" + }, + "enaml-0.9.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "atom 0.3.9", + "kiwisolver 0.1.2", + "ply 3.4", + "pyqt", + "python 2.7*" + ], + "license": "BSD", + "md5": "7735e1700a1a410fb5772728266db3e4", + "name": "enaml", + "requires": [], + "size": 1364545, + "version": "0.9.7" + }, + "enaml-0.9.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "atom 0.3.9", + "kiwisolver 0.1.3", + "ply 3.4", + "pyqt", + "python 2.7*" + ], + "license": "BSD", + "md5": "af22719c5308b32703f310eb57ecb9b7", + "name": "enaml", + "requires": [], + "size": 958509, + "version": "0.9.8" + }, + "enaml-0.9.8-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-03-09", + "depends": [ + "atom >=0.3.8", + "kiwisolver >=0.1.2", + "ply >=3.4", + "pyqt", + "python 2.7*" + ], + "license": "BSD", + "md5": "1ac4e18298a04e36dfc7dae0511ffa6b", + "name": "enaml", + "requires": [], + "size": 966882, + "version": "0.9.8" + }, + "enum34-1.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "ordereddict", + "python 2.6*" + ], + "license": "BSD", + "md5": "cfbfe05b93bb862ac105584a88dffbd7", + "name": "enum34", + "requires": [], + "size": 48860, + "version": "1.0.3" + }, + "enum34-1.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f11602dce621c6d7066418e7f2d5fd10", + "name": "enum34", + "requires": [], + "size": 48724, + "version": "1.0.3" + }, + "enum34-1.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "c5c6852a426c2bfe5ab34f2f8a914072", + "name": "enum34", + "requires": [], + "size": 50993, + "version": "1.0.3" + }, + "enum34-1.0.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "ordereddict", + "python 2.6*" + ], + "license": "BSD", + "md5": "f183c6888861d63c5e26053709aa5239", + "name": "enum34", + "requires": [], + "size": 49476, + "version": "1.0.4" + }, + "enum34-1.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7bc95170ede73d27643b91a8731f4927", + "name": "enum34", + "requires": [], + "size": 49354, + "version": "1.0.4" + }, + "enum34-1.0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e21e54498ab94aa58bb016435934aff3", + "name": "enum34", + "requires": [], + "size": 51623, + "version": "1.0.4" + }, + "enum34-1.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d69c4670ce47c460e53073612996c792", + "name": "enum34", + "requires": [], + "size": 55870, + "version": "1.1.1" + }, + "enum34-1.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8b8a2049a351f425e5442dfd1baf8663", + "name": "enum34", + "requires": [], + "size": 55832, + "version": "1.1.2" + }, + "envisage-4.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "5c247ea480aafb6186f234d9aea5fb7e", + "name": "envisage", + "requires": [], + "size": 272077, + "version": "4.3.0" + }, + "envisage-4.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "5bcc7ff60f49f3df270924c21f9e0ed6", + "name": "envisage", + "requires": [], + "size": 272665, + "version": "4.4.0" + }, + "envisage-4.4.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "3d9f99868de8792175777d544d5e81f5", + "name": "envisage", + "requires": [], + "size": 272984, + "version": "4.4.0" + }, + "ephem-3.7.5.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "4e9298effa95b5609a8247a57e30cee1", + "name": "ephem", + "requires": [], + "size": 960520, + "version": "3.7.5.3" + }, + "ephem-3.7.5.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "47cb538553b20b213a1a26d6f140f9e8", + "name": "ephem", + "requires": [], + "size": 960585, + "version": "3.7.5.3" + }, + "ephem-3.7.5.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "a5e7a0a74e6dc25b4d806df31c865daa", + "name": "ephem", + "requires": [], + "size": 964298, + "version": "3.7.5.3" + }, + "ephem-3.7.5.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "5063fe37545a6de61f436f260eec1acd", + "name": "ephem", + "requires": [], + "size": 967233, + "version": "3.7.5.3" + }, + "ephem-3.7.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-19", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "4fbb4c046f3d53a0f9ca2b2900b79f92", + "name": "ephem", + "requires": [], + "size": 961732, + "version": "3.7.6.0" + }, + "ephem-3.7.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-19", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "3da13f9d7afff247ba4eb800ba9a4850", + "name": "ephem", + "requires": [], + "size": 969552, + "version": "3.7.6.0" + }, + "ephem-3.7.6.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "LGPL", + "md5": "15274d4214f668b3617bca11e2f0f6c1", + "name": "ephem", + "requires": [], + "size": 969470, + "version": "3.7.6.0" + }, + "erlang-R15B01-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*" + ], + "license": "Erlang Public License 1.1 (http://www.erlang.org/EPLICENSE)", + "license_family": "Other", + "md5": "6232b6481def92e4a70a8d215792511e", + "name": "erlang", + "requires": [], + "size": 53554431, + "version": "R15B01" + }, + "erlang-R15B01-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2016-02-22", + "depends": [ + "openssl 1.0.2*", + "readline 6.2*" + ], + "license": "Erlang Public License 1.1 (http://www.erlang.org/EPLICENSE)", + "license_family": "Other", + "md5": "0a86f3fa96da4b18cf9580fd2c2c5ae7", + "name": "erlang", + "requires": [], + "size": 54504625, + "version": "R15B01" + }, + "essbasepy-11.1.2012.0514-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "5949697d54b81c0566bc5cef0ba567ef", + "name": "essbasepy", + "requires": [], + "size": 10755, + "version": "11.1.2012.0514" + }, + "essbasepy-11.1.2012.0514-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ea7bea303a5f8bd3fab7b0a396f0bf5d", + "name": "essbasepy", + "requires": [], + "size": 10798, + "version": "11.1.2012.0514" + }, + "et_xmlfile-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "e14c617f590057cc25a5f23cb5af7811", + "name": "et_xmlfile", + "requires": [], + "size": 15305, + "version": "1.0.1" + }, + "et_xmlfile-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "ae6afc3710cdb046e90cd07a03d47e46", + "name": "et_xmlfile", + "requires": [], + "size": 15835, + "version": "1.0.1" + }, + "et_xmlfile-1.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "c4ecc86145dc231f2183ffb7a07bf8f9", + "name": "et_xmlfile", + "requires": [], + "size": 15812, + "version": "1.0.1" + }, + "execnet-1.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "9f05cbf2a159083de07e3c8ece4da19b", + "name": "execnet", + "requires": [], + "size": 58486, + "version": "1.2.0" + }, + "execnet-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "6b48b4d345cc90e228b80f3605f8b8dd", + "name": "execnet", + "requires": [], + "size": 58418, + "version": "1.2.0" + }, + "execnet-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "93290a692b2cae370620da89bef0ade7", + "name": "execnet", + "requires": [], + "size": 60533, + "version": "1.2.0" + }, + "execnet-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "52b6f973514a846c43740684084c823c", + "name": "execnet", + "requires": [], + "size": 60498, + "version": "1.2.0" + }, + "execnet-1.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "6124413937ab7a0d55c89c8820ec8e2b", + "name": "execnet", + "requires": [], + "size": 58967, + "version": "1.3.0" + }, + "execnet-1.3.0-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-05-29", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "942bcaeea4b107ee6fe85b1b56cf49f7", + "name": "execnet", + "requires": [], + "size": 59002, + "version": "1.3.0" + }, + "execnet-1.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d77ac12b22b6c52768a19b6da73fcd87", + "name": "execnet", + "requires": [], + "size": 58992, + "version": "1.3.0" + }, + "execnet-1.3.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-05-29", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "28d239ac42f0b89823520062bc9b6df2", + "name": "execnet", + "requires": [], + "size": 58994, + "version": "1.3.0" + }, + "execnet-1.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "9e7150d30566ff9c2c8151007b06871c", + "name": "execnet", + "requires": [], + "size": 60993, + "version": "1.3.0" + }, + "execnet-1.3.0-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-05-29", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "6966676e6c37d5a4a84b72ab52a9bf89", + "name": "execnet", + "requires": [], + "size": 60933, + "version": "1.3.0" + }, + "execnet-1.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "0c2f036675659f80f547552726621d98", + "name": "execnet", + "requires": [], + "size": 60927, + "version": "1.3.0" + }, + "execnet-1.3.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-05-29", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "605a8fb9bc57668a418c286e00d2027e", + "name": "execnet", + "requires": [], + "size": 60929, + "version": "1.3.0" + }, + "execnet-1.3.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "286f159fffa1a5ac66267d59df458aa0", + "name": "execnet", + "requires": [], + "size": 60710, + "version": "1.3.0" + }, + "expat-2.1.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-12", + "depends": [], + "license": "MIT", + "md5": "13df3cb2b432de77be2c13103c39692c", + "name": "expat", + "requires": [], + "size": 374261, + "version": "2.1.0" + }, + "fabric-1.10.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-30", + "depends": [ + "paramiko 1.15.1", + "python 2.6*" + ], + "license": "BSD", + "md5": "2452b19e9239277356e8b1bbd6eced6b", + "name": "fabric", + "requires": [], + "size": 111440, + "version": "1.10.0" + }, + "fabric-1.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-30", + "depends": [ + "paramiko 1.15.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "4c49abb01afb85de85285c4ed75985c3", + "name": "fabric", + "requires": [], + "size": 111307, + "version": "1.10.0" + }, + "fabric-1.10.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "paramiko 1.15.2", + "python 2.6*" + ], + "license": "BSD", + "md5": "ac9a46e5753d35e0c36c77c3e1c1da16", + "name": "fabric", + "requires": [], + "size": 111724, + "version": "1.10.1" + }, + "fabric-1.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "paramiko 1.15.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "e49bba8c71686fc39fcc474b0e0681e7", + "name": "fabric", + "requires": [], + "size": 111630, + "version": "1.10.1" + }, + "fabric-1.10.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "paramiko 1.15.2", + "python 2.6*" + ], + "license": "BSD", + "md5": "79603df0aeff558eb6d4174f17f291db", + "name": "fabric", + "requires": [], + "size": 110306, + "version": "1.10.2" + }, + "fabric-1.10.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "paramiko 1.15.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "36e9b1ca63bec30ede837f132f61d23c", + "name": "fabric", + "requires": [], + "size": 110206, + "version": "1.10.2" + }, + "fastcache-1.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "459067648fd83f861841d2d37b4fe4bb", + "name": "fastcache", + "requires": [], + "size": 42235, + "version": "1.0.1" + }, + "fastcache-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "366518810c1c0a386da638d80f45b9f0", + "name": "fastcache", + "requires": [], + "size": 42151, + "version": "1.0.1" + }, + "fastcache-1.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "c6c7d20ca13c90b9d66eed1adf3828c4", + "name": "fastcache", + "requires": [], + "size": 42452, + "version": "1.0.1" + }, + "fastcache-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "76b1474089b17f0b3416f848ef40316b", + "name": "fastcache", + "requires": [], + "size": 43955, + "version": "1.0.1" + }, + "fastcache-1.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-25", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "2f52f007727b84f0d5e8f64ef1390903", + "name": "fastcache", + "requires": [], + "size": 41329, + "version": "1.0.2" + }, + "fastcache-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-25", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "542ea8cc32ddde3993b595c405e7bfb3", + "name": "fastcache", + "requires": [], + "size": 41254, + "version": "1.0.2" + }, + "fastcache-1.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-25", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "9cc928e540ce70273a406443364369e9", + "name": "fastcache", + "requires": [], + "size": 41509, + "version": "1.0.2" + }, + "fastcache-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-25", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "900e482d0ecefb45459d8ac51e3b3ad8", + "name": "fastcache", + "requires": [], + "size": 42990, + "version": "1.0.2" + }, + "fastcache-1.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "f57e5f85d9b8d794725aff95b2d1a820", + "name": "fastcache", + "requires": [], + "size": 42839, + "version": "1.0.2" + }, + "faulthandler-2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "99cf4363faf91e0a1476449e55937f86", + "name": "faulthandler", + "requires": [], + "size": 33215, + "version": "2.3" + }, + "faulthandler-2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b77d84cd34ab0d73151e4b348a8a3f3e", + "name": "faulthandler", + "requires": [], + "size": 33289, + "version": "2.3" + }, + "faulthandler-2.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "5e1b15a29fdfb768aa8f30266b5f1a66", + "name": "faulthandler", + "requires": [], + "size": 33151, + "version": "2.4" + }, + "faulthandler-2.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "382b801fc5707b0ad4a22f0d9ba6ab16", + "name": "faulthandler", + "requires": [], + "size": 33278, + "version": "2.4" + }, + "feedparser-5.1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "3c346b6e5f241081c719b9771414b209", + "name": "feedparser", + "requires": [], + "size": 111548, + "version": "5.1.3" + }, + "feedparser-5.1.3-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "bd393a2012229b50c3f8a2675b9990d9", + "name": "feedparser", + "requires": [], + "size": 89948, + "version": "5.1.3" + }, + "feedparser-5.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "6e691a53b12629bcb65f8f1a2b7be052", + "name": "feedparser", + "requires": [], + "size": 111483, + "version": "5.1.3" + }, + "feedparser-5.1.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "110079f8fd3363d2603a2e9a25289e2a", + "name": "feedparser", + "requires": [], + "size": 90457, + "version": "5.1.3" + }, + "feedparser-5.1.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "21ea44635ae78a717b5f264099d422ae", + "name": "feedparser", + "requires": [], + "size": 115117, + "version": "5.1.3" + }, + "feedparser-5.1.3-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "adb1c6507675156c3e31e41c33b4c5d8", + "name": "feedparser", + "requires": [], + "size": 91947, + "version": "5.1.3" + }, + "feedparser-5.1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "5094e6c1beb5123102878ce15aeb41f0", + "name": "feedparser", + "requires": [], + "size": 112968, + "version": "5.1.3" + }, + "feedparser-5.1.3-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "2b08c6205ae14f497a756072ea58bf0f", + "name": "feedparser", + "requires": [], + "size": 92496, + "version": "5.1.3" + }, + "feedparser-5.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "78f0bdcb0d11012686235d1fda79f927", + "name": "feedparser", + "requires": [], + "size": 87755, + "version": "5.2.0" + }, + "feedparser-5.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c12a22a56eeb8c267d8bafacefa955e5", + "name": "feedparser", + "requires": [], + "size": 87642, + "version": "5.2.0" + }, + "feedparser-5.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "e49712e3d3c64ceb437e2b8e69010915", + "name": "feedparser", + "requires": [], + "size": 89525, + "version": "5.2.0" + }, + "feedparser-5.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "923eae28b3289d93b9b6da105ef70285", + "name": "feedparser", + "requires": [], + "size": 90112, + "version": "5.2.0" + }, + "feedparser-5.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "4d4aaf8b44fee9171a451e0898180b5e", + "name": "feedparser", + "requires": [], + "size": 87542, + "version": "5.2.1" + }, + "feedparser-5.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "0293b0b52a8ee5827950cc872561d151", + "name": "feedparser", + "requires": [], + "size": 87842, + "version": "5.2.1" + }, + "feedparser-5.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "315dfb6d51ec9d3fed887077b13dc406", + "name": "feedparser", + "requires": [], + "size": 89112, + "version": "5.2.1" + }, + "feedparser-5.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "cb68bf7924a80a2154133cbe55cd3b53", + "name": "feedparser", + "requires": [], + "size": 89775, + "version": "5.2.1" + }, + "feedparser-5.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "58a4f416102c60fc3d738eac69082da8", + "name": "feedparser", + "requires": [], + "size": 89092, + "version": "5.2.1" + }, + "fiona-1.1.3-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gdal 1.10.1", + "numpy 1.8*", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "b12c1c4537fdadfb48489fa2ef77e9fe", + "name": "fiona", + "requires": [], + "size": 483508, + "version": "1.1.3" + }, + "fiona-1.1.3-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gdal 1.10.1", + "numpy 1.8*", + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "be96f2712757d6580a05c974eabfe59c", + "name": "fiona", + "requires": [], + "size": 472774, + "version": "1.1.3" + }, + "fiona-1.1.3-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gdal 1.10.1", + "numpy 1.8*", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "76112f317caa0c78893d4165bf63ba13", + "name": "fiona", + "requires": [], + "size": 529343, + "version": "1.1.3" + }, + "fiona-1.1.4-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gdal 1.10.1", + "numpy 1.8*", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "38f3769b66ce6a0a79631dedbc0ccf4f", + "name": "fiona", + "requires": [], + "size": 491273, + "version": "1.1.4" + }, + "fiona-1.1.4-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gdal 1.10.1", + "numpy 1.8*", + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "3c1f0340c19bb4875fb5110f0ede413f", + "name": "fiona", + "requires": [], + "size": 481205, + "version": "1.1.4" + }, + "fiona-1.1.4-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gdal 1.10.1", + "numpy 1.8*", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "8a6c3fa804d71434e07da59bc4a8c5f7", + "name": "fiona", + "requires": [], + "size": 537999, + "version": "1.1.4" + }, + "fiona-1.1.6-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "gdal 1.11.0", + "numpy 1.9*", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "4ceab562ad2664961f0c2caac5a38900", + "name": "fiona", + "requires": [], + "size": 505946, + "version": "1.1.6" + }, + "fiona-1.1.6-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "gdal 1.11.0", + "numpy 1.9*", + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "fe6b34840efa5038c3d869cbb13d1e62", + "name": "fiona", + "requires": [], + "size": 491086, + "version": "1.1.6" + }, + "fiona-1.1.6-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "gdal 1.11.0", + "numpy 1.9*", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "41affd838cf203396072f3ef4dfd685f", + "name": "fiona", + "requires": [], + "size": 566176, + "version": "1.1.6" + }, + "fiona-1.5.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "argparse", + "cligj 0.1.0", + "gdal 1.11.2", + "numpy 1.9*", + "ordereddict", + "python 2.6*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "e56915efe2cd27096364f88fe51fadbd", + "name": "fiona", + "requires": [], + "size": 868524, + "version": "1.5.1" + }, + "fiona-1.5.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "cligj 0.1.0", + "gdal 1.11.2", + "numpy 1.9*", + "python 2.7*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "c01c15ceaafa09f390a1f10e20ef12a5", + "name": "fiona", + "requires": [], + "size": 869496, + "version": "1.5.1" + }, + "fiona-1.5.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "cligj 0.1.0", + "gdal 1.11.2", + "numpy 1.9*", + "python 3.3*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "61d52fc7a7a845857b0325927acefc71", + "name": "fiona", + "requires": [], + "size": 931763, + "version": "1.5.1" + }, + "fiona-1.5.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "cligj 0.1.0", + "gdal 1.11.2", + "numpy 1.9*", + "python 3.4*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "a407a4c68754b326e806c18e58cc9cda", + "name": "fiona", + "requires": [], + "size": 1041189, + "version": "1.5.1" + }, + "fiona-1.6.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.10*", + "python 2.7*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "a333e85e72ca8a9b6e82c629dde0b6ad", + "name": "fiona", + "requires": [], + "size": 892383, + "version": "1.6.0" + }, + "fiona-1.6.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.10*", + "python 3.4*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "c2a21ca134f5b84bbed51e3e5db581f0", + "name": "fiona", + "requires": [], + "size": 1059218, + "version": "1.6.0" + }, + "fiona-1.6.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.10*", + "python 3.5*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "15f19cd3d3c8e6366437f9d27db0cbd1", + "name": "fiona", + "requires": [], + "size": 1054818, + "version": "1.6.0" + }, + "fiona-1.6.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "argparse", + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.9*", + "ordereddict", + "python 2.6*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "12aae8b8e9fdaecaccdcfeb3b05a4d4f", + "name": "fiona", + "requires": [], + "size": 884778, + "version": "1.6.0" + }, + "fiona-1.6.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.9*", + "python 2.7*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "ea07caa06624451846b9dd53a62e09da", + "name": "fiona", + "requires": [], + "size": 891940, + "version": "1.6.0" + }, + "fiona-1.6.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.9*", + "python 3.3*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "6b9b16a93a0c5cb6c0a5b80abba16b34", + "name": "fiona", + "requires": [], + "size": 948833, + "version": "1.6.0" + }, + "fiona-1.6.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.9*", + "python 3.4*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "59b1665ca95d0fbcba091e7265fe7642", + "name": "fiona", + "requires": [], + "size": 1059265, + "version": "1.6.0" + }, + "fiona-1.6.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.9*", + "python 3.5*", + "setuptools", + "six" + ], + "license": "BSD", + "md5": "9f0901072dfa67e46a5bab5ed370ad60", + "name": "fiona", + "requires": [], + "size": 1054622, + "version": "1.6.0" + }, + "flake8-2.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "35db39193576c682d24b4c9392a418e9", + "name": "flake8", + "requires": [], + "size": 18151, + "version": "2.1.0" + }, + "flake8-2.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "215e19b3d2442bb9cfb187f7ceb74b95", + "name": "flake8", + "requires": [], + "size": 17971, + "version": "2.1.0" + }, + "flake8-2.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "49508c34d9d86ba6c1a1d40ca740196f", + "name": "flake8", + "requires": [], + "size": 18377, + "version": "2.1.0" + }, + "flake8-2.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "66b45eee94d51e32b90eee98f29ff7ed", + "name": "flake8", + "requires": [], + "size": 18384, + "version": "2.1.0" + }, + "flake8-2.2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "679719d0dbbf3d143f637c47a573990c", + "name": "flake8", + "requires": [], + "size": 26422, + "version": "2.2.2" + }, + "flake8-2.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "be087f45a1696342a9b43a629b2ed81f", + "name": "flake8", + "requires": [], + "size": 26165, + "version": "2.2.2" + }, + "flake8-2.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "5e5fb397b141f139ced4b631eda839ae", + "name": "flake8", + "requires": [], + "size": 23772, + "version": "2.2.2" + }, + "flake8-2.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "dab7a4ca412dd21ac4a1c8f3de1aa95c", + "name": "flake8", + "requires": [], + "size": 23773, + "version": "2.2.2" + }, + "flake8-2.2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "9c7bf7fc3fc87bfd85f78d3a8c2b6d2b", + "name": "flake8", + "requires": [], + "size": 26422, + "version": "2.2.3" + }, + "flake8-2.2.3-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-11-03", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "fe86e711d4a0809469fa7db605728b79", + "name": "flake8", + "requires": [], + "size": 21019, + "version": "2.2.3" + }, + "flake8-2.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "28ea016d86e41af4e6835a532dbe5517", + "name": "flake8", + "requires": [], + "size": 26208, + "version": "2.2.3" + }, + "flake8-2.2.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-11-03", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "0ed7d81febc358c9d2870cf48d637fe6", + "name": "flake8", + "requires": [], + "size": 20884, + "version": "2.2.3" + }, + "flake8-2.2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "1c15405c4a0c68a365bcd13af797901b", + "name": "flake8", + "requires": [], + "size": 23804, + "version": "2.2.3" + }, + "flake8-2.2.3-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-11-03", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "f0f31944c1f92cf38f5de44dbfa1ee7e", + "name": "flake8", + "requires": [], + "size": 21416, + "version": "2.2.3" + }, + "flake8-2.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "b5ddf570d339769c3dbaa84e9af43e8a", + "name": "flake8", + "requires": [], + "size": 23828, + "version": "2.2.3" + }, + "flake8-2.2.3-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-11-03", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "1c97e308eb12a776192430aa9edf178d", + "name": "flake8", + "requires": [], + "size": 21412, + "version": "2.2.3" + }, + "flake8-2.2.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "a77b9d7011a9420adafcab082d416e2c", + "name": "flake8", + "requires": [], + "size": 22662, + "version": "2.2.5" + }, + "flake8-2.2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "3cbe25626d2dd70b200ff18a8cf04464", + "name": "flake8", + "requires": [], + "size": 22521, + "version": "2.2.5" + }, + "flake8-2.2.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "75ce70968b389763e48c747ae8549a0e", + "name": "flake8", + "requires": [], + "size": 23123, + "version": "2.2.5" + }, + "flake8-2.2.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "mccabe 0.2.1", + "pep8", + "pyflakes", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "1d50538354c16361e6a3369c12395f11", + "name": "flake8", + "requires": [], + "size": 23132, + "version": "2.2.5" + }, + "flake8-2.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "mccabe 0.3", + "pep8", + "pyflakes", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "766bd4a956f7c1d51244c8104e8a688b", + "name": "flake8", + "requires": [], + "size": 25690, + "version": "2.3.0" + }, + "flake8-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "mccabe 0.3", + "pep8", + "pyflakes", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "507b01de13a8f094efc27eca2968db5a", + "name": "flake8", + "requires": [], + "size": 25526, + "version": "2.3.0" + }, + "flake8-2.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "mccabe 0.3", + "pep8", + "pyflakes", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "d822d72b310259b60341cc2c6fc1810c", + "name": "flake8", + "requires": [], + "size": 26207, + "version": "2.3.0" + }, + "flake8-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "mccabe 0.3", + "pep8", + "pyflakes", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "4e725d39d9215c1a1d3a36d296f7617f", + "name": "flake8", + "requires": [], + "size": 26225, + "version": "2.3.0" + }, + "flake8-2.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "mccabe 0.3", + "pep8", + "pyflakes", + "python 3.5*", + "setuptools" + ], + "license": "MIT", + "md5": "1f0ddde67a83e3be08262a0ea33490a1", + "name": "flake8", + "requires": [], + "size": 25830, + "version": "2.3.0" + }, + "flake8-2.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "mccabe", + "pep8", + "pyflakes", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "bdfbb9d17a2329e7aa126da81593ff19", + "name": "flake8", + "requires": [], + "size": 38973, + "version": "2.5.1" + }, + "flake8-2.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "mccabe", + "pep8", + "pyflakes", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "3a93a10de30448c41d825438a58a2f1c", + "name": "flake8", + "requires": [], + "size": 40120, + "version": "2.5.1" + }, + "flake8-2.5.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "mccabe", + "pep8", + "pyflakes", + "python 3.5*", + "setuptools" + ], + "license": "MIT", + "md5": "2a8849cb4d2f2f0bfccaedbce39dfef5", + "name": "flake8", + "requires": [], + "size": 40003, + "version": "2.5.1" + }, + "flask-0.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "itsdangerous", + "jinja2", + "python 2.7*", + "werkzeug 0.8.3" + ], + "license": "BSD", + "md5": "f3aa83b7d6d416c5abc9a79274d23df0", + "name": "flask", + "requires": [], + "size": 134908, + "version": "0.10" + }, + "flask-0.10.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "itsdangerous", + "jinja2", + "python 2.6*", + "werkzeug" + ], + "license": "BSD", + "md5": "b7e0cf98d61d3637ad3f05b84252f748", + "name": "flask", + "requires": [], + "size": 132142, + "version": "0.10.1" + }, + "flask-0.10.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "itsdangerous", + "jinja2", + "python 2.6*", + "werkzeug" + ], + "license": "BSD", + "md5": "f8db2944026c5666406f079bae4e79b0", + "name": "flask", + "requires": [], + "size": 132195, + "version": "0.10.1" + }, + "flask-0.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "itsdangerous", + "jinja2", + "python 2.7*", + "werkzeug" + ], + "license": "BSD", + "md5": "3a7e6fefc41dce4c35c79f0ae796b44d", + "name": "flask", + "requires": [], + "size": 131644, + "version": "0.10.1" + }, + "flask-0.10.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "itsdangerous", + "jinja2", + "python 2.7*", + "werkzeug" + ], + "license": "BSD", + "md5": "5da17278661a9a4d0934ea406a1ad71b", + "name": "flask", + "requires": [], + "size": 131681, + "version": "0.10.1" + }, + "flask-0.10.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "itsdangerous", + "jinja2", + "python 3.3*", + "werkzeug" + ], + "license": "BSD", + "md5": "d7bf9d126b1c1c8cfd620ab4be5b3f14", + "name": "flask", + "requires": [], + "size": 141786, + "version": "0.10.1" + }, + "flask-0.10.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "itsdangerous", + "jinja2", + "python 3.4*", + "werkzeug" + ], + "license": "BSD", + "md5": "d5248810db5e86d78e0d65310837565c", + "name": "flask", + "requires": [], + "size": 138654, + "version": "0.10.1" + }, + "flask-0.10.1-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "itsdangerous", + "jinja2", + "python 3.5*", + "werkzeug" + ], + "license": "BSD", + "md5": "6b5f2c6e98df73b3ca753104952b880e", + "name": "flask", + "requires": [], + "size": 137978, + "version": "0.10.1" + }, + "flask-0.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.6*", + "werkzeug" + ], + "license": "BSD", + "md5": "96eb1d556c44be7048244f113c5ecb2f", + "name": "flask", + "requires": [], + "size": 115173, + "version": "0.9" + }, + "flask-0.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jinja2", + "python 2.7*", + "werkzeug" + ], + "license": "BSD", + "md5": "4a0bc490190377f3b6b6affbd76f82bb", + "name": "flask", + "requires": [], + "size": 114777, + "version": "0.9" + }, + "flask-cors-2.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-09", + "depends": [ + "flask >=0.9", + "python 2.7*", + "six" + ], + "license": "MIT", + "md5": "b78772bef2635066d54351cadc3d2c5f", + "name": "flask-cors", + "requires": [], + "size": 15612, + "version": "2.1.2" + }, + "flask-cors-2.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-09", + "depends": [ + "flask >=0.9", + "python 3.4*", + "six" + ], + "license": "MIT", + "md5": "050c501858fa72ac2c2022405c8c4b3f", + "name": "flask-cors", + "requires": [], + "size": 15974, + "version": "2.1.2" + }, + "flask-cors-2.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-09", + "depends": [ + "flask >=0.9", + "python 3.5*", + "six" + ], + "license": "MIT", + "md5": "4411c41147e0bfb91370a1f0b08507c0", + "name": "flask-cors", + "requires": [], + "size": 15982, + "version": "2.1.2" + }, + "flask-ldap-login-0.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "flask-wtf", + "python 2.7*", + "python-ldap" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "9f1fb7f8745902e85d488cfe1a23a7d6", + "name": "flask-ldap-login", + "requires": [], + "size": 13592, + "version": "0.3.0" + }, + "flask-ldap-login-0.3.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "flask-wtf", + "python 2.7*", + "python-ldap" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "f8281317fea3389d5c21692e2d321bd3", + "name": "flask-ldap-login", + "requires": [], + "size": 13604, + "version": "0.3.0" + }, + "flask-login-0.2.11-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "flask 0.10.1", + "python 2.6*" + ], + "license": "MIT", + "md5": "cfef68a2364872e3d5c22dcf20c06984", + "name": "flask-login", + "requires": [], + "size": 15838, + "version": "0.2.11" + }, + "flask-login-0.2.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "flask 0.10.1", + "python 2.7*" + ], + "license": "MIT", + "md5": "a273e91a69ee8a1858fc9ece07431bc8", + "name": "flask-login", + "requires": [], + "size": 15803, + "version": "0.2.11" + }, + "flask-login-0.2.11-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "flask 0.10.1", + "python 3.3*" + ], + "license": "MIT", + "md5": "7c61bfacc21fae5d60b5023b47324bfb", + "name": "flask-login", + "requires": [], + "size": 9099, + "version": "0.2.11" + }, + "flask-login-0.2.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "flask 0.10.1", + "python 3.4*" + ], + "license": "MIT", + "md5": "8a9f827dab5c527de1f15899377cbf28", + "name": "flask-login", + "requires": [], + "size": 9124, + "version": "0.2.11" + }, + "flask-login-0.2.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "flask 0.10.1", + "python 3.5*" + ], + "license": "MIT", + "md5": "e13557e0996ab8d34ccc3096a0ce70f4", + "name": "flask-login", + "requires": [], + "size": 8848, + "version": "0.2.11" + }, + "flask-wtf-0.11-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "flask 0.10.1", + "python 2.6*", + "werkzeug", + "wtforms 2.0.2" + ], + "license": "BSD", + "md5": "c85c0dfebc8bb866db292343d50236d8", + "name": "flask-wtf", + "requires": [], + "size": 15196, + "version": "0.11" + }, + "flask-wtf-0.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "flask 0.10.1", + "python 2.7*", + "werkzeug", + "wtforms 2.0.2" + ], + "license": "BSD", + "md5": "c396462c08cc5b5d3e123920c7b3a0ce", + "name": "flask-wtf", + "requires": [], + "size": 15237, + "version": "0.11" + }, + "flask-wtf-0.11-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "flask 0.10.1", + "python 3.3*", + "werkzeug", + "wtforms 2.0.2" + ], + "license": "BSD", + "md5": "ec18521764d13c2d9bf01298134d4631", + "name": "flask-wtf", + "requires": [], + "size": 15694, + "version": "0.11" + }, + "flask-wtf-0.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "flask 0.10.1", + "python 3.4*", + "werkzeug", + "wtforms 2.0.2" + ], + "license": "BSD", + "md5": "aea8da1da6e0da7cdae26f8d1a71e1f0", + "name": "flask-wtf", + "requires": [], + "size": 15626, + "version": "0.11" + }, + "flask-wtf-0.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "flask 0.10.1", + "python 3.5*", + "werkzeug", + "wtforms 2.0.2" + ], + "license": "BSD", + "md5": "212f275d878b36d8bd99153469528e9f", + "name": "flask-wtf", + "requires": [], + "size": 15793, + "version": "0.11" + }, + "fontconfig-2.11.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "libxml2 2.9*" + ], + "license": "BSD", + "md5": "cbda53188405d1430d5566e3da6b2486", + "name": "fontconfig", + "requires": [], + "size": 411402, + "version": "2.11.1" + }, + "fontconfig-2.11.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-03-23", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "libxml2 2.9*" + ], + "license": "BSD", + "md5": "0d659577682c82bca1579389e75f5e99", + "name": "fontconfig", + "requires": [], + "size": 411305, + "version": "2.11.1" + }, + "fontconfig-2.11.1-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-03-24", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "libxml2 2.9*" + ], + "license": "BSD", + "md5": "bfbcc281707997b6c162adf51cd517dc", + "name": "fontconfig", + "requires": [], + "size": 411606, + "version": "2.11.1" + }, + "fontconfig-2.11.1-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2015-04-08", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "libxml2 2.9*" + ], + "license": "BSD", + "md5": "5bd03d0ec5aec336c506406b058c94e8", + "name": "fontconfig", + "requires": [], + "size": 411680, + "version": "2.11.1" + }, + "fontconfig-2.11.1-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2015-05-26", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "libxml2 2.9*" + ], + "license": "BSD", + "md5": "d85b1808c56394bb844a366d9b23fc40", + "name": "fontconfig", + "requires": [], + "size": 411427, + "version": "2.11.1" + }, + "fontconfig-2.11.1-5.tar.bz2": { + "build": "5", + "build_number": 5, + "date": "2015-10-20", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "libxml2 2.9*" + ], + "license": "BSD", + "md5": "60e5dd53469cea7c2b706b135a5d99f6", + "name": "fontconfig", + "requires": [], + "size": 411334, + "version": "2.11.1" + }, + "freeglut-2.8.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "fadfd24483911a4a4388824db297b5a5", + "name": "freeglut", + "requires": [], + "size": 552750, + "version": "2.8.1" + }, + "freeimage-3.17.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2016-01-18", + "depends": [], + "license": "GPLv2 and FreeImage Public License", + "license_family": "GPL2", + "md5": "259446dc439641c0186fb49bd279cf21", + "name": "freeimage", + "requires": [], + "size": 5684712, + "version": "3.17.0" + }, + "freetype-2.4.10-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "FreeType License (http://freetype.sourceforge.net/FTL.TXT)", + "license_family": "Other", + "md5": "5901fc9225c3163bebee8c5a0a874922", + "name": "freetype", + "requires": [], + "size": 2137043, + "version": "2.4.10" + }, + "freetype-2.5.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-17", + "depends": [ + "libpng 1.5.13", + "zlib 1.2*" + ], + "license": "FreeType License (http://freetype.sourceforge.net/FTL.TXT)", + "license_family": "Other", + "md5": "0316c9d7ec10f9d177e2c5c6566e8cc5", + "name": "freetype", + "requires": [], + "size": 2620844, + "version": "2.5.2" + }, + "freetype-2.5.2-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-05-07", + "depends": [ + "libpng 1.5.13", + "zlib 1.2*" + ], + "license": "FreeType License (http://freetype.sourceforge.net/FTL.TXT)", + "license_family": "Other", + "md5": "daf73da867dda5f2418d76689f531e0b", + "name": "freetype", + "requires": [], + "size": 2619900, + "version": "2.5.2" + }, + "freetype-2.5.2-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-05-26", + "depends": [ + "libpng 1.6.17", + "zlib 1.2*" + ], + "license": "FreeType License (http://freetype.sourceforge.net/FTL.TXT)", + "license_family": "Other", + "md5": "a45b64cfdfd46a773e41252bda3706a4", + "name": "freetype", + "requires": [], + "size": 2619735, + "version": "2.5.2" + }, + "freetype-2.5.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "libpng 1.6.*", + "zlib 1.2.*" + ], + "license": "FreeType License (http://freetype.sourceforge.net/FTL.TXT)", + "license_family": "Other", + "md5": "2b814320dfaae5a01233e5401111e51a", + "name": "freetype", + "requires": [], + "size": 2257599, + "version": "2.5.5" + }, + "funcsigs-0.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-04", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "a59ae89987aa63517a81aee66442c623", + "name": "funcsigs", + "requires": [], + "size": 19485, + "version": "0.4" + }, + "funcsigs-0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-04", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "93c8b03de0789d3ae62a207c229ca455", + "name": "funcsigs", + "requires": [], + "size": 19539, + "version": "0.4" + }, + "funcsigs-0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "5b53b24471acd1b22d459ad048a848c7", + "name": "funcsigs", + "requires": [], + "size": 19879, + "version": "0.4" + }, + "funcsigs-0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "a3b632785cffccd0d57bb6bc394d6d0b", + "name": "funcsigs", + "requires": [], + "size": 19794, + "version": "0.4" + }, + "funcsigs-0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "43c5a938426516682f221d09d12eff6b", + "name": "funcsigs", + "requires": [], + "size": 19765, + "version": "0.4" + }, + "functools32-3.2.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 2.7.*" + ], + "license": "PSF", + "md5": "f75142247b96c51882de66edcd2338ac", + "name": "functools32", + "requires": [], + "size": 15373, + "version": "3.2.3.2" + }, + "future-0.10.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "aec07723b6f84a4e06a3fae97fe1da7b", + "name": "future", + "requires": [], + "size": 409616, + "version": "0.10.1" + }, + "future-0.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "473c58ec0e71a92c744a6a1954f3f685", + "name": "future", + "requires": [], + "size": 409443, + "version": "0.10.1" + }, + "future-0.10.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "a1007b8e6e99adcd9c75b13b8013ca07", + "name": "future", + "requires": [], + "size": 423851, + "version": "0.10.1" + }, + "future-0.10.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "af1b7459fc84f6a505c90fe861e02ecb", + "name": "future", + "requires": [], + "size": 411138, + "version": "0.10.2" + }, + "future-0.10.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "af8307df9ac61498916f74e341cafa5a", + "name": "future", + "requires": [], + "size": 411298, + "version": "0.10.2" + }, + "future-0.10.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "51ea4380ae62c44247bcbadd041332f1", + "name": "future", + "requires": [], + "size": 427167, + "version": "0.10.2" + }, + "future-0.11.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "314f1d1530643024e73899e38b184861", + "name": "future", + "requires": [], + "size": 469246, + "version": "0.11.2" + }, + "future-0.11.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d3a8d350e7fe38a3c2c7bc096ff41b3b", + "name": "future", + "requires": [], + "size": 469132, + "version": "0.11.2" + }, + "future-0.11.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "e3f4a1f4b03b324eec864afc32384b73", + "name": "future", + "requires": [], + "size": 488016, + "version": "0.11.2" + }, + "future-0.11.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e99a6361720aa186a0713703f56431f3", + "name": "future", + "requires": [], + "size": 477243, + "version": "0.11.3" + }, + "future-0.11.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "be7305f95a4b00c0e0c7624bc0cf0c2a", + "name": "future", + "requires": [], + "size": 477602, + "version": "0.11.3" + }, + "future-0.11.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "2eedd24f6c98a43aa44557c10b0c7159", + "name": "future", + "requires": [], + "size": 496892, + "version": "0.11.3" + }, + "future-0.11.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "db04313aac932e1263f269f6352198fa", + "name": "future", + "requires": [], + "size": 480713, + "version": "0.11.4" + }, + "future-0.11.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "52f9129a3aceee4884c6da62c63b5a11", + "name": "future", + "requires": [], + "size": 480792, + "version": "0.11.4" + }, + "future-0.11.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "c2204a719688e2c53bbb03cc3e3e424f", + "name": "future", + "requires": [], + "size": 500489, + "version": "0.11.4" + }, + "future-0.11.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "52fdf2c28307935ae925aea6b3accfd7", + "name": "future", + "requires": [], + "size": 498373, + "version": "0.11.4" + }, + "future-0.12.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "4459bb2d51c37fa434b6b823988eadb5", + "name": "future", + "requires": [], + "size": 836826, + "version": "0.12.0" + }, + "future-0.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "8b0cd2f70f77d095a2e8506b1de02b5e", + "name": "future", + "requires": [], + "size": 837167, + "version": "0.12.0" + }, + "future-0.12.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "ed8e89dfb4b1a2a2452867e9ff1f0f9f", + "name": "future", + "requires": [], + "size": 891610, + "version": "0.12.0" + }, + "future-0.12.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "25e6c01df4b355a513480736b2d2a53a", + "name": "future", + "requires": [], + "size": 867217, + "version": "0.12.0" + }, + "future-0.12.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c28313d2eff51b2daa4c7c927f7e969c", + "name": "future", + "requires": [], + "size": 836179, + "version": "0.12.1" + }, + "future-0.12.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5dfd082b845b43265036a2e8595c60a3", + "name": "future", + "requires": [], + "size": 837256, + "version": "0.12.1" + }, + "future-0.12.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "9a48bc867ae59c6f3516d2b11ded49ac", + "name": "future", + "requires": [], + "size": 891698, + "version": "0.12.1" + }, + "future-0.12.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "322c3dc0ef4eb4eab0de2b986059b2a1", + "name": "future", + "requires": [], + "size": 866892, + "version": "0.12.1" + }, + "future-0.12.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "5976f12b4473889382e68a6f47305d3c", + "name": "future", + "requires": [], + "size": 878500, + "version": "0.12.3" + }, + "future-0.12.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "f114c5fb8081520b3f6f7a04c08b4b99", + "name": "future", + "requires": [], + "size": 879553, + "version": "0.12.3" + }, + "future-0.12.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "40f19a4df3e07c3d69910037408b5237", + "name": "future", + "requires": [], + "size": 937852, + "version": "0.12.3" + }, + "future-0.12.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6d86c44301a86f48de98adb53a67f229", + "name": "future", + "requires": [], + "size": 923609, + "version": "0.12.3" + }, + "future-0.12.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "5179adb48510d9b023e5fde75f818eef", + "name": "future", + "requires": [], + "size": 878526, + "version": "0.12.4" + }, + "future-0.12.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "4148e75d5d053c2769027bb0ad811a33", + "name": "future", + "requires": [], + "size": 881746, + "version": "0.12.4" + }, + "future-0.12.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "07bf613a0059e4cda4444990ab983306", + "name": "future", + "requires": [], + "size": 940332, + "version": "0.12.4" + }, + "future-0.12.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "20d24acf390f1fb612e2a91270474280", + "name": "future", + "requires": [], + "size": 924534, + "version": "0.12.4" + }, + "future-0.13.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "2b0383b2bd6348dccb30017f31803a03", + "name": "future", + "requires": [], + "size": 897047, + "version": "0.13.0" + }, + "future-0.13.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "294c16d35dc15eaffb82b2fe81f779c1", + "name": "future", + "requires": [], + "size": 893972, + "version": "0.13.0" + }, + "future-0.13.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "fd44e3ae2c001a1fe85d866534da2a11", + "name": "future", + "requires": [], + "size": 961838, + "version": "0.13.0" + }, + "future-0.13.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "81adbcf42a212fd7003230d60ce6300c", + "name": "future", + "requires": [], + "size": 941776, + "version": "0.13.0" + }, + "future-0.13.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "1ceaed56c0ad33071c18b9cbcc8f4c5a", + "name": "future", + "requires": [], + "size": 900421, + "version": "0.13.1" + }, + "future-0.13.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ffeeebda2386e15208c751d41ec68e5e", + "name": "future", + "requires": [], + "size": 898608, + "version": "0.13.1" + }, + "future-0.13.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "b3d1434db1af8c7fce2b73018ad91c5c", + "name": "future", + "requires": [], + "size": 962394, + "version": "0.13.1" + }, + "future-0.13.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-23", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "c0dedab5cdc778d5ae692fcda6a22b8a", + "name": "future", + "requires": [], + "size": 940859, + "version": "0.13.1" + }, + "future-0.14.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "19413189ee11f3cbd31d98cfad4cb7b9", + "name": "future", + "requires": [], + "size": 621443, + "version": "0.14.1" + }, + "future-0.14.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "92288e441fba1cc5974be0b145f50682", + "name": "future", + "requires": [], + "size": 621723, + "version": "0.14.1" + }, + "future-0.14.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "157535342099fff6015d03c545c88dcc", + "name": "future", + "requires": [], + "size": 650565, + "version": "0.14.1" + }, + "future-0.14.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "f0c0dcd6c14717fbe13b06a01a9797f7", + "name": "future", + "requires": [], + "size": 626029, + "version": "0.14.1" + }, + "future-0.14.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "403d9e332f39b1e254d586570e0f1285", + "name": "future", + "requires": [], + "size": 622334, + "version": "0.14.2" + }, + "future-0.14.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "0ee367ae79e42e97af083191ede4cf2f", + "name": "future", + "requires": [], + "size": 623194, + "version": "0.14.2" + }, + "future-0.14.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "8afb078eee0655b9ebf506335e3ac6af", + "name": "future", + "requires": [], + "size": 650157, + "version": "0.14.2" + }, + "future-0.14.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "482b1aac07e436278959cfce4759ba4c", + "name": "future", + "requires": [], + "size": 626536, + "version": "0.14.2" + }, + "future-0.14.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "9021b27f46e9f1520346a64797a471d4", + "name": "future", + "requires": [], + "size": 623062, + "version": "0.14.3" + }, + "future-0.14.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "57c5173a6a3a7a37b68da99a37ff8a53", + "name": "future", + "requires": [], + "size": 623527, + "version": "0.14.3" + }, + "future-0.14.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "542e10d386a502994d7aca92ea1ae225", + "name": "future", + "requires": [], + "size": 650621, + "version": "0.14.3" + }, + "future-0.14.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "f34e57a4a3ffae7a3b46c77d5a4f0fce", + "name": "future", + "requires": [], + "size": 626846, + "version": "0.14.3" + }, + "future-0.15.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-08-04", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "7ef9e7adba650bcdfe73d83bfb34201b", + "name": "future", + "requires": [], + "size": 629564, + "version": "0.15.0" + }, + "future-0.15.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-04", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "531dad7a0ca34ac5e8ae913eb0e53f40", + "name": "future", + "requires": [], + "size": 630341, + "version": "0.15.0" + }, + "future-0.15.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-04", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "1ddeae383aa61dcbbbfeb4865d980a79", + "name": "future", + "requires": [], + "size": 657374, + "version": "0.15.0" + }, + "future-0.15.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-04", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "671d214ba7eae624398c84865f38d484", + "name": "future", + "requires": [], + "size": 633671, + "version": "0.15.0" + }, + "future-0.15.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "98e89dedbff9373b6baf36e18d0835d7", + "name": "future", + "requires": [], + "size": 629642, + "version": "0.15.0" + }, + "future-0.15.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9a1428281f957cd90ae055a572bd4fcc", + "name": "future", + "requires": [], + "size": 630368, + "version": "0.15.2" + }, + "future-0.15.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "5bfbf1fa3c19a2eb13f67dc98e93ea9d", + "name": "future", + "requires": [], + "size": 634109, + "version": "0.15.2" + }, + "future-0.15.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "91f3d415d7f1140786a4ac9c2f764342", + "name": "future", + "requires": [], + "size": 629697, + "version": "0.15.2" + }, + "futures-2.1.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "15456af06f9c887ad2dd478b61a6935a", + "name": "futures", + "requires": [], + "size": 21009, + "version": "2.1.6" + }, + "futures-2.1.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7bffdb061ca460b1834dacd493b91d6a", + "name": "futures", + "requires": [], + "size": 20956, + "version": "2.1.6" + }, + "futures-2.1.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "946092a41d028cc57f9dc00ac48d7769", + "name": "futures", + "requires": [], + "size": 21532, + "version": "2.1.6" + }, + "futures-2.1.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "93e7a68ee8f4d1efefe448408caf9741", + "name": "futures", + "requires": [], + "size": 21542, + "version": "2.1.6" + }, + "futures-2.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c23c67643bbf20551c4176ec3c42de00", + "name": "futures", + "requires": [], + "size": 21591, + "version": "2.2.0" + }, + "futures-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "796556e1ab660eaa06e0b6a24fea886a", + "name": "futures", + "requires": [], + "size": 21472, + "version": "2.2.0" + }, + "futures-2.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "23687aad62162b58b5db4665f25c45c9", + "name": "futures", + "requires": [], + "size": 22099, + "version": "2.2.0" + }, + "futures-2.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "27402c68515e113fef873744d44f1656", + "name": "futures", + "requires": [], + "size": 22102, + "version": "2.2.0" + }, + "futures-3.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "05d0e78f1ea830905b2796f5ee238f6c", + "name": "futures", + "requires": [], + "size": 17871, + "version": "3.0.2" + }, + "futures-3.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "df76e5d4e3a7055fe48558a9c1919e58", + "name": "futures", + "requires": [], + "size": 17797, + "version": "3.0.2" + }, + "futures-3.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "dce80db032b0c8e4c51ac47b3d7b5e47", + "name": "futures", + "requires": [], + "size": 13982, + "version": "3.0.2" + }, + "futures-3.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "35828da60787ab0796a515b11e5e79f0", + "name": "futures", + "requires": [], + "size": 13991, + "version": "3.0.2" + }, + "futures-3.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "eb54d94ba766c73dd8c81ad0d3f2ca8d", + "name": "futures", + "requires": [], + "size": 17936, + "version": "3.0.3" + }, + "futures-3.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b0b463920c7f815e835d7f9246daaa47", + "name": "futures", + "requires": [], + "size": 17828, + "version": "3.0.3" + }, + "futures-3.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "46f293a185b87fbd731ebd8183ad12b3", + "name": "futures", + "requires": [], + "size": 14035, + "version": "3.0.3" + }, + "futures-3.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "23c783c35cbf254e2cb2f0d3733616d5", + "name": "futures", + "requires": [], + "size": 14024, + "version": "3.0.3" + }, + "futures-3.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "c10a2a746bb9434cf7f7e90174cec4f7", + "name": "futures", + "requires": [], + "size": 14005, + "version": "3.0.3" + }, + "futures-3.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e42a13bf6f75ca2c2c94318064c9d9aa", + "name": "futures", + "requires": [], + "size": 18690, + "version": "3.0.5" + }, + "gcc-4.8.2-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-03-04", + "depends": [ + "cloog 0.18.0", + "gmp >=4.2", + "isl", + "mpc >=0.8.0", + "mpfr >=2.4.0" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "f6a81e5b9dfd92c22a8d573bfb1116f2", + "name": "gcc", + "requires": [], + "size": 263435568, + "version": "4.8.2" + }, + "gcc-4.8.5-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2015-09-18", + "depends": [ + "cloog 0.18.0", + "gmp >=4.2", + "isl", + "mpc >=0.8.0", + "mpfr >=2.4.0" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "8b3988c57f6a598c16952daacbd21129", + "name": "gcc", + "requires": [], + "size": 68991321, + "version": "4.8.5" + }, + "gdal-1.10.1-np18py26_2.tar.bz2": { + "build": "np18py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "MIT", + "md5": "6cc9542b228a3082d80be0d44d30f193", + "name": "gdal", + "requires": [], + "size": 35408342, + "version": "1.10.1" + }, + "gdal-1.10.1-np18py27_2.tar.bz2": { + "build": "np18py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "MIT", + "md5": "3ea3fae7bd4ba7682f16a04e13a341e6", + "name": "gdal", + "requires": [], + "size": 35409594, + "version": "1.10.1" + }, + "gdal-1.10.1-np18py33_2.tar.bz2": { + "build": "np18py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "MIT", + "md5": "0f623528788323224ee6644ef33422af", + "name": "gdal", + "requires": [], + "size": 35389457, + "version": "1.10.1" + }, + "gdal-1.10.1-np18py34_2.tar.bz2": { + "build": "np18py34_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "MIT", + "md5": "7e25da478a1dd496ad592b85125ddefa", + "name": "gdal", + "requires": [], + "size": 35401479, + "version": "1.10.1" + }, + "gdal-1.10.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "8de33ab1ce32e1d6f8ababf044483b59", + "name": "gdal", + "requires": [], + "size": 35370708, + "version": "1.10.1" + }, + "gdal-1.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "fea433bd3353eb6d3a8d99a79a01ead6", + "name": "gdal", + "requires": [], + "size": 35371364, + "version": "1.10.1" + }, + "gdal-1.10.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "420aef418ce126a93ae75226f02c57b3", + "name": "gdal", + "requires": [], + "size": 35351975, + "version": "1.10.1" + }, + "gdal-1.11.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "443700c0884b6b033fcede3c985ae189", + "name": "gdal", + "requires": [], + "size": 38103463, + "version": "1.11.0" + }, + "gdal-1.11.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "45c28682d2eb9867f3bd266332ceba7d", + "name": "gdal", + "requires": [], + "size": 38108385, + "version": "1.11.0" + }, + "gdal-1.11.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "4bef8329ec6da7c9bf65d386ec901d99", + "name": "gdal", + "requires": [], + "size": 38083916, + "version": "1.11.0" + }, + "gdal-1.11.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "6cdfa786c73f814c2e46115e7a58c623", + "name": "gdal", + "requires": [], + "size": 38099428, + "version": "1.11.0" + }, + "gdal-1.11.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "hdf5 1.8.13", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "f7496c62a20a493cf0a367896894f67d", + "name": "gdal", + "requires": [], + "size": 42166785, + "version": "1.11.1" + }, + "gdal-1.11.1-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "e79503d0e6a2737fc049929ec2d662a3", + "name": "gdal", + "requires": [], + "size": 42162864, + "version": "1.11.1" + }, + "gdal-1.11.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "hdf5 1.8.13", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "f316ce6174ca000e5e5541b03394a30b", + "name": "gdal", + "requires": [], + "size": 42167457, + "version": "1.11.1" + }, + "gdal-1.11.1-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "cc747bd172f4c163caf0775e426dab9b", + "name": "gdal", + "requires": [], + "size": 42165981, + "version": "1.11.1" + }, + "gdal-1.11.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "hdf5 1.8.13", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "a3c3e19d5bf54fe114d5918f60226795", + "name": "gdal", + "requires": [], + "size": 42157991, + "version": "1.11.1" + }, + "gdal-1.11.1-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "72fe10560379a6aade85dc5832fa8695", + "name": "gdal", + "requires": [], + "size": 42157651, + "version": "1.11.1" + }, + "gdal-1.11.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "hdf5 1.8.13", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "e7f0507f1c173fa4f90fc01add79419d", + "name": "gdal", + "requires": [], + "size": 42163057, + "version": "1.11.1" + }, + "gdal-1.11.1-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "2e55a22604b09bae486d1947b553e61a", + "name": "gdal", + "requires": [], + "size": 42162792, + "version": "1.11.1" + }, + "gdal-1.11.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "6d0824e842549ea6305935ec370c4438", + "name": "gdal", + "requires": [], + "size": 42224481, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-04-22", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "94b44c6f4b072fda540146186cce716f", + "name": "gdal", + "requires": [], + "size": 42559340, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py26_2.tar.bz2": { + "build": "np19py26_2", + "build_number": 2, + "date": "2015-05-11", + "depends": [ + "hdf5 1.8.14", + "libgdal 1.11.2", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "720c06a937c2f9a56618c4d0709ba8da", + "name": "gdal", + "requires": [], + "size": 1286219, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py26_3.tar.bz2": { + "build": "np19py26_3", + "build_number": 3, + "date": "2015-07-21", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 1.11.2", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "1c95703acd3bf0a50d1ec4055d1e7ffa", + "name": "gdal", + "requires": [], + "size": 1287253, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "b800b654981f7ed9e77228e5f6d86e64", + "name": "gdal", + "requires": [], + "size": 42224831, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-04-22", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "7c4a263f6d6b9e9fec8ee5cc5626d266", + "name": "gdal", + "requires": [], + "size": 42559841, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py27_2.tar.bz2": { + "build": "np19py27_2", + "build_number": 2, + "date": "2015-05-11", + "depends": [ + "hdf5 1.8.14", + "libgdal 1.11.2", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "73823584f989420218d3eed96e8f2a8a", + "name": "gdal", + "requires": [], + "size": 1288301, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py27_3.tar.bz2": { + "build": "np19py27_3", + "build_number": 3, + "date": "2015-07-21", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 1.11.2", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "f184760095e4421e27496ad34a86f32a", + "name": "gdal", + "requires": [], + "size": 1287223, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "b47564e849648c65443f3a85e72dc3ea", + "name": "gdal", + "requires": [], + "size": 42206856, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-04-22", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "258a8f7001ecad3e08c54dff1b28905d", + "name": "gdal", + "requires": [], + "size": 42537675, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py33_2.tar.bz2": { + "build": "np19py33_2", + "build_number": 2, + "date": "2015-05-11", + "depends": [ + "hdf5 1.8.14", + "libgdal 1.11.2", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "91882b8819f3fd07f715a22e7d4df45d", + "name": "gdal", + "requires": [], + "size": 1270875, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py33_3.tar.bz2": { + "build": "np19py33_3", + "build_number": 3, + "date": "2015-07-21", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 1.11.2", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "cbbbd205a83005bb5a53cfaf5ecbd15d", + "name": "gdal", + "requires": [], + "size": 1271740, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "3c1f8dd3a320a8996b681ec877bfac68", + "name": "gdal", + "requires": [], + "size": 42217481, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-04-22", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "376cda23934f7947291a29b9b4a5a6ec", + "name": "gdal", + "requires": [], + "size": 42555220, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py34_2.tar.bz2": { + "build": "np19py34_2", + "build_number": 2, + "date": "2015-05-11", + "depends": [ + "hdf5 1.8.14", + "libgdal 1.11.2", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "0adaf1ad39af1f7bf45b61e98813356a", + "name": "gdal", + "requires": [], + "size": 1291246, + "version": "1.11.2" + }, + "gdal-1.11.2-np19py34_3.tar.bz2": { + "build": "np19py34_3", + "build_number": 3, + "date": "2015-07-21", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 1.11.2", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "7aa34a2637d31134f513423a5e0058af", + "name": "gdal", + "requires": [], + "size": 1291774, + "version": "1.11.2" + }, + "gdal-2.0.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 2.0.0", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 2.7*" + ], + "license": "MIT", + "md5": "1875bbf87563081b0d3ab00d15e8a198", + "name": "gdal", + "requires": [], + "size": 1448138, + "version": "2.0.0" + }, + "gdal-2.0.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 2.0.0", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 3.4*" + ], + "license": "MIT", + "md5": "640a4fd7daa2cc60f71496ca901b0a39", + "name": "gdal", + "requires": [], + "size": 1455000, + "version": "2.0.0" + }, + "gdal-2.0.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 2.0.0", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 3.5*" + ], + "license": "MIT", + "md5": "77309c2fdc979f4a80432f64b8ce0f76", + "name": "gdal", + "requires": [], + "size": 1455281, + "version": "2.0.0" + }, + "gdal-2.0.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-24", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 2.0.0", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "f2bca16fd09a04b5d202ae979400c4af", + "name": "gdal", + "requires": [], + "size": 1448433, + "version": "2.0.0" + }, + "gdal-2.0.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-24", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 2.0.0", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "2687163788bcadbf0b15d92bc6a4c8b5", + "name": "gdal", + "requires": [], + "size": 1448859, + "version": "2.0.0" + }, + "gdal-2.0.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-24", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 2.0.0", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "002f36c789296ca39b01979b9b331dff", + "name": "gdal", + "requires": [], + "size": 1437418, + "version": "2.0.0" + }, + "gdal-2.0.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-24", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 2.0.0", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "932d5bb2abc3079095ed6baac7f6a843", + "name": "gdal", + "requires": [], + "size": 1454878, + "version": "2.0.0" + }, + "gdal-2.0.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "hdf5 1.8.15.1", + "libgdal 2.0.0", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 3.5*" + ], + "license": "MIT", + "md5": "d812e41e78355d9a10f5eb16a42d510a", + "name": "gdal", + "requires": [], + "size": 1455665, + "version": "2.0.0" + }, + "gdal-2.0.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-12-03", + "depends": [ + "libgdal", + "numpy", + "python 2.7*" + ], + "license": "MIT", + "md5": "2c10787c61f60218a9b495aed1c05584", + "name": "gdal", + "requires": [], + "size": 1485472, + "version": "2.0.0" + }, + "gdal-2.0.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-12-03", + "depends": [ + "libgdal", + "numpy", + "python 3.4*" + ], + "license": "MIT", + "md5": "a392f546091fc6f7455deeafe18b78bd", + "name": "gdal", + "requires": [], + "size": 1469017, + "version": "2.0.0" + }, + "gdal-2.0.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-12-03", + "depends": [ + "libgdal", + "numpy", + "python 3.5*" + ], + "license": "MIT", + "md5": "c66e1fdc52a8df1de64733cfca8acb6f", + "name": "gdal", + "requires": [], + "size": 1470200, + "version": "2.0.0" + }, + "gdata-2.0.17-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "atom" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "564cd7d2320225796555d37d10db2969", + "name": "gdata", + "requires": [], + "size": 784740, + "version": "2.0.17" + }, + "gdata-2.0.17-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "atom" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "4a86d6f2519d6fe104537fac488b33b2", + "name": "gdata", + "requires": [], + "size": 788097, + "version": "2.0.17" + }, + "gdata-2.0.18-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "conflicts": [ + "atom" + ], + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "b5add5016895f020ee142340db7c2708", + "name": "gdata", + "requires": [], + "size": 781467, + "version": "2.0.18" + }, + "gdata-2.0.18-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "conflicts": [ + "atom" + ], + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "242c5da3f874ab87e155c05aef234027", + "name": "gdata", + "requires": [], + "size": 782467, + "version": "2.0.18" + }, + "gdbm-1.11-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-07-31", + "depends": [], + "license": "GPL3", + "md5": "ca21ccc2934daf5d38d41737108100d5", + "name": "gdbm", + "requires": [], + "size": 334280, + "version": "1.11" + }, + "gensim-0.10.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "896493bd033f41fe0de863929130e134", + "name": "gensim", + "requires": [], + "size": 2059006, + "version": "0.10.0" + }, + "gensim-0.10.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "5186e506cfde7449546e65e173dde166", + "name": "gensim", + "requires": [], + "size": 2060053, + "version": "0.10.0" + }, + "gensim-0.10.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "e91c477cd65ac170eaf1446701aca79c", + "name": "gensim", + "requires": [], + "size": 2067011, + "version": "0.10.0" + }, + "gensim-0.10.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "ad92170db68a6bb61124f7175b38dcb9", + "name": "gensim", + "requires": [], + "size": 2064047, + "version": "0.10.0" + }, + "gensim-0.10.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "cdcf1d88d59c9a086e511e5024072977", + "name": "gensim", + "requires": [], + "size": 2067893, + "version": "0.10.0" + }, + "gensim-0.10.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "84524dc35029d1566d58cd074ba829ea", + "name": "gensim", + "requires": [], + "size": 2068087, + "version": "0.10.0" + }, + "gensim-0.10.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "510203ef9293be2f4ae8e8da78093938", + "name": "gensim", + "requires": [], + "size": 2079368, + "version": "0.10.0" + }, + "gensim-0.10.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "88d1cdaa3988e5295628557e1ed863ac", + "name": "gensim", + "requires": [], + "size": 2078093, + "version": "0.10.0" + }, + "gensim-0.10.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "2e44c1a3bb61ea7d936af91cde1f96c0", + "name": "gensim", + "requires": [], + "size": 2147742, + "version": "0.10.2" + }, + "gensim-0.10.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "63a4f87b0b3967e1fe9765226c35af86", + "name": "gensim", + "requires": [], + "size": 2147920, + "version": "0.10.2" + }, + "gensim-0.10.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "5a86cbb36ed89bad989e78bb6b07ac97", + "name": "gensim", + "requires": [], + "size": 2157432, + "version": "0.10.2" + }, + "gensim-0.10.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "4ce47f553596a66e822d5c156fadb9ea", + "name": "gensim", + "requires": [], + "size": 2161035, + "version": "0.10.2" + }, + "gensim-0.10.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-12-10", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "70b45565613fe7e28b0676dc0b840189", + "name": "gensim", + "requires": [], + "size": 2322589, + "version": "0.10.3" + }, + "gensim-0.10.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-10", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "404b460770098866e96fa3e1d9cb16c3", + "name": "gensim", + "requires": [], + "size": 2320392, + "version": "0.10.3" + }, + "gensim-0.10.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-10", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "f6257c7a6b84915e807d4f6fa9e35e62", + "name": "gensim", + "requires": [], + "size": 2345686, + "version": "0.10.3" + }, + "gensim-0.10.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-10", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "80658154c333c7675e6b05b097ebe33e", + "name": "gensim", + "requires": [], + "size": 2347819, + "version": "0.10.3" + }, + "gensim-0.12.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-09-08", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "9f5a5595cd0cb3fa4cc2d862388b4f3a", + "name": "gensim", + "requires": [], + "size": 2443225, + "version": "0.12.1" + }, + "gensim-0.12.2-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "abed4cfa15c61264238e87c08b64ba73", + "name": "gensim", + "requires": [], + "size": 2449275, + "version": "0.12.2" + }, + "gensim-0.12.2-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-13", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "fca49de5c95a50d3412e78b65a2c8457", + "name": "gensim", + "requires": [], + "size": 2482717, + "version": "0.12.2" + }, + "gensim-0.12.2-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "59a3f8fb1e5171fc2e9c4903cea7f111", + "name": "gensim", + "requires": [], + "size": 2481397, + "version": "0.12.2" + }, + "gensim-0.12.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy", + "six" + ], + "license": "LGPL", + "md5": "ca6ff2340d36bc27245f767ade6462e9", + "name": "gensim", + "requires": [], + "size": 2447828, + "version": "0.12.2" + }, + "gensim-0.12.4-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "scipy", + "six", + "smart_open" + ], + "license": "LGPL", + "md5": "cd89db0ec054c30b4aad3ddfee6a8b39", + "name": "gensim", + "requires": [], + "size": 2517022, + "version": "0.12.4" + }, + "gensim-0.12.4-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "scipy", + "six", + "smart_open" + ], + "license": "LGPL", + "md5": "11d4a8945e0021584fc43a7194cb23ba", + "name": "gensim", + "requires": [], + "size": 2564953, + "version": "0.12.4" + }, + "gensim-0.12.4-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "scipy", + "six", + "smart_open" + ], + "license": "LGPL", + "md5": "e7e9d626dc33e62e631c9eaeaaf8e4b4", + "name": "gensim", + "requires": [], + "size": 2558802, + "version": "0.12.4" + }, + "gensim-0.12.4-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "numpy 1.11*", + "python 2.7*", + "scipy", + "six", + "smart_open" + ], + "license": "LGPL", + "md5": "b7f06e6c049d1e599adb9a9772e873e4", + "name": "gensim", + "requires": [], + "size": 2516943, + "version": "0.12.4" + }, + "gensim-0.12.4-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "numpy 1.11*", + "python 3.4*", + "scipy", + "six", + "smart_open" + ], + "license": "LGPL", + "md5": "f2f921ef954c8da5cec6e8aea295a4b2", + "name": "gensim", + "requires": [], + "size": 2563477, + "version": "0.12.4" + }, + "gensim-0.12.4-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "numpy 1.11*", + "python 3.5*", + "scipy", + "six", + "smart_open" + ], + "license": "LGPL", + "md5": "7f7f4d7ad7c5926ea7ad88c5c9eb85b0", + "name": "gensim", + "requires": [], + "size": 2557923, + "version": "0.12.4" + }, + "geos-3.3.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "LGPL", + "md5": "513faf25c0be6423c367394b6f429b93", + "name": "geos", + "requires": [], + "size": 15222827, + "version": "3.3.3" + }, + "geos-3.4.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-14", + "depends": [], + "license": "LGPL", + "md5": "ff125051dd22d7386f6620fc4df6d3fc", + "name": "geos", + "requires": [], + "size": 16183934, + "version": "3.4.2" + }, + "gevent-0.13.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "greenlet 0.4*", + "libevent 2.0.20", + "python 2.6*" + ], + "license": "MIT", + "md5": "86f127104b64a313d76cc163f4dbaef0", + "name": "gevent", + "requires": [], + "size": 355025, + "version": "0.13.7" + }, + "gevent-0.13.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "greenlet 0.4*", + "libevent 2.0.20", + "python 2.7*" + ], + "license": "MIT", + "md5": "508d1f1c0c50938fd19cd5b8cb5c3ba6", + "name": "gevent", + "requires": [], + "size": 355296, + "version": "0.13.7" + }, + "gevent-0.13.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "greenlet 0.4*", + "libevent 2.0.20", + "python 2.6*" + ], + "license": "MIT", + "md5": "0fa33bf967077ce2d433fbeee5e1614d", + "name": "gevent", + "requires": [], + "size": 384719, + "version": "0.13.8" + }, + "gevent-0.13.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "greenlet 0.4*", + "libevent 2.0.20", + "python 2.7*" + ], + "license": "MIT", + "md5": "6cbb6aeb191fc587ffdf7d0df343e6e4", + "name": "gevent", + "requires": [], + "size": 385231, + "version": "0.13.8" + }, + "gevent-1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "greenlet 0.4*", + "python 2.6*" + ], + "license": "MIT", + "md5": "0e3a9710f9381600606678bbbc1d4741", + "name": "gevent", + "requires": [], + "size": 866508, + "version": "1.0" + }, + "gevent-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "greenlet 0.4*", + "python 2.7*" + ], + "license": "MIT", + "md5": "55806b66413ab6d616ef0071e5251a2e", + "name": "gevent", + "requires": [], + "size": 864357, + "version": "1.0" + }, + "gevent-1.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "greenlet 0.4*", + "python 2.6*" + ], + "license": "MIT", + "md5": "c8ab7d7c503346392e357fba4bbf5dc0", + "name": "gevent", + "requires": [], + "size": 884678, + "version": "1.0.1" + }, + "gevent-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "greenlet 0.4*", + "python 2.7*" + ], + "license": "MIT", + "md5": "26b4ec184a048459e6242f46b96b7f9a", + "name": "gevent", + "requires": [], + "size": 884081, + "version": "1.0.1" + }, + "gevent-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "greenlet 0.4*", + "python 2.7*" + ], + "license": "MIT", + "md5": "3bee721c5de107844c034787061af93d", + "name": "gevent", + "requires": [], + "size": 1025056, + "version": "1.0.2" + }, + "gevent-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-07", + "depends": [ + "greenlet >=0.4.9", + "python 2.7*" + ], + "license": "MIT", + "md5": "a893bfcc8216d8e74320f609a8640adf", + "name": "gevent", + "requires": [], + "size": 1134158, + "version": "1.1.0" + }, + "gevent-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-07", + "depends": [ + "greenlet >=0.4.9", + "python 3.4*" + ], + "license": "MIT", + "md5": "29241a4312f8c5bd247d923a716668ee", + "name": "gevent", + "requires": [], + "size": 1275490, + "version": "1.1.0" + }, + "gevent-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-07", + "depends": [ + "greenlet >=0.4.9", + "python 3.5*" + ], + "license": "MIT", + "md5": "7ae87263cd697c904c8b65787a59b9ac", + "name": "gevent", + "requires": [], + "size": 1250522, + "version": "1.1.0" + }, + "gevent-1.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "greenlet >=0.4.9", + "python 2.7*" + ], + "license": "MIT", + "md5": "bb57c3df012887be5cfad901acf81ee7", + "name": "gevent", + "requires": [], + "size": 1133944, + "version": "1.1.1" + }, + "gevent-1.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "greenlet >=0.4.9", + "python 3.4*" + ], + "license": "MIT", + "md5": "d194818138a3f6de44d08565b0cbef43", + "name": "gevent", + "requires": [], + "size": 1275821, + "version": "1.1.1" + }, + "gevent-1.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "greenlet >=0.4.9", + "python 3.5*" + ], + "license": "MIT", + "md5": "050f429da5add18ecd9681ceeb9df0e6", + "name": "gevent", + "requires": [], + "size": 1252112, + "version": "1.1.1" + }, + "gevent-websocket-0.3.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8" + ], + "license": "Apache", + "md5": "37cc0202bcd90bfd0bf994ae7ac0d58f", + "name": "gevent-websocket", + "requires": [], + "size": 13881, + "version": "0.3.6" + }, + "gevent-websocket-0.3.6-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.6*" + ], + "license": "Apache", + "md5": "4275c2fb25cf935c44338bd336545e11", + "name": "gevent-websocket", + "requires": [], + "size": 13789, + "version": "0.3.6" + }, + "gevent-websocket-0.3.6-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.6*" + ], + "license": "Apache", + "md5": "422df2c21f0de2a869cbb53a9c074882", + "name": "gevent-websocket", + "requires": [], + "size": 13810, + "version": "0.3.6" + }, + "gevent-websocket-0.3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8" + ], + "license": "Apache", + "md5": "8112851c6f45e63314b6ca86b94e2c18", + "name": "gevent-websocket", + "requires": [], + "size": 13899, + "version": "0.3.6" + }, + "gevent-websocket-0.3.6-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.7*" + ], + "license": "Apache", + "md5": "1df7c65b43a436728a877279dd2679ef", + "name": "gevent-websocket", + "requires": [], + "size": 13820, + "version": "0.3.6" + }, + "gevent-websocket-0.3.6-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.7*" + ], + "license": "Apache", + "md5": "dc0e60dbc64861a102a193e6862a7ae0", + "name": "gevent-websocket", + "requires": [], + "size": 13846, + "version": "0.3.6" + }, + "gevent-websocket-0.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gevent 1.0", + "python 2.6*", + "ujson 1.33" + ], + "license": "Apache", + "md5": "892e1bfb0141c84c5e5675ced137eefa", + "name": "gevent-websocket", + "requires": [], + "size": 24941, + "version": "0.9.2" + }, + "gevent-websocket-0.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gevent 1.0", + "python 2.7*", + "ujson 1.33" + ], + "license": "Apache", + "md5": "98d590a84fe8e1a244698b50566a3740", + "name": "gevent-websocket", + "requires": [], + "size": 24991, + "version": "0.9.2" + }, + "gevent-websocket-0.9.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gevent 1.0.1", + "python 2.6*", + "ujson 1.33" + ], + "license": "Apache", + "md5": "6c32ad112012e04b4b90de08d0dc8f74", + "name": "gevent-websocket", + "requires": [], + "size": 25055, + "version": "0.9.3" + }, + "gevent-websocket-0.9.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gevent 1.0.1", + "python 2.7*", + "ujson 1.33" + ], + "license": "Apache", + "md5": "56252b713c25c50efe3b4a214d9a57b7", + "name": "gevent-websocket", + "requires": [], + "size": 25150, + "version": "0.9.3" + }, + "gevent-websocket-0.9.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "gevent 1.0.2", + "python 2.7*" + ], + "license": "Apache", + "md5": "18ee1bf7f4404be46b1bc12ebc10ed87", + "name": "gevent-websocket", + "requires": [], + "size": 25744, + "version": "0.9.5" + }, + "gevent-websocket-0.9.5-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-03-28", + "depends": [ + "gevent 1.1.0", + "python 2.7*" + ], + "license": "Apache", + "md5": "85a9c32b8fd518418d076e72d632c9e1", + "name": "gevent-websocket", + "requires": [], + "size": 25885, + "version": "0.9.5" + }, + "gevent_zeromq-0.2.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.6*", + "pyzmq 2.2.0" + ], + "license_family": "BSD", + "md5": "4230f1590d406de6efa334802b077ad6", + "name": "gevent_zeromq", + "requires": [], + "size": 112644, + "version": "0.2.5" + }, + "gevent_zeromq-0.2.5-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.6*", + "pyzmq 2.2.0.1" + ], + "license_family": "BSD", + "md5": "78506dae5cd331a6bac6a84c2b99dad2", + "name": "gevent_zeromq", + "requires": [], + "size": 115343, + "version": "0.2.5" + }, + "gevent_zeromq-0.2.5-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.6*", + "pyzmq 2.2.0.1" + ], + "license_family": "BSD", + "md5": "a70affd8e0f945be08b4e1320cc25317", + "name": "gevent_zeromq", + "requires": [], + "size": 122781, + "version": "0.2.5" + }, + "gevent_zeromq-0.2.5-py26_3.tar.bz2": { + "build": "py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "gevent 1.0", + "python 2.6*", + "pyzmq 2.2.0.1" + ], + "license": "New BSD", + "license_family": "BSD", + "md5": "b1e6986917ebf9589ca8452630f68e90", + "name": "gevent_zeromq", + "requires": [], + "size": 125679, + "version": "0.2.5" + }, + "gevent_zeromq-0.2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.7*", + "pyzmq 2.2.0" + ], + "license_family": "BSD", + "md5": "33c2b905ef3f8d88cec4829662f71532", + "name": "gevent_zeromq", + "requires": [], + "size": 112499, + "version": "0.2.5" + }, + "gevent_zeromq-0.2.5-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license_family": "BSD", + "md5": "e439d6ef3c14cfdb0c4a74cfb9f65893", + "name": "gevent_zeromq", + "requires": [], + "size": 115372, + "version": "0.2.5" + }, + "gevent_zeromq-0.2.5-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "gevent 0.13.7|0.13.8", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license_family": "BSD", + "md5": "d79a36039fb91296836c3b1013d67cab", + "name": "gevent_zeromq", + "requires": [], + "size": 122908, + "version": "0.2.5" + }, + "gevent_zeromq-0.2.5-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "gevent 1.0", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license": "New BSD", + "license_family": "BSD", + "md5": "006ba5357cf8932050e558fced522c40", + "name": "gevent_zeromq", + "requires": [], + "size": 125746, + "version": "0.2.5" + }, + "git-2.6.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "curl", + "expat", + "openssl", + "zlib" + ], + "license": "GPL v2 and LGPL 2.1", + "license_family": "GPL2", + "md5": "cf14f7490cba4cf41408ad26b3e1ace1", + "name": "git", + "requires": [], + "size": 8386011, + "version": "2.6.4" + }, + "glib-2.43.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "libffi >=3.0.0", + "zlib" + ], + "license": "LGPL", + "md5": "d5c34cc8a65bba14bab7aef246bd5c72", + "name": "glib", + "requires": [], + "size": 6664496, + "version": "2.43.0" + }, + "glueviz-0.4.0-np19py27_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-16", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "4784953315be977e0bb4985f8b69245c", + "name": "glueviz", + "requires": [], + "size": 1020624, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.4.0" + }, + "glueviz-0.4.0-np19py27_1.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py27_1", + "build_number": 1, + "date": "2015-03-27", + "depends": [ + "astropy", + "ipython", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 2.7*", + "scikit-image 0.11.2", + "scipy" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "d12bc674c8e5f456b95592bfb84bfdfb", + "name": "glueviz", + "requires": [], + "size": 1020932, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.4.0" + }, + "glueviz-0.5.0-np19py27_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "astropy", + "ipython", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 2.7*", + "scikit-image 0.11.3", + "scipy" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "b64967fe0339c83622bc4d8b4ce70774", + "name": "glueviz", + "requires": [], + "size": 1045582, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.0" + }, + "glueviz-0.5.0-np19py33_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "astropy", + "ipython", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 3.3*", + "scikit-image 0.11.3", + "scipy" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "63a70ef4b4dc674fd5e3ae96d8d0cfd8", + "name": "glueviz", + "requires": [], + "size": 1103970, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.0" + }, + "glueviz-0.5.0-np19py34_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "astropy", + "ipython", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 3.4*", + "scikit-image 0.11.3", + "scipy" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "0d6b5b7e386daefe6b801db20ad6bc72", + "name": "glueviz", + "requires": [], + "size": 1090592, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.0" + }, + "glueviz-0.5.1-np19py27_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "astropy", + "ipython", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 2.7*", + "scikit-image 0.11.3", + "scipy" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "e982f647df259999c140c5c9330f5fe0", + "name": "glueviz", + "requires": [], + "size": 1046232, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.1" + }, + "glueviz-0.5.1-np19py27_1.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py27_1", + "build_number": 1, + "date": "2015-07-07", + "depends": [ + "astropy", + "ipython-qtconsole 3.2.0", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 2.7*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "0fe15b329a48fcdefec2b9431b3ace0a", + "name": "glueviz", + "requires": [], + "size": 1046528, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.1" + }, + "glueviz-0.5.1-np19py33_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "astropy", + "ipython", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 3.3*", + "scikit-image 0.11.3", + "scipy" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "cd1945a6cf1184ae1fe6cf571332bfd5", + "name": "glueviz", + "requires": [], + "size": 1104934, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.1" + }, + "glueviz-0.5.1-np19py33_1.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py33_1", + "build_number": 1, + "date": "2015-07-07", + "depends": [ + "astropy", + "ipython-qtconsole 3.2.0", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 3.3*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "7daea6631cb2fb1943c9f326c22d1961", + "name": "glueviz", + "requires": [], + "size": 1104503, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.1" + }, + "glueviz-0.5.1-np19py34_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "astropy", + "ipython", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 3.4*", + "scikit-image 0.11.3", + "scipy" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "e6f155ae1596ffa5b7285bbb413b4eda", + "name": "glueviz", + "requires": [], + "size": 1091773, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.1" + }, + "glueviz-0.5.1-np19py34_1.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py34_1", + "build_number": 1, + "date": "2015-07-07", + "depends": [ + "astropy", + "ipython-qtconsole 3.2.0", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 3.4*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "71e335b47da23d3564e69a5a916bda6d", + "name": "glueviz", + "requires": [], + "size": 1092126, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.1" + }, + "glueviz-0.5.3-np110py27_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "astropy", + "ipython-qtconsole 4.0.1", + "matplotlib", + "numpy 1.10*", + "pandas", + "pyqt", + "python 2.7*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "ac04a2613f8423d57fd63eae8450c63e", + "name": "glueviz", + "requires": [], + "size": 1047801, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.3" + }, + "glueviz-0.5.3-np110py34_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "astropy", + "ipython-qtconsole 4.0.1", + "matplotlib", + "numpy 1.10*", + "pandas", + "pyqt", + "python 3.4*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "bf149f1169801e4864b210519ab5fa24", + "name": "glueviz", + "requires": [], + "size": 1093722, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.3" + }, + "glueviz-0.5.3-np110py35_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "astropy", + "ipython-qtconsole 4.0.1", + "matplotlib", + "numpy 1.10*", + "pandas", + "pyqt", + "python 3.5*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "a1442a2ab8090d73f682759f7a95504e", + "name": "glueviz", + "requires": [], + "size": 1092708, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.3" + }, + "glueviz-0.5.3-np19py27_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py27_0", + "build_number": 0, + "date": "2015-08-27", + "depends": [ + "astropy", + "ipython-qtconsole 3.2.1", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 2.7*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "3c237e36847544114b756b2f008c3eb4", + "name": "glueviz", + "requires": [], + "size": 1048260, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.3" + }, + "glueviz-0.5.3-np19py34_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py34_0", + "build_number": 0, + "date": "2015-08-27", + "depends": [ + "astropy", + "ipython-qtconsole 3.2.1", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 3.4*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "eca56f3f0ff6e3f0837d73c6f509c119", + "name": "glueviz", + "requires": [], + "size": 1093749, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.3" + }, + "glueviz-0.5.3-np19py35_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "astropy", + "ipython-qtconsole 4.0.1", + "matplotlib", + "numpy 1.9*", + "pandas", + "pyqt", + "python 3.5*", + "scikit-image 0.11.3", + "scipy", + "setuptools" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "81f3b262359a180338cb5a4d3b9d51c1", + "name": "glueviz", + "requires": [], + "size": 1092146, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.5.3" + }, + "glueviz-0.6.0-py27_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py27_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "astropy", + "matplotlib", + "pandas", + "python 2.7*" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "c52201054956bed69d26d56d092e53d4", + "name": "glueviz", + "requires": [], + "size": 1108755, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.6.0" + }, + "glueviz-0.6.0-py27_1.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py27_1", + "build_number": 1, + "date": "2015-12-01", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 2.7*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "89c541a6137b09d9080f884ae3715ffc", + "name": "glueviz", + "requires": [], + "size": 1108922, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.6.0" + }, + "glueviz-0.6.0-py34_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py34_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "astropy", + "matplotlib", + "pandas", + "python 3.4*" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "30ba5a4d6f7f14ecb88561f96bebc980", + "name": "glueviz", + "requires": [], + "size": 1151057, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.6.0" + }, + "glueviz-0.6.0-py34_1.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py34_1", + "build_number": 1, + "date": "2015-12-01", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 3.4*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "43443b8522c4f3d83758ea73f02b0e6e", + "name": "glueviz", + "requires": [], + "size": 1150829, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.6.0" + }, + "glueviz-0.6.0-py35_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py35_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "astropy", + "matplotlib", + "pandas", + "python 3.5*" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "38c7d9583c8b61a0e0842ed2a327ef47", + "name": "glueviz", + "requires": [], + "size": 1149330, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.6.0" + }, + "glueviz-0.6.0-py35_1.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py35_1", + "build_number": 1, + "date": "2015-12-01", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 3.5*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "b4a15702628f8c53e12313a3fa6005ac", + "name": "glueviz", + "requires": [], + "size": 1150052, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.6.0" + }, + "glueviz-0.7.0-py27_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 2.7*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "97589d8ba6a646c6c2e8858020e983c9", + "name": "glueviz", + "requires": [], + "size": 1109225, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.7.0" + }, + "glueviz-0.7.0-py34_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 3.4*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "fcf86dcf0817596d1555bfbe4e0a0c7b", + "name": "glueviz", + "requires": [], + "size": 1140013, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.7.0" + }, + "glueviz-0.7.0-py35_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 3.5*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "02698896ea1075a0ae0f82a7b94892c5", + "name": "glueviz", + "requires": [], + "size": 1139256, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.7.0" + }, + "glueviz-0.7.1-py27_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 2.7*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "fcd6f7dd1f286f0c006043ffc48fef41", + "name": "glueviz", + "requires": [], + "size": 1135129, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.7.1" + }, + "glueviz-0.7.1-py34_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 3.4*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "3f01c0d736bfd09505a68bfb1c6fc8c0", + "name": "glueviz", + "requires": [], + "size": 1170575, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.7.1" + }, + "glueviz-0.7.1-py35_0.tar.bz2": { + "app_entry": "glue", + "app_type": "desk", + "build": "py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "astropy", + "h5py 2.5*", + "ipykernel", + "ipython", + "matplotlib", + "pandas", + "pyqt", + "python 3.5*", + "qtconsole", + "scipy", + "xlrd" + ], + "icon": "87d00fe333551440c29e16192807b6e6.png", + "license": "MIT", + "md5": "4a75b9e8b314ea9b69bbf27a93500f55", + "name": "glueviz", + "requires": [], + "size": 1169732, + "summary": "link visualizations of scientific datasets", + "type": "app", + "version": "0.7.1" + }, + "gmp-5.1.2-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-03-05", + "depends": [], + "license": "GPL3", + "license_family": "GPL3", + "md5": "dc6eb77b69dfd9479f8237708b049744", + "name": "gmp", + "requires": [], + "size": 608015, + "version": "5.1.2" + }, + "google-apputils-0.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "dateutil", + "python 2.7*", + "python-gflags 2.0", + "pytz" + ], + "license": "Apache", + "md5": "dbfe573568ab56657be16e58990faee0", + "name": "google-apputils", + "requires": [], + "size": 75184, + "version": "0.4.1" + }, + "google-apputils-0.4.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-03-20", + "depends": [ + "python 2.7*", + "python-dateutil", + "python-gflags 2.0", + "pytz" + ], + "license": "Apache", + "md5": "381db349dc412c299df9dc8d2cdf4489", + "name": "google-apputils", + "requires": [], + "size": 75184, + "version": "0.4.1" + }, + "google-apputils-0.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 2.7*", + "python-dateutil", + "python-gflags 2.0", + "pytz" + ], + "license": "Apache", + "md5": "3ac48cf803df420701a57187428328ff", + "name": "google-apputils", + "requires": [], + "size": 75440, + "version": "0.4.2" + }, + "googlecl-0.9.12-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gdata 2.0.17", + "python 2.6*" + ], + "license": "Apache", + "md5": "4ae24a2a7753a40eeb10ab39171be842", + "name": "googlecl", + "requires": [], + "size": 107117, + "version": "0.9.12" + }, + "googlecl-0.9.12-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "gdata 2.0.17", + "python 2.7*" + ], + "license": "Apache", + "md5": "bbb1f1ec2eac8cba2975bddf390d467b", + "name": "googlecl", + "requires": [], + "size": 107111, + "version": "0.9.12" + }, + "graphite-web-0.9.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "django 1.7.2", + "py2cairo 1.10.0", + "python 2.7*", + "whisper 0.9.13" + ], + "license": "Apache", + "md5": "14e7bc54c468f7d2d37333ebe716ebd5", + "name": "graphite-web", + "requires": [], + "size": 1887220, + "version": "0.9.13" + }, + "graphviz-2.38.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-09-09", + "depends": [ + "freetype", + "libpng", + "zlib" + ], + "license": "EPL", + "license_family": "Other", + "md5": "954d8032637695d01e0d6b1d0dbc9004", + "name": "graphviz", + "requires": [], + "size": 12012028, + "version": "2.38.0" + }, + "graphviz-2.38.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2016-02-08", + "depends": [ + "freetype 2.5.*", + "pango >=1.39.0", + "zlib 1.2.*" + ], + "license": "EPL", + "license_family": "Other", + "md5": "8516d4ffb428f65ad2fa96700ff417e0", + "name": "graphviz", + "requires": [], + "size": 12020288, + "version": "2.38.0" + }, + "greenlet-0.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "49cc0d7f45150b8b60a21eefcbcc4244", + "name": "greenlet", + "requires": [], + "size": 31234, + "version": "0.4.0" + }, + "greenlet-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "25c0cda0dd1e58144371ed3e917d8e67", + "name": "greenlet", + "requires": [], + "size": 31349, + "version": "0.4.0" + }, + "greenlet-0.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "8f8af763eb8c39472db3cf1bde57be64", + "name": "greenlet", + "requires": [], + "size": 32315, + "version": "0.4.0" + }, + "greenlet-0.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "21640de65b3ef05aa30b47e282b4dc43", + "name": "greenlet", + "requires": [], + "size": 31282, + "version": "0.4.1" + }, + "greenlet-0.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "a678109f5277c3ec79e04b21f369f2c3", + "name": "greenlet", + "requires": [], + "size": 31238, + "version": "0.4.1" + }, + "greenlet-0.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "bd4660d8466368d82b39e46631c3ab6e", + "name": "greenlet", + "requires": [], + "size": 32521, + "version": "0.4.1" + }, + "greenlet-0.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "9e975acca92bbdd51c212d0ddb4fb8fc", + "name": "greenlet", + "requires": [], + "size": 31757, + "version": "0.4.2" + }, + "greenlet-0.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "34bebf3a8a0da17d97d89d194bf66263", + "name": "greenlet", + "requires": [], + "size": 31605, + "version": "0.4.2" + }, + "greenlet-0.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "13e99f815627fba7fc4b7e9146b806e6", + "name": "greenlet", + "requires": [], + "size": 32825, + "version": "0.4.2" + }, + "greenlet-0.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "b97c78619495d696892ab3251c13db46", + "name": "greenlet", + "requires": [], + "size": 34888, + "version": "0.4.2" + }, + "greenlet-0.4.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-15", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "9a5fc9ea5c8cacc6c787c1cedca7e16f", + "name": "greenlet", + "requires": [], + "size": 33567, + "version": "0.4.4" + }, + "greenlet-0.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-15", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "199e5bc8d8bdc9c209b5b88c1d48729b", + "name": "greenlet", + "requires": [], + "size": 33617, + "version": "0.4.4" + }, + "greenlet-0.4.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-15", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "8040a1cbc44174a47c1f120b41147d4f", + "name": "greenlet", + "requires": [], + "size": 34708, + "version": "0.4.4" + }, + "greenlet-0.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-15", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "d176971799d4ad9e23080bfe7affbe50", + "name": "greenlet", + "requires": [], + "size": 37394, + "version": "0.4.4" + }, + "greenlet-0.4.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "456ea1b2c1f89261bc8981cf3bfb4c0b", + "name": "greenlet", + "requires": [], + "size": 33764, + "version": "0.4.5" + }, + "greenlet-0.4.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "db68173fd6212f6612c64a3b7b1a1539", + "name": "greenlet", + "requires": [], + "size": 33793, + "version": "0.4.5" + }, + "greenlet-0.4.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "50e51a750dc9c12ceedcfffc938d9984", + "name": "greenlet", + "requires": [], + "size": 34976, + "version": "0.4.5" + }, + "greenlet-0.4.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "90029b431e4912f62aa64cda5e5573b9", + "name": "greenlet", + "requires": [], + "size": 37614, + "version": "0.4.5" + }, + "greenlet-0.4.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "4d5f703276e70e5638fa048fcbae350d", + "name": "greenlet", + "requires": [], + "size": 33535, + "version": "0.4.6" + }, + "greenlet-0.4.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9b3f31b57d5601a9eaab5911cc9c5aca", + "name": "greenlet", + "requires": [], + "size": 33578, + "version": "0.4.6" + }, + "greenlet-0.4.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "2a45b36dfb8320edf71ec12500d74ec3", + "name": "greenlet", + "requires": [], + "size": 34778, + "version": "0.4.6" + }, + "greenlet-0.4.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "69cc6c9bbe7c83ca151d4d13236178fd", + "name": "greenlet", + "requires": [], + "size": 37519, + "version": "0.4.6" + }, + "greenlet-0.4.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "31007bb6a06f083faf38087896b2050a", + "name": "greenlet", + "requires": [], + "size": 33550, + "version": "0.4.7" + }, + "greenlet-0.4.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c08270f7cfd773064bb14a3148e5bce2", + "name": "greenlet", + "requires": [], + "size": 33609, + "version": "0.4.7" + }, + "greenlet-0.4.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "83485e91154757b64f09557a7fa92293", + "name": "greenlet", + "requires": [], + "size": 34743, + "version": "0.4.7" + }, + "greenlet-0.4.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "360ee6eab2e95d1cab39117ab72bd5cf", + "name": "greenlet", + "requires": [], + "size": 37471, + "version": "0.4.7" + }, + "greenlet-0.4.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "ff407dac1473bb018a480416beb8bee9", + "name": "greenlet", + "requires": [], + "size": 37634, + "version": "0.4.7" + }, + "greenlet-0.4.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-24", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "df223b14422f5abc41ef74a082886975", + "name": "greenlet", + "requires": [], + "size": 31598, + "version": "0.4.9" + }, + "greenlet-0.4.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-24", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "2bdf0ee492424382ca4b1585dba93f87", + "name": "greenlet", + "requires": [], + "size": 34962, + "version": "0.4.9" + }, + "greenlet-0.4.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-24", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "24649bfd1d90d9305ea78390f46f4112", + "name": "greenlet", + "requires": [], + "size": 35108, + "version": "0.4.9" + }, + "gridmap-0.13.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "drmaa 0.7.6", + "psutil", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "GPL3", + "md5": "2cac8526445dd17705e4bd4872f20cd4", + "name": "gridmap", + "requires": [], + "size": 29002, + "version": "0.13.0" + }, + "gridmap-0.13.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "drmaa 0.7.6", + "psutil", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "GPL3", + "md5": "20cf949daac6a4505c26b640b316e05c", + "name": "gridmap", + "requires": [], + "size": 29190, + "version": "0.13.0" + }, + "gridmap-0.13.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-15", + "depends": [ + "drmaa 0.7.6", + "psutil", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "GPL3", + "md5": "192c570fdf886ae8a1cc69c46082de03", + "name": "gridmap", + "requires": [], + "size": 29469, + "version": "0.13.0" + }, + "gridmap-0.13.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "drmaa 0.7.6", + "psutil", + "python 3.5*", + "pyzmq 14.*" + ], + "license": "GPL3", + "md5": "65afcf4e997fc1ad1730e3692c926243", + "name": "gridmap", + "requires": [], + "size": 29319, + "version": "0.13.0" + }, + "grin-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c00dcd2a036e7e20bd1ef1fdac1c5bde", + "name": "grin", + "requires": [], + "size": 23102, + "version": "1.2.1" + }, + "grin-1.2.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "argparse", + "python 2.6*" + ], + "license": "BSD", + "md5": "bc688b5a30c69d4b3c5a4bf99263e592", + "name": "grin", + "requires": [], + "size": 23126, + "version": "1.2.1" + }, + "grin-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e722debb28db9f82db173676bf986842", + "name": "grin", + "requires": [], + "size": 23012, + "version": "1.2.1" + }, + "grin-1.2.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "5c03ccad45e9eaae1026791e94c5eb9e", + "name": "grin", + "requires": [], + "size": 23065, + "version": "1.2.1" + }, + "gunicorn-18.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pastedeploy 1.5.2", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "97d9d097a97bc90339da5b9cfd0f0a0a", + "name": "gunicorn", + "requires": [], + "size": 128539, + "version": "18.0" + }, + "gunicorn-18.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pastedeploy 1.5.2", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "2f91c2269a4887b2fda9a864bf998a43", + "name": "gunicorn", + "requires": [], + "size": 128923, + "version": "18.0" + }, + "gunicorn-18.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pastedeploy 1.5.2", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "718805446cf4ced71dc86bd62999d1b6", + "name": "gunicorn", + "requires": [], + "size": 133527, + "version": "18.0" + }, + "gunicorn-18.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pastedeploy 1.5.2", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "340566736daef055f5cad0f61adeca52", + "name": "gunicorn", + "requires": [], + "size": 133348, + "version": "18.0" + }, + "gunicorn-19.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pastedeploy 1.5.2", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "fe8ee44c0868971fc5f2b43f7b8519c4", + "name": "gunicorn", + "requires": [], + "size": 140831, + "version": "19.1.0" + }, + "gunicorn-19.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pastedeploy 1.5.2", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "02ede5bb84a946e787aa447248081bd2", + "name": "gunicorn", + "requires": [], + "size": 140535, + "version": "19.1.0" + }, + "gunicorn-19.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pastedeploy 1.5.2", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "3d7178d215c5814d15bb151d7aa36689", + "name": "gunicorn", + "requires": [], + "size": 146655, + "version": "19.1.0" + }, + "gunicorn-19.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pastedeploy 1.5.2", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "6a066fcf27798a156c4cfed47e077aa4", + "name": "gunicorn", + "requires": [], + "size": 145779, + "version": "19.1.0" + }, + "gunicorn-19.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pastedeploy 1.5.2", + "python 3.5*", + "setuptools" + ], + "license": "MIT", + "md5": "69c6e96a1616fdca5326aeb810d21298", + "name": "gunicorn", + "requires": [], + "size": 145293, + "version": "19.1.0" + }, + "h5py-2.0.1-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.5*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "20d0f60fe737465d5f296d79cd30ecd3", + "name": "h5py", + "requires": [], + "size": 2063885, + "version": "2.0.1" + }, + "h5py-2.0.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.5*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "e67e28701ce054012a1e2da9e97bf23f", + "name": "h5py", + "requires": [], + "size": 2062210, + "version": "2.0.1" + }, + "h5py-2.0.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.6*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "d5ae6672c3134ad01b9ec150b2bf6b82", + "name": "h5py", + "requires": [], + "size": 2063799, + "version": "2.0.1" + }, + "h5py-2.0.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.6*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "3c2dc5ae4525c05c4720043663686cc9", + "name": "h5py", + "requires": [], + "size": 2063104, + "version": "2.0.1" + }, + "h5py-2.0.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "9eb8e4016e58931c1dbb2d3df4df1795", + "name": "h5py", + "requires": [], + "size": 2065607, + "version": "2.0.1" + }, + "h5py-2.0.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "292609178cf8968a2335a83c7dee9db5", + "name": "h5py", + "requires": [], + "size": 2064058, + "version": "2.0.1" + }, + "h5py-2.1.0-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.5*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "f74d93ece87fb5f48c33c0af4f05e7ca", + "name": "h5py", + "requires": [], + "size": 1909098, + "version": "2.1.0" + }, + "h5py-2.1.0-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.5*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "32ca6609b253778fa0db6334af035dda", + "name": "h5py", + "requires": [], + "size": 1907248, + "version": "2.1.0" + }, + "h5py-2.1.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.6*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "15ccd8e2c56ea0de0d24585618467fb2", + "name": "h5py", + "requires": [], + "size": 1909638, + "version": "2.1.0" + }, + "h5py-2.1.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.6*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "33aaa52ed4e7e7dc6adaf75bb8b9d048", + "name": "h5py", + "requires": [], + "size": 1907386, + "version": "2.1.0" + }, + "h5py-2.1.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "259e4930f4cfb69f7302caee2c281763", + "name": "h5py", + "requires": [], + "size": 1913528, + "version": "2.1.0" + }, + "h5py-2.1.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "2d410159875d76c22c0b7b906fd5b854", + "name": "h5py", + "requires": [], + "size": 1911351, + "version": "2.1.0" + }, + "h5py-2.1.1-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.5*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "8233061d0d3259179b6140721fb0262d", + "name": "h5py", + "requires": [], + "size": 2819451, + "version": "2.1.1" + }, + "h5py-2.1.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.5*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "4a2b4e131ee4a07f20dd67fd2469ee57", + "name": "h5py", + "requires": [], + "size": 2819598, + "version": "2.1.1" + }, + "h5py-2.1.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.6*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "8136a764f6dad1c07a016732bf9f903d", + "name": "h5py", + "requires": [], + "size": 2820192, + "version": "2.1.1" + }, + "h5py-2.1.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.6*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "c0c66a5fbdb3d6a7e9326bd8b77d1554", + "name": "h5py", + "requires": [], + "size": 2818621, + "version": "2.1.1" + }, + "h5py-2.1.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "137e46751886b1cf2b42cb2e42b755da", + "name": "h5py", + "requires": [], + "size": 2824298, + "version": "2.1.1" + }, + "h5py-2.1.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "1601b26e3dfa394352adcc2489669118", + "name": "h5py", + "requires": [], + "size": 2820970, + "version": "2.1.1" + }, + "h5py-2.2.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.6*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "5a76f3d4e1b3fd3b42423c3c5e75794b", + "name": "h5py", + "requires": [], + "size": 2373169, + "version": "2.2.0" + }, + "h5py-2.2.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.6*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "3c81bff652f941c0617196cff24a8c01", + "name": "h5py", + "requires": [], + "size": 2372185, + "version": "2.2.0" + }, + "h5py-2.2.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "9f8bf0eae70a850f6b4dd98809ab6937", + "name": "h5py", + "requires": [], + "size": 2373428, + "version": "2.2.0" + }, + "h5py-2.2.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "c9503b4ff15d1f4bab9dbf6e1ec53df2", + "name": "h5py", + "requires": [], + "size": 2373906, + "version": "2.2.0" + }, + "h5py-2.2.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "f446e41da8b85799a95c7f6329cdc392", + "name": "h5py", + "requires": [], + "size": 2375108, + "version": "2.2.1" + }, + "h5py-2.2.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.7*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "508998d894c191b98002ebcf4601edd2", + "name": "h5py", + "requires": [], + "size": 2374599, + "version": "2.2.1" + }, + "h5py-2.2.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "be54e52c41054f8924476aa6c7c8a885", + "name": "h5py", + "requires": [], + "size": 2375916, + "version": "2.2.1" + }, + "h5py-2.2.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "23dadb1e24427dc5dba7e5ae5348e2fe", + "name": "h5py", + "requires": [], + "size": 2375201, + "version": "2.2.1" + }, + "h5py-2.2.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 3.3*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "d0f48a74984bd4c1851e764c0f65a021", + "name": "h5py", + "requires": [], + "size": 2347845, + "version": "2.2.1" + }, + "h5py-2.2.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 3.4*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "060e054bde67fea08f933f1f644556f9", + "name": "h5py", + "requires": [], + "size": 2805459, + "version": "2.2.1" + }, + "h5py-2.3.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "b63a08f54f8fc2018a0ddada30cadaad", + "name": "h5py", + "requires": [], + "size": 2533448, + "version": "2.3.0" + }, + "h5py-2.3.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "b632b794875ccbb2c872926da8f7b9c7", + "name": "h5py", + "requires": [], + "size": 2529931, + "version": "2.3.0" + }, + "h5py-2.3.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 3.3*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "311a042e92955e982c9cc340f1b4981c", + "name": "h5py", + "requires": [], + "size": 2460918, + "version": "2.3.0" + }, + "h5py-2.3.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 3.4*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "d15db22de36cd5e0c51946e7828ce57e", + "name": "h5py", + "requires": [], + "size": 2911832, + "version": "2.3.0" + }, + "h5py-2.3.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "02883f352c930893de68ee31b3c984b2", + "name": "h5py", + "requires": [], + "size": 2568124, + "version": "2.3.1" + }, + "h5py-2.3.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "a828227726cc056fbf43d2aee7437ec3", + "name": "h5py", + "requires": [], + "size": 2562868, + "version": "2.3.1" + }, + "h5py-2.3.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 3.3*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "68470f43100d058c9ee88be963f2a12e", + "name": "h5py", + "requires": [], + "size": 2603511, + "version": "2.3.1" + }, + "h5py-2.3.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "hdf5 1.8.9", + "numpy 1.8*", + "python 3.4*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "f8e8e078b1d1366fe8e765b7cc973233", + "name": "h5py", + "requires": [], + "size": 3076561, + "version": "2.3.1" + }, + "h5py-2.3.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "numpy 1.9*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "517969e158958e260c4aed49278348c9", + "name": "h5py", + "requires": [], + "size": 2566825, + "version": "2.3.1" + }, + "h5py-2.3.1-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.6*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "86184da7c98b079f7a1af239e78d0337", + "name": "h5py", + "requires": [], + "size": 2566970, + "version": "2.3.1" + }, + "h5py-2.3.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "numpy 1.9*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "707e66a09a27ea2fc3a78666d2caa223", + "name": "h5py", + "requires": [], + "size": 2562306, + "version": "2.3.1" + }, + "h5py-2.3.1-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "3be57515ab7341db576d7863ccfc7246", + "name": "h5py", + "requires": [], + "size": 2561411, + "version": "2.3.1" + }, + "h5py-2.3.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "numpy 1.9*", + "python 3.3*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "3f0dcaa4e2beb49095b242d0c8cde2b7", + "name": "h5py", + "requires": [], + "size": 2603282, + "version": "2.3.1" + }, + "h5py-2.3.1-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.3*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "4c2febd8b68f93558a09e27a7e22f3a2", + "name": "h5py", + "requires": [], + "size": 2602787, + "version": "2.3.1" + }, + "h5py-2.3.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "numpy 1.9*", + "python 3.4*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "f291bc9a3904a0e2dbcbb031478102f7", + "name": "h5py", + "requires": [], + "size": 3076245, + "version": "2.3.1" + }, + "h5py-2.3.1-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.4*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "1e3c3db74089c14de5996499315db505", + "name": "h5py", + "requires": [], + "size": 3076943, + "version": "2.3.1" + }, + "h5py-2.4.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-09", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "4dc26df4d073f6bd6ec18eab2f09ae11", + "name": "h5py", + "requires": [], + "size": 2391765, + "version": "2.4.0" + }, + "h5py-2.4.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-09", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.7*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "0f6d44b6efe200d8de285b85f6b2e174", + "name": "h5py", + "requires": [], + "size": 2395947, + "version": "2.4.0" + }, + "h5py-2.4.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-09", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.3*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "24fc91c9610c4a29d9f675ad4b59f876", + "name": "h5py", + "requires": [], + "size": 2521417, + "version": "2.4.0" + }, + "h5py-2.4.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-09", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.4*" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "5540237438bcf88e2e6fa29d48544793", + "name": "h5py", + "requires": [], + "size": 2754611, + "version": "2.4.0" + }, + "h5py-2.5.0-np110py27_3.tar.bz2": { + "build": "np110py27_3", + "build_number": 3, + "date": "2015-10-06", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "a635506526650c34cff40320c7eac834", + "name": "h5py", + "requires": [], + "size": 2459281, + "version": "2.5.0" + }, + "h5py-2.5.0-np110py27_4.tar.bz2": { + "build": "np110py27_4", + "build_number": 4, + "date": "2015-10-21", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "4793332085d62a397ae169928aad14fa", + "name": "h5py", + "requires": [], + "size": 2529235, + "version": "2.5.0" + }, + "h5py-2.5.0-np110py34_3.tar.bz2": { + "build": "np110py34_3", + "build_number": 3, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "726c95c7290df9fc66c9203dded9f408", + "name": "h5py", + "requires": [], + "size": 2854551, + "version": "2.5.0" + }, + "h5py-2.5.0-np110py34_4.tar.bz2": { + "build": "np110py34_4", + "build_number": 4, + "date": "2015-10-21", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "5a173ccfb3a81d3349d1a4681302dbee", + "name": "h5py", + "requires": [], + "size": 2851942, + "version": "2.5.0" + }, + "h5py-2.5.0-np110py35_3.tar.bz2": { + "build": "np110py35_3", + "build_number": 3, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 3.5*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "59e4198669c9668539b4c67561fe0c0d", + "name": "h5py", + "requires": [], + "size": 2858447, + "version": "2.5.0" + }, + "h5py-2.5.0-np110py35_4.tar.bz2": { + "build": "np110py35_4", + "build_number": 4, + "date": "2015-10-21", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 3.5*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "32ca7779f420720a1fe53611b2fe2ab3", + "name": "h5py", + "requires": [], + "size": 2854626, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.6*", + "six", + "unittest2" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "bf5ef59a9ca32163c98a1666785c8c99", + "name": "h5py", + "requires": [], + "size": 2396824, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-06-15", + "depends": [ + "cython 0.22", + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.6*", + "six", + "unittest2" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "2dde0663575d0eb44e1736d62e1f39a6", + "name": "h5py", + "requires": [], + "size": 2396586, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py26_2.tar.bz2": { + "build": "np19py26_2", + "build_number": 2, + "date": "2015-06-16", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.6*", + "six", + "unittest2" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "95f3b9baa91e56cac3e125e049750d52", + "name": "h5py", + "requires": [], + "size": 2395835, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py26_3.tar.bz2": { + "build": "np19py26_3", + "build_number": 3, + "date": "2015-06-19", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.9*", + "python 2.6*", + "six", + "unittest2" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "dfc00b3618563a19f910baed8d7fe908", + "name": "h5py", + "requires": [], + "size": 2397952, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "57b7fc707c9ba1cd4dd0497242a88b71", + "name": "h5py", + "requires": [], + "size": 2402205, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-06-15", + "depends": [ + "cython 0.22", + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "33430a50fd0fa0a900a0def7a35f2359", + "name": "h5py", + "requires": [], + "size": 2402284, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py27_2.tar.bz2": { + "build": "np19py27_2", + "build_number": 2, + "date": "2015-06-16", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "b75d86570c7d637060c4906007a2e4ae", + "name": "h5py", + "requires": [], + "size": 2402761, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py27_3.tar.bz2": { + "build": "np19py27_3", + "build_number": 3, + "date": "2015-06-19", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.9*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "6a21e9212afd568ae2088cf07b80f29f", + "name": "h5py", + "requires": [], + "size": 2401239, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.3*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "63f1f33d1c725edf4ff85785bcc6b474", + "name": "h5py", + "requires": [], + "size": 2548082, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-06-15", + "depends": [ + "cython 0.22", + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.3*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "8afe896af8179ba89842ebe06c273f81", + "name": "h5py", + "requires": [], + "size": 2548278, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py33_2.tar.bz2": { + "build": "np19py33_2", + "build_number": 2, + "date": "2015-06-16", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.3*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "a057a9a933d500464f3141943b81577f", + "name": "h5py", + "requires": [], + "size": 2548184, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py33_3.tar.bz2": { + "build": "np19py33_3", + "build_number": 3, + "date": "2015-06-19", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.9*", + "python 3.3*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "c8bcf95996c67be9fd21553870dc72f1", + "name": "h5py", + "requires": [], + "size": 2546351, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "0ed6ef191ba470b2aecdd11e5dd3f0e6", + "name": "h5py", + "requires": [], + "size": 2761086, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-06-15", + "depends": [ + "cython 0.22", + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "a2470944b04419585f68f75691255619", + "name": "h5py", + "requires": [], + "size": 2761457, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py34_2.tar.bz2": { + "build": "np19py34_2", + "build_number": 2, + "date": "2015-06-16", + "depends": [ + "hdf5 1.8.14", + "numpy 1.9*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "68713ea96113a3dde194215230484ca7", + "name": "h5py", + "requires": [], + "size": 2760680, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py34_3.tar.bz2": { + "build": "np19py34_3", + "build_number": 3, + "date": "2015-06-19", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.9*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "987c13b9222c8391eac956acc9e2acb3", + "name": "h5py", + "requires": [], + "size": 2758698, + "version": "2.5.0" + }, + "h5py-2.5.0-np19py35_3.tar.bz2": { + "build": "np19py35_3", + "build_number": 3, + "date": "2015-09-10", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.9*", + "python 3.5*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "ed9ec8595fa26efbd1b96feebb591425", + "name": "h5py", + "requires": [], + "size": 2857871, + "version": "2.5.0" + }, + "h5py-2.6.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "cdd3ae689ce7f4635b59be3e1593aa40", + "name": "h5py", + "requires": [], + "size": 2505630, + "version": "2.6.0" + }, + "h5py-2.6.0-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numpy 1.10*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "b264e4e6032a33e22936e0a1b2a4137d", + "name": "h5py", + "requires": [], + "size": 2505433, + "version": "2.6.0" + }, + "h5py-2.6.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "16df892d90d6a30b97f4b15583b70d9c", + "name": "h5py", + "requires": [], + "size": 2904155, + "version": "2.6.0" + }, + "h5py-2.6.0-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numpy 1.10*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "525f36d5a57c6efa50f0d58a1095c4e6", + "name": "h5py", + "requires": [], + "size": 2904234, + "version": "2.6.0" + }, + "h5py-2.6.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.10*", + "python 3.5*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "9b2e915051b57587c71d6f4ddb0ea5f6", + "name": "h5py", + "requires": [], + "size": 2767895, + "version": "2.6.0" + }, + "h5py-2.6.0-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numpy 1.10*", + "python 3.5*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "fe1e1e0382cb3ecdaa6b0cc8a779c085", + "name": "h5py", + "requires": [], + "size": 2768694, + "version": "2.6.0" + }, + "h5py-2.6.0-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.11*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "6ba891b6acad86baeba46dcbda1daf30", + "name": "h5py", + "requires": [], + "size": 2504844, + "version": "2.6.0" + }, + "h5py-2.6.0-np111py27_1.tar.bz2": { + "build": "np111py27_1", + "build_number": 1, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numpy 1.11*", + "python 2.7*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "b5a5d73a9d0fc035ace56e1e8b3c05e9", + "name": "h5py", + "requires": [], + "size": 2505574, + "version": "2.6.0" + }, + "h5py-2.6.0-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.11*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "19ac3ca69681ff963bbcbbbbdbe11012", + "name": "h5py", + "requires": [], + "size": 2905095, + "version": "2.6.0" + }, + "h5py-2.6.0-np111py34_1.tar.bz2": { + "build": "np111py34_1", + "build_number": 1, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numpy 1.11*", + "python 3.4*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "9b3dcef0242515b70446371d55e26ffd", + "name": "h5py", + "requires": [], + "size": 2903699, + "version": "2.6.0" + }, + "h5py-2.6.0-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.15.1", + "numpy 1.11*", + "python 3.5*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "88d40241992cc7f6fa9eea264484d634", + "name": "h5py", + "requires": [], + "size": 2767478, + "version": "2.6.0" + }, + "h5py-2.6.0-np111py35_1.tar.bz2": { + "build": "np111py35_1", + "build_number": 1, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numpy 1.11*", + "python 3.5*", + "six" + ], + "license": "3-clause BSD (http://opensource.org/licenses/bsd-license.php)", + "license_family": "BSD", + "md5": "f129d12accceb71d16cc91ad7eccb563", + "name": "h5py", + "requires": [], + "size": 2768324, + "version": "2.6.0" + }, + "happiness-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ad62caff56a4ddc542c6f30b41fe0f17", + "name": "happiness", + "requires": [], + "size": 643, + "version": "1.0" + }, + "happiness-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b0a2472fb17ffce638f566adc2de0a6d", + "name": "happiness", + "requires": [], + "size": 649, + "version": "1.0" + }, + "happiness-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "64216befd8a931e81b13fb63f39c80ee", + "name": "happiness", + "requires": [], + "size": 641, + "version": "1.0" + }, + "harfbuzz-0.9.39-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "cairo", + "freetype", + "glib >=2.33" + ], + "license": "MIT", + "md5": "117a35db2e50d8fcabcedd1435259c1b", + "name": "harfbuzz", + "requires": [], + "size": 1150547, + "version": "0.9.39" + }, + "hdf4-4.2.11-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-14", + "depends": [ + "jpeg", + "zlib" + ], + "license": "BSD-style (http://www.hdfgroup.org/ftp/HDF/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "f20dd5b040a2ae7c5bee03a2c6fbb230", + "name": "hdf4", + "requires": [], + "size": 3441851, + "version": "4.2.11" + }, + "hdf5-1.8.13-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-09-10", + "depends": [], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "1cfaf1e7df4266caf825ef779e7dc65a", + "name": "hdf5", + "requires": [], + "size": 1865502, + "version": "1.8.13" + }, + "hdf5-1.8.13-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-10-15", + "depends": [ + "zlib 1.2*" + ], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "49c62e2ded538605f30eac27841f95fb", + "name": "hdf5", + "requires": [], + "size": 1866053, + "version": "1.8.13" + }, + "hdf5-1.8.14-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "zlib 1.2*" + ], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "8284f2e8606194c42a806910622f2a75", + "name": "hdf5", + "requires": [], + "size": 1869340, + "version": "1.8.14" + }, + "hdf5-1.8.15.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "zlib 1.2*" + ], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "2f5bd7097e53cdd3f70266bc8c49f8e4", + "name": "hdf5", + "requires": [], + "size": 1868539, + "version": "1.8.15.1" + }, + "hdf5-1.8.15.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-06-17", + "depends": [ + "zlib 1.2*" + ], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "3c732a1da30ea9ddca77fdaf0c965057", + "name": "hdf5", + "requires": [], + "size": 1868568, + "version": "1.8.15.1" + }, + "hdf5-1.8.15.1-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-10-14", + "depends": [ + "zlib" + ], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "e6e5b57a6c1eb3376f347893057f8247", + "name": "hdf5", + "requires": [], + "size": 1988110, + "version": "1.8.15.1" + }, + "hdf5-1.8.16-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "zlib 1.2*" + ], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "38a2b4ac38903f3f03898adccb83f9b5", + "name": "hdf5", + "requires": [], + "size": 2034089, + "version": "1.8.16" + }, + "hdf5-1.8.9-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "efa3448c385e90238ea9f8eff9a7a7fc", + "name": "hdf5", + "requires": [], + "size": 1780476, + "version": "1.8.9" + }, + "hdf5-1.8.9-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [], + "license": "BSD-like (http://www.hdfgroup.org/ftp/HDF5/current/src/unpacked/COPYING)", + "license_family": "BSD", + "md5": "870e8b48f9f11e018357b937898f9104", + "name": "hdf5", + "requires": [], + "size": 1799058, + "version": "1.8.9" + }, + "headers_workaround-0.17-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "19420ad855aa8549d8b77fe38fe3f6b7", + "name": "headers_workaround", + "requires": [], + "size": 46840, + "version": "0.17" + }, + "headers_workaround-0.17-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "961dce2d2f86284b69d8e0b0835f87b2", + "name": "headers_workaround", + "requires": [], + "size": 46811, + "version": "0.17" + }, + "headers_workaround-0.17-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "8407253a2bac5cceae17bcacc3781e21", + "name": "headers_workaround", + "requires": [], + "size": 46869, + "version": "0.17" + }, + "headers_workaround-0.17-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "743867cc1d91bb50b009be14964bfb01", + "name": "headers_workaround", + "requires": [], + "size": 46884, + "version": "0.17" + }, + "headers_workaround-0.17-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "242d6b7056431515c0838fa183601b62", + "name": "headers_workaround", + "requires": [], + "size": 46833, + "version": "0.17" + }, + "headers_workaround-0.18-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5ba4842a7316b37250d0b49861c24f27", + "name": "headers_workaround", + "requires": [], + "size": 46648, + "version": "0.18" + }, + "headers_workaround-0.18-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "097331f8021ea5a80d236ebb5b8ddadc", + "name": "headers_workaround", + "requires": [], + "size": 46702, + "version": "0.18" + }, + "headers_workaround-0.18-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "a9a9dc7a3a156c90722717f5c3f7cea9", + "name": "headers_workaround", + "requires": [], + "size": 46712, + "version": "0.18" + }, + "heapdict-1.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a1cf3c59bae8a2b575e61bcf3a4f1555", + "name": "heapdict", + "requires": [], + "size": 4107, + "version": "1.0.0" + }, + "heapdict-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2436318eaa70e6dae523ecd129a8bbf2", + "name": "heapdict", + "requires": [], + "size": 4071, + "version": "1.0.0" + }, + "heapdict-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "fd1ac6c32bae87306cab66e3edd3a9c3", + "name": "heapdict", + "requires": [], + "size": 4275, + "version": "1.0.0" + }, + "heapdict-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ea8c19c84f9f1e1d9c4620d9866c0d5e", + "name": "heapdict", + "requires": [], + "size": 4215, + "version": "1.0.0" + }, + "heapdict-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "cbbe84a9c4b139b9beaf7ad06361f095", + "name": "heapdict", + "requires": [], + "size": 3895, + "version": "1.0.0" + }, + "holoviews-1.3.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "c49437f9052ff97fe95cb72366a9865a", + "name": "holoviews", + "requires": [], + "size": 342731, + "version": "1.3.0" + }, + "holoviews-1.3.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 3.3*" + ], + "license": "BSD", + "md5": "4ea943ed55273217f13a6d030d7bc546", + "name": "holoviews", + "requires": [], + "size": 365535, + "version": "1.3.0" + }, + "holoviews-1.3.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "dd72ae068bc2ac4fd6cde23e31671b42", + "name": "holoviews", + "requires": [], + "size": 353306, + "version": "1.3.0" + }, + "holoviews-1.3.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "ec14c42dbb7c1b05e129da09787a747f", + "name": "holoviews", + "requires": [], + "size": 343264, + "version": "1.3.1" + }, + "holoviews-1.3.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 3.3*" + ], + "license": "BSD", + "md5": "6eeff38bc398185e80e5b648e51704c4", + "name": "holoviews", + "requires": [], + "size": 366531, + "version": "1.3.1" + }, + "holoviews-1.3.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "76cf1329a9c20572319f53ad59568eb3", + "name": "holoviews", + "requires": [], + "size": 354222, + "version": "1.3.1" + }, + "holoviews-1.3.2-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "param 1.3.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "89053df9fe8235d7f5d83d92aa150b2a", + "name": "holoviews", + "requires": [], + "size": 343715, + "version": "1.3.2" + }, + "holoviews-1.3.2-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "param 1.3.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "0f5b983733dbaa262bcc6741cd3a1c42", + "name": "holoviews", + "requires": [], + "size": 354611, + "version": "1.3.2" + }, + "holoviews-1.3.2-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "param 1.3.2", + "python 3.5*" + ], + "license": "BSD", + "md5": "1dd62f9f602e933e4cd7ab01786a7347", + "name": "holoviews", + "requires": [], + "size": 353434, + "version": "1.3.2" + }, + "holoviews-1.3.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "e231ba053dd80a5f8b32629aa84cdfef", + "name": "holoviews", + "requires": [], + "size": 343755, + "version": "1.3.2" + }, + "holoviews-1.3.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 3.3*" + ], + "license": "BSD", + "md5": "254a734cd4399174aede3ba1c3b64f6b", + "name": "holoviews", + "requires": [], + "size": 366692, + "version": "1.3.2" + }, + "holoviews-1.3.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "f3ca36cdaa8da80ac7344875c9bb0da4", + "name": "holoviews", + "requires": [], + "size": 354682, + "version": "1.3.2" + }, + "holoviews-1.3.2-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "param 1.3.2", + "python 3.5*" + ], + "license": "BSD", + "md5": "a0595b1c4f03fabaf1ab16b9137989fa", + "name": "holoviews", + "requires": [], + "size": 353467, + "version": "1.3.2" + }, + "holoviews-1.4.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-12", + "depends": [ + "numpy", + "param >=1.3.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "8d430c1c6d82a72d30277d4ac977e60b", + "name": "holoviews", + "requires": [], + "size": 470964, + "version": "1.4.3" + }, + "holoviews-1.4.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-12", + "depends": [ + "ipython", + "jinja2", + "matplotlib", + "nbconvert", + "nbformat", + "numpy", + "param >=1.3.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "a036d2ca438e2b5bf2a7c892c53e8703", + "name": "holoviews", + "requires": [], + "size": 489249, + "version": "1.4.3" + }, + "holoviews-1.4.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-12", + "depends": [ + "ipython", + "jinja2", + "matplotlib", + "nbconvert", + "nbformat", + "numpy", + "param >=1.3.2", + "python 3.5*" + ], + "license": "BSD", + "md5": "6c402d539d64c8fc60df35fa17a9a245", + "name": "holoviews", + "requires": [], + "size": 487823, + "version": "1.4.3" + }, + "html5lib-0.999-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "six" + ], + "license": "MIT", + "md5": "367163bce8a6be0e78a6101aae6e1ddf", + "name": "html5lib", + "requires": [], + "size": 176384, + "version": "0.999" + }, + "html5lib-0.999-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "six" + ], + "license": "MIT", + "md5": "b767b83e135188f1c70b7bc90247082c", + "name": "html5lib", + "requires": [], + "size": 176508, + "version": "0.999" + }, + "html5lib-0.999-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "six" + ], + "license": "MIT", + "md5": "81be182cf6112fd9a5bd005ac082c516", + "name": "html5lib", + "requires": [], + "size": 184732, + "version": "0.999" + }, + "html5lib-0.999-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "six" + ], + "license": "MIT", + "md5": "6520bc0f3992c16dc22f65c3fffb37d5", + "name": "html5lib", + "requires": [], + "size": 181486, + "version": "0.999" + }, + "html5lib-0.999-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "six" + ], + "license": "MIT", + "md5": "04677fe70ebd9aef486a5b794932db19", + "name": "html5lib", + "requires": [], + "size": 179161, + "version": "0.999" + }, + "httpretty-0.8.14-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "161478d0adb4e24162337e240a9ff308", + "name": "httpretty", + "requires": [], + "size": 31209, + "version": "0.8.14" + }, + "httpretty-0.8.14-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "17644d3af7d5affabc8a07773d0365ec", + "name": "httpretty", + "requires": [], + "size": 31708, + "version": "0.8.14" + }, + "httpretty-0.8.14-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "464f67627a52c1b046f3e8c3cb1573a9", + "name": "httpretty", + "requires": [], + "size": 31635, + "version": "0.8.14" + }, + "hyde-0.8.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "jinja2", + "markdown 2.3.1", + "pygments", + "python 2.7*", + "pyyaml" + ], + "license": "MIT", + "md5": "1875bb1c36463b005f5e0381e1584b47", + "name": "hyde", + "requires": [], + "size": 1545625, + "version": "0.8.4" + }, + "hyde-0.8.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "jinja2", + "markdown 2.3.1", + "pygments", + "python 2.7*", + "pyyaml" + ], + "license": "MIT", + "md5": "b943d8419dba63fde887583fe214eca5", + "name": "hyde", + "requires": [], + "size": 1428960, + "version": "0.8.5" + }, + "icu-54.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-05-20", + "depends": [], + "license": "MIT", + "md5": "c1d5cbeb7127a672211dd56b28603a8f", + "name": "icu", + "requires": [], + "size": 11807302, + "version": "54.1" + }, + "idna-2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "627e0bc1f8b9f0dcfe10f063db9594eb", + "name": "idna", + "requires": [], + "size": 124872, + "version": "2.0" + }, + "idna-2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "06110df6bb9c25722430aded829b72d5", + "name": "idna", + "requires": [], + "size": 125423, + "version": "2.0" + }, + "idna-2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "246d935d63a9ebb5fa6142d344f51b73", + "name": "idna", + "requires": [], + "size": 124984, + "version": "2.0" + }, + "idna-2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7d13a2092b2c9c738deb72f8bec2a246", + "name": "idna", + "requires": [], + "size": 124749, + "version": "2.0" + }, + "idna-2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "6183b8ddf2265705cde1ea8412f17b68", + "name": "idna", + "requires": [], + "size": 124199, + "version": "2.0" + }, + "idna-2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f936e2a7ff6b5dec2e7390d85e74b42d", + "name": "idna", + "requires": [], + "size": 113599, + "version": "2.1" + }, + "idna-2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "98a3be395945a7571fdfcbe423f43ef8", + "name": "idna", + "requires": [], + "size": 117798, + "version": "2.1" + }, + "idna-2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "46d478ee8e5d29e1b2c40c4d50d8e2a8", + "name": "idna", + "requires": [], + "size": 117916, + "version": "2.1" + }, + "imaging-1.1.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "python 2.6*", + "zlib 1.2*" + ], + "license_family": "Other", + "md5": "da61d3cbe83f4c9a44d4608cbaaba11b", + "name": "imaging", + "requires": [], + "size": 579482, + "version": "1.1.7" + }, + "imaging-1.1.7-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "python 2.6*", + "zlib 1.2*" + ], + "license_family": "Other", + "md5": "1b46e594bc4c52807935c38140e55d9e", + "name": "imaging", + "requires": [], + "size": 579723, + "version": "1.1.7" + }, + "imaging-1.1.7-py26_3.tar.bz2": { + "build": "py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "python 2.6*", + "zlib 1.2*" + ], + "license_family": "Other", + "md5": "29704bebcd25fd1e81ef49098570d759", + "name": "imaging", + "requires": [], + "size": 586943, + "version": "1.1.7" + }, + "imaging-1.1.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "python 2.7*", + "zlib 1.2*" + ], + "license_family": "Other", + "md5": "e9f4d58a3556b4e898aadc36a7861b63", + "name": "imaging", + "requires": [], + "size": 579878, + "version": "1.1.7" + }, + "imaging-1.1.7-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "python 2.7*", + "zlib 1.2*" + ], + "license_family": "Other", + "md5": "aaedc1db5afbfe88771d89c32fa45fc7", + "name": "imaging", + "requires": [], + "size": 579649, + "version": "1.1.7" + }, + "imaging-1.1.7-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "python 2.7*", + "zlib 1.2*" + ], + "license_family": "Other", + "md5": "2622b38922b0b8d16559a4ad55fd9822", + "name": "imaging", + "requires": [], + "size": 587894, + "version": "1.1.7" + }, + "iminuit-1.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-12", + "depends": [ + "python 2.7*" + ], + "license": "GNU General Public License (GPL) or MIT License", + "license_family": "GPL2", + "md5": "19255296b9b9212417fd2b1f23029a1a", + "name": "iminuit", + "requires": [], + "size": 1952780, + "version": "1.1.1" + }, + "into-0.1.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "928505fbfe0417062b8459ab02cf030e", + "name": "into", + "requires": [], + "size": 38099, + "version": "0.1.3" + }, + "into-0.1.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "c59ef7463d1fee2752492948183571ce", + "name": "into", + "requires": [], + "size": 37805, + "version": "0.1.3" + }, + "into-0.1.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "3805ed555dcac6f94f18bdee4ce03dea", + "name": "into", + "requires": [], + "size": 39049, + "version": "0.1.3" + }, + "into-0.1.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "d0d92b7b9785df5c9ac1b001c6d0ef31", + "name": "into", + "requires": [], + "size": 38861, + "version": "0.1.3" + }, + "into-0.1.4-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "14f8fca6880620f10dd21ae1c255158d", + "name": "into", + "requires": [], + "size": 99509, + "version": "0.1.4" + }, + "into-0.1.4-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "e47226fbbc26fee6b975a76236dd771c", + "name": "into", + "requires": [], + "size": 98895, + "version": "0.1.4" + }, + "into-0.1.4-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "fc1b07244cef8919b29d766456458d61", + "name": "into", + "requires": [], + "size": 101887, + "version": "0.1.4" + }, + "into-0.1.4-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-03", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "ce2b5673698d4ee762fc4135f024eeb5", + "name": "into", + "requires": [], + "size": 101513, + "version": "0.1.4" + }, + "into-0.2.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "806040985a83964f7174de378344021f", + "name": "into", + "requires": [], + "size": 123216, + "version": "0.2.1" + }, + "into-0.2.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "9f47b05e9b7248b6b586d482738bec71", + "name": "into", + "requires": [], + "size": 122352, + "version": "0.2.1" + }, + "into-0.2.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "abbb8470205ce034576ceabc9d613e8f", + "name": "into", + "requires": [], + "size": 125554, + "version": "0.2.1" + }, + "into-0.2.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "49eccddc423a826ab7e1c67b76e97e57", + "name": "into", + "requires": [], + "size": 124934, + "version": "0.2.1" + }, + "into-0.2.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "51ff3cb316f3ca63c7f3aac7a15a4947", + "name": "into", + "requires": [], + "size": 134417, + "version": "0.2.2" + }, + "into-0.2.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "8f966a1b240f430fe25677c6e93fefea", + "name": "into", + "requires": [], + "size": 133569, + "version": "0.2.2" + }, + "into-0.2.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "cb52e85b665ac1ed514ca4b4cba9c522", + "name": "into", + "requires": [], + "size": 137071, + "version": "0.2.2" + }, + "into-0.2.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "84b5ee5845e32d3477590fc3f5b2d59a", + "name": "into", + "requires": [], + "size": 136717, + "version": "0.2.2" + }, + "ipaddress-1.0.14-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "3945a88de4e4ba55a2f82ffa0d46a821", + "name": "ipaddress", + "requires": [], + "size": 27829, + "version": "1.0.14" + }, + "ipaddress-1.0.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "7f4809b498bcb3bd7c31fb9ed87a3eab", + "name": "ipaddress", + "requires": [], + "size": 25448, + "version": "1.0.7" + }, + "ipaddress-1.0.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "ba2c70d640d6bb546369c451502bbf54", + "name": "ipaddress", + "requires": [], + "size": 25550, + "version": "1.0.7" + }, + "ipykernel-4.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipython", + "jupyter_client", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "a23b1eee79bbb24c08e6debe8c525a56", + "name": "ipykernel", + "requires": [], + "size": 113332, + "version": "4.0.3" + }, + "ipykernel-4.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipython", + "jupyter_client", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "e71ce6a4c3d0cd424a8b13d5dbea87e6", + "name": "ipykernel", + "requires": [], + "size": 115972, + "version": "4.0.3" + }, + "ipykernel-4.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipython", + "jupyter_client", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "d6762adf02ea6f74b4a47a76e599b3a9", + "name": "ipykernel", + "requires": [], + "size": 115982, + "version": "4.0.3" + }, + "ipykernel-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "1351c6e507859e580312c71a96a6b00c", + "name": "ipykernel", + "requires": [], + "size": 114941, + "version": "4.1.0" + }, + "ipykernel-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "d7ee937b4b97dce39a7003b402930ed0", + "name": "ipykernel", + "requires": [], + "size": 118088, + "version": "4.1.0" + }, + "ipykernel-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "0a9b4f89c9ab714707154508b2d2b685", + "name": "ipykernel", + "requires": [], + "size": 117678, + "version": "4.1.0" + }, + "ipykernel-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "5db2e2f984971b9aa3fe994d0a1c2efd", + "name": "ipykernel", + "requires": [], + "size": 114941, + "version": "4.1.1" + }, + "ipykernel-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "335bd65e4a2d43fa10eda170acdb7dfe", + "name": "ipykernel", + "requires": [], + "size": 117829, + "version": "4.1.1" + }, + "ipykernel-4.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "cd5cb75328b1205dce56bbcaefb052d5", + "name": "ipykernel", + "requires": [], + "size": 117847, + "version": "4.1.1" + }, + "ipykernel-4.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "30f1b1503f3924f4384ac1b5da405762", + "name": "ipykernel", + "requires": [], + "size": 115241, + "version": "4.2.2" + }, + "ipykernel-4.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "6c8392eb4880e7f9ca484440dd3c1254", + "name": "ipykernel", + "requires": [], + "size": 118488, + "version": "4.2.2" + }, + "ipykernel-4.2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "4346d4734cab55c994b0fdfc1dddf1a4", + "name": "ipykernel", + "requires": [], + "size": 118047, + "version": "4.2.2" + }, + "ipykernel-4.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 2.7*", + "tornado >=4.0", + "traitlets" + ], + "license": "BSD", + "md5": "3e72b77c4acdc8b992ef21f0c3e58114", + "name": "ipykernel", + "requires": [], + "size": 119513, + "version": "4.3.1" + }, + "ipykernel-4.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 3.4*", + "tornado >=4.0", + "traitlets" + ], + "license": "BSD", + "md5": "92a2d26def1f798fab949747b4b0f8d8", + "name": "ipykernel", + "requires": [], + "size": 122709, + "version": "4.3.1" + }, + "ipykernel-4.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "ipython >=4.0", + "jupyter_client", + "python 3.5*", + "tornado >=4.0", + "traitlets" + ], + "license": "BSD", + "md5": "b56ba581c6a8d48991b0b3069441e8d1", + "name": "ipykernel", + "requires": [], + "size": 122529, + "version": "4.3.1" + }, + "ipyparallel-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "2b2c51d1a4f2faf8186717357e1ee677", + "name": "ipyparallel", + "requires": [], + "size": 238338, + "version": "4.0.0" + }, + "ipyparallel-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "95632a864a469bc083904a4af6db993b", + "name": "ipyparallel", + "requires": [], + "size": 246864, + "version": "4.0.0" + }, + "ipyparallel-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-19", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "3bc8c51dbb7a56ac032ce2b89dbc3d99", + "name": "ipyparallel", + "requires": [], + "size": 238389, + "version": "4.0.1" + }, + "ipyparallel-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-19", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "6bf4be5dde00d78ea3f761ef40e1b2a3", + "name": "ipyparallel", + "requires": [], + "size": 247205, + "version": "4.0.1" + }, + "ipyparallel-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-20", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "d235151c1bde923ec3e57986bb50fc15", + "name": "ipyparallel", + "requires": [], + "size": 238287, + "version": "4.0.2" + }, + "ipyparallel-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-20", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "16e451c533d1df83ccc64a80743a12f7", + "name": "ipyparallel", + "requires": [], + "size": 247358, + "version": "4.0.2" + }, + "ipyparallel-4.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 3.5*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "144d0f668ed018079e001a90ea9dc197", + "name": "ipyparallel", + "requires": [], + "size": 246497, + "version": "4.0.2" + }, + "ipyparallel-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 2.7*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "md5": "71f062771ac771b247029f6c38078f9b", + "name": "ipyparallel", + "requires": [], + "size": 239152, + "version": "4.1.0" + }, + "ipyparallel-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 3.4*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "md5": "bfaf7ea992c272a64ff5cf83efef925f", + "name": "ipyparallel", + "requires": [], + "size": 248049, + "version": "4.1.0" + }, + "ipyparallel-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "decorator", + "ipykernel", + "ipython", + "ipython_genutils 0.1.0", + "jupyter_client", + "python 3.5*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "md5": "7b1493ebd587bf2ffe670edc89f5f909", + "name": "ipyparallel", + "requires": [], + "size": 247449, + "version": "4.1.0" + }, + "ipyparallel-5.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "decorator", + "futures", + "ipykernel", + "ipython >=4.0", + "ipython_genutils", + "jupyter_client", + "python 2.7*", + "pyzmq >=13.0", + "tornado >=4.0" + ], + "license": "BSD", + "md5": "17bcbee0fa0f1ec167869f4534769e43", + "name": "ipyparallel", + "requires": [], + "size": 258903, + "version": "5.0.1" + }, + "ipyparallel-5.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "decorator", + "ipykernel", + "ipython >=4.0", + "ipython_genutils", + "jupyter_client", + "python 3.4*", + "pyzmq >=13.0", + "tornado >=4.0" + ], + "license": "BSD", + "md5": "e8f69062b74a42699693cfc9f6ddb018", + "name": "ipyparallel", + "requires": [], + "size": 266471, + "version": "5.0.1" + }, + "ipyparallel-5.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "decorator", + "ipykernel", + "ipython >=4.0", + "ipython_genutils", + "jupyter_client", + "python 3.5*", + "pyzmq >=13.0", + "tornado >=4.0" + ], + "license": "BSD", + "md5": "4bf37f7ca528b601e51567394ebdb3fa", + "name": "ipyparallel", + "requires": [], + "size": 265905, + "version": "5.0.1" + }, + "ipython-0.13-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "aa7bcbda55d6c7eeff6818be774c605d", + "name": "ipython", + "requires": [], + "size": 1612950, + "version": "0.13" + }, + "ipython-0.13-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c48f01ca220e39236d911aa8351f5429", + "name": "ipython", + "requires": [], + "size": 1611588, + "version": "0.13" + }, + "ipython-0.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3548b13f0ddd13f2ff2c667c15323124", + "name": "ipython", + "requires": [], + "size": 1611134, + "version": "0.13" + }, + "ipython-0.13-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "305df14c5adcc02e85c9701d644a1867", + "name": "ipython", + "requires": [], + "size": 1609440, + "version": "0.13" + }, + "ipython-0.13-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "70d6b3e2be20b854e6ff27b23219e6de", + "name": "ipython", + "requires": [], + "size": 1485249, + "version": "0.13" + }, + "ipython-0.13.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "308fd3ec3d1ad8708963add66fd20019", + "name": "ipython", + "requires": [], + "size": 1611741, + "version": "0.13.1" + }, + "ipython-0.13.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2bc8b733ffc289ee942ccbf435b6d901", + "name": "ipython", + "requires": [], + "size": 1609965, + "version": "0.13.1" + }, + "ipython-0.13.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a852dcff6737677f760096ed88c2953b", + "name": "ipython", + "requires": [], + "size": 2277758, + "version": "0.13.1" + }, + "ipython-0.13.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "412c66b7764476f60bceb127f172ff4b", + "name": "ipython", + "requires": [], + "size": 1613586, + "version": "0.13.2" + }, + "ipython-0.13.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "a5b959b5df9e480857f3207075d8f4ff", + "name": "ipython", + "requires": [], + "size": 1610300, + "version": "0.13.2" + }, + "ipython-0.13.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a2dc77e30a6615b9479fdfa24e0e230c", + "name": "ipython", + "requires": [], + "size": 1719352, + "version": "0.13.2" + }, + "ipython-1.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "212940ab504ad91847c0925536d27f0c", + "name": "ipython", + "requires": [], + "size": 2909368, + "version": "1.0.0" + }, + "ipython-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8d626d35b3be21efa405335d2b7847e8", + "name": "ipython", + "requires": [], + "size": 2905045, + "version": "1.0.0" + }, + "ipython-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "9afbf2fe2935161185cc86dd7994822c", + "name": "ipython", + "requires": [], + "size": 3058422, + "version": "1.0.0" + }, + "ipython-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "e0afa42500a1248d85b666fd25ff750a", + "name": "ipython", + "requires": [], + "size": 2929804, + "version": "1.1.0" + }, + "ipython-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "849f259afa71868edff134f0f7b32314", + "name": "ipython", + "requires": [], + "size": 2921879, + "version": "1.1.0" + }, + "ipython-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "8cfae0f7b69de7072715ed388c9d4e71", + "name": "ipython", + "requires": [], + "size": 3069358, + "version": "1.1.0" + }, + "ipython-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "97414f3ba486375e5ac691af72a6548c", + "name": "ipython", + "requires": [], + "size": 2935402, + "version": "1.2.1" + }, + "ipython-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4b09214955130462d9555076d9e1ba30", + "name": "ipython", + "requires": [], + "size": 2936557, + "version": "1.2.1" + }, + "ipython-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "5c59464e423b750486b10b0e7ad4bc53", + "name": "ipython", + "requires": [], + "size": 3071728, + "version": "1.2.1" + }, + "ipython-2.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4211d2e4c0751966c462d492e1a12ad1", + "name": "ipython", + "requires": [], + "size": 2911872, + "version": "2.0.0" + }, + "ipython-2.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e5ce973760f745fbcb5231d670fdab01", + "name": "ipython", + "requires": [], + "size": 3051273, + "version": "2.0.0" + }, + "ipython-2.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "36a584f4726f69784c274da2c1a09c6a", + "name": "ipython", + "requires": [], + "size": 3001105, + "version": "2.0.0" + }, + "ipython-2.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0380a6536bd9a575cd9c043379aa0e42", + "name": "ipython", + "requires": [], + "size": 2921671, + "version": "2.1.0" + }, + "ipython-2.1.0-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f5bc5a5d35000e29c88c03e5bb36dc9d", + "name": "ipython", + "requires": [], + "size": 2921541, + "version": "2.1.0" + }, + "ipython-2.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "1c921f476afa25ded23a3346db2557c2", + "name": "ipython", + "requires": [], + "size": 3054003, + "version": "2.1.0" + }, + "ipython-2.1.0-py33_2.tar.bz2": { + "build": "py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "9ee015ea266a617284f8f4e9d488852f", + "name": "ipython", + "requires": [], + "size": 3055197, + "version": "2.1.0" + }, + "ipython-2.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "740f7acea4f15bf2baf70da351f36d6d", + "name": "ipython", + "requires": [], + "size": 3008900, + "version": "2.1.0" + }, + "ipython-2.1.0-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "557ce4d3e0cade767a93c597737153f2", + "name": "ipython", + "requires": [], + "size": 3008519, + "version": "2.1.0" + }, + "ipython-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "97ae5f1d6617dd63b522be789f361d34", + "name": "ipython", + "requires": [], + "size": 2925123, + "version": "2.2.0" + }, + "ipython-2.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3b70a3fbd4a49c0677bd6e755a245536", + "name": "ipython", + "requires": [], + "size": 3051629, + "version": "2.2.0" + }, + "ipython-2.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "db6628076e0091e3d20ff2ce02f25366", + "name": "ipython", + "requires": [], + "size": 3010295, + "version": "2.2.0" + }, + "ipython-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-02", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "00750c3ced3ac6bb9a50fbd22f05ed09", + "name": "ipython", + "requires": [], + "size": 2928325, + "version": "2.3.0" + }, + "ipython-2.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-02", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a770a25a6e00ff36c26deaffcf58faf1", + "name": "ipython", + "requires": [], + "size": 3054006, + "version": "2.3.0" + }, + "ipython-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-02", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "42db7a39c8090bbffc239fe675e4c92c", + "name": "ipython", + "requires": [], + "size": 3012221, + "version": "2.3.0" + }, + "ipython-2.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-12", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "abe6db53291497bab19e85db2661a4f6", + "name": "ipython", + "requires": [], + "size": 2928623, + "version": "2.3.1" + }, + "ipython-2.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-12", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "b640848b0eeff520b55d6ccead340c05", + "name": "ipython", + "requires": [], + "size": 3054139, + "version": "2.3.1" + }, + "ipython-2.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-12", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "684cc3bb99d54ed4f4d129ba1a46c392", + "name": "ipython", + "requires": [], + "size": 3012312, + "version": "2.3.1" + }, + "ipython-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bd4171809ddd7a03b933356f840c5887", + "name": "ipython", + "requires": [], + "size": 2945336, + "version": "2.4.1" + }, + "ipython-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "16c765f52abf34b52152145d3ca61338", + "name": "ipython", + "requires": [], + "size": 3075842, + "version": "2.4.1" + }, + "ipython-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "636571e5082b91c05f679f1cac0268f3", + "name": "ipython", + "requires": [], + "size": 3029200, + "version": "2.4.1" + }, + "ipython-3.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "70334eb7d3dd53adf1ad79ef2343abe9", + "name": "ipython", + "requires": [], + "size": 3511765, + "version": "3.0.0" + }, + "ipython-3.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e8428ba6950cd95f6d8ef3d010f143ba", + "name": "ipython", + "requires": [], + "size": 3628679, + "version": "3.0.0" + }, + "ipython-3.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "55db72aec9da07ebf84ea9797c0a590f", + "name": "ipython", + "requires": [], + "size": 3585551, + "version": "3.0.0" + }, + "ipython-3.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "668c37f036bcdffe3dab890b5ca4d861", + "name": "ipython", + "requires": [], + "size": 3533759, + "version": "3.1.0" + }, + "ipython-3.1.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-06-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "c318d3f3d28fea8c5b6a0ba52beb6376", + "name": "ipython", + "requires": [], + "size": 3533383, + "version": "3.1.0" + }, + "ipython-3.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "b7eb9e5e47de60675e2ca7bbf0fdf30c", + "name": "ipython", + "requires": [], + "size": 3646664, + "version": "3.1.0" + }, + "ipython-3.1.0-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-06-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d327179422618bb797e74bd17f6d8446", + "name": "ipython", + "requires": [], + "size": 3647295, + "version": "3.1.0" + }, + "ipython-3.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b364af162d0a261484470c1ef88b7c62", + "name": "ipython", + "requires": [], + "size": 3607540, + "version": "3.1.0" + }, + "ipython-3.1.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-06-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8da913314df6d1210192c71e94937633", + "name": "ipython", + "requires": [], + "size": 3606252, + "version": "3.1.0" + }, + "ipython-3.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f539671b25a5c5d18f277770221b069c", + "name": "ipython", + "requires": [], + "size": 3539369, + "version": "3.2.0" + }, + "ipython-3.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d81404cf8dec098f9399218f52139748", + "name": "ipython", + "requires": [], + "size": 3650257, + "version": "3.2.0" + }, + "ipython-3.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a4ac0403ebaa0865aabd2da78cabfac6", + "name": "ipython", + "requires": [], + "size": 3608783, + "version": "3.2.0" + }, + "ipython-3.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4cb74f02753dec72e5e9e1539a896dbe", + "name": "ipython", + "requires": [], + "size": 3539157, + "version": "3.2.1" + }, + "ipython-3.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a402ef823f14e547b9fa8fef4fe8d953", + "name": "ipython", + "requires": [], + "size": 3650170, + "version": "3.2.1" + }, + "ipython-3.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e731208562ee5db1dff190a51860673d", + "name": "ipython", + "requires": [], + "size": 3610270, + "version": "3.2.1" + }, + "ipython-3.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "c9d401e6556fd71c5e2db88e7579f926", + "name": "ipython", + "requires": [], + "size": 3539781, + "version": "3.2.3" + }, + "ipython-3.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1c0f8e0b1c4200a505e93eaf4aee3969", + "name": "ipython", + "requires": [], + "size": 3611367, + "version": "3.2.3" + }, + "ipython-3.2.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "63e20cd59c3e2b26501624412f231c69", + "name": "ipython", + "requires": [], + "size": 3604368, + "version": "3.2.3" + }, + "ipython-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 2.7*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "a70a04aa12f8aca723570dd31079b2d4", + "name": "ipython", + "requires": [], + "size": 937296, + "version": "4.0.0" + }, + "ipython-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.4*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "35bad6e58fdf22098558348392f5e0cf", + "name": "ipython", + "requires": [], + "size": 995585, + "version": "4.0.0" + }, + "ipython-4.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.5*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "fef8297e7a8d9cbccde29123146af2f8", + "name": "ipython", + "requires": [], + "size": 992624, + "version": "4.0.0" + }, + "ipython-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-07", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 2.7*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "a36e83abbd8e970aaea983ad1d1223f1", + "name": "ipython", + "requires": [], + "size": 938674, + "version": "4.0.1" + }, + "ipython-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-07", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.4*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "12b081dbfe0dfa9f5876d3205908607a", + "name": "ipython", + "requires": [], + "size": 997435, + "version": "4.0.1" + }, + "ipython-4.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-07", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.5*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "72904df6fec0373030d58012247df9ea", + "name": "ipython", + "requires": [], + "size": 994966, + "version": "4.0.1" + }, + "ipython-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 2.7*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "d481c22a4e39cbeda5908fa9798a70cf", + "name": "ipython", + "requires": [], + "size": 938739, + "version": "4.0.2" + }, + "ipython-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.4*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "980e3db8d7fc36edf40a2d2511170c95", + "name": "ipython", + "requires": [], + "size": 996577, + "version": "4.0.2" + }, + "ipython-4.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.5*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "9c05130700b2c637619fbdf28af57e7b", + "name": "ipython", + "requires": [], + "size": 993550, + "version": "4.0.2" + }, + "ipython-4.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-19", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 2.7*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "a12f80fab866cb3f9b89943a41f3a685", + "name": "ipython", + "requires": [], + "size": 939069, + "version": "4.0.3" + }, + "ipython-4.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-19", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.4*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "6f34046ea00035323f3998b212307bd4", + "name": "ipython", + "requires": [], + "size": 997816, + "version": "4.0.3" + }, + "ipython-4.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-19", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.5*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "e238279c2a15e19695b2ed802c36a12a", + "name": "ipython", + "requires": [], + "size": 993675, + "version": "4.0.3" + }, + "ipython-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 2.7*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "b84ea4d553f60ddc373bc37ae6b2cccd", + "name": "ipython", + "requires": [], + "size": 949434, + "version": "4.1.1" + }, + "ipython-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.4*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "b0de03a7b34e1b15fbc1049d55376e75", + "name": "ipython", + "requires": [], + "size": 1010595, + "version": "4.1.1" + }, + "ipython-4.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.5*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "b430793adef2b3c52b56a7f2f4c87609", + "name": "ipython", + "requires": [], + "size": 1006911, + "version": "4.1.1" + }, + "ipython-4.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 2.7*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "bc21a902cfc838d25f02c9861e07e010", + "name": "ipython", + "requires": [], + "size": 950200, + "version": "4.1.2" + }, + "ipython-4.1.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "decorator", + "pexpect", + "pickleshare", + "python 2.7*", + "simplegeneric >0.8", + "traitlets" + ], + "license": "BSD", + "md5": "0251cce1cc79c38713668767583b8b05", + "name": "ipython", + "requires": [], + "size": 952768, + "version": "4.1.2" + }, + "ipython-4.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.4*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "0e7f42130d69fb26c5f073beeaddcb47", + "name": "ipython", + "requires": [], + "size": 1012108, + "version": "4.1.2" + }, + "ipython-4.1.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "decorator", + "pexpect", + "pickleshare", + "python 3.4*", + "simplegeneric >0.8", + "traitlets" + ], + "license": "BSD", + "md5": "bc5fb5608123e2dcc3cdfe2de9d83e00", + "name": "ipython", + "requires": [], + "size": 1014074, + "version": "4.1.2" + }, + "ipython-4.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "decorator", + "pexpect 3.3", + "pickleshare", + "python 3.5*", + "simplegeneric", + "traitlets" + ], + "license": "BSD", + "md5": "af5e925999ca4014434347ba5e8c6e3b", + "name": "ipython", + "requires": [], + "size": 1008747, + "version": "4.1.2" + }, + "ipython-4.1.2-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "decorator", + "pexpect", + "pickleshare", + "python 3.5*", + "simplegeneric >0.8", + "traitlets" + ], + "license": "BSD", + "md5": "7298ba992afdc78a800ddb94b4f304b5", + "name": "ipython", + "requires": [], + "size": 1011882, + "version": "4.1.2" + }, + "ipython-notebook-0.13.2-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 0.13.2", + "python 2.7*", + "pyzmq 2.2.0.1", + "tornado" + ], + "license_family": "BSD", + "md5": "acf90b87950ab94d809d202a03ddaa26", + "name": "ipython-notebook", + "requires": [], + "size": 707, + "version": "0.13.2" + }, + "ipython-notebook-1.0.0-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 1.0.0", + "python 2.7*", + "pyzmq 2.2.0.1", + "tornado" + ], + "license_family": "BSD", + "md5": "651cdc334ecf619bfebb823d1696cb58", + "name": "ipython-notebook", + "requires": [], + "size": 708, + "version": "1.0.0" + }, + "ipython-notebook-1.1.0-py26_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 1.1.0", + "jinja2", + "python 2.6*", + "pyzmq 2.2.0.1", + "tornado" + ], + "license_family": "BSD", + "md5": "83bce54bae87df9f54fc3820975cecec", + "name": "ipython-notebook", + "requires": [], + "size": 687, + "version": "1.1.0" + }, + "ipython-notebook-1.1.0-py26_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "ipython 1.1.0", + "jinja2", + "python 2.6*", + "pyzmq 2.2.0.1", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "17a43bb6b203a1c426fc414409eb9612", + "name": "ipython-notebook", + "requires": [], + "size": 1144, + "version": "1.1.0" + }, + "ipython-notebook-1.1.0-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 1.1.0", + "jinja2", + "python 2.7*", + "pyzmq 2.2.0.1", + "tornado" + ], + "license_family": "BSD", + "md5": "380177f8f4d92e4a8677ade304ea263d", + "name": "ipython-notebook", + "requires": [], + "size": 731, + "version": "1.1.0" + }, + "ipython-notebook-1.1.0-py27_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "ipython 1.1.0", + "jinja2", + "python 2.7*", + "pyzmq 2.2.0.1", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "96a96308617de312b56759aca169c3d3", + "name": "ipython-notebook", + "requires": [], + "size": 1192, + "version": "1.1.0" + }, + "ipython-notebook-1.1.0-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 1.1.0", + "jinja2", + "python 3.3*", + "pyzmq 2.2.0.1", + "tornado" + ], + "license_family": "BSD", + "md5": "ae002319f96e2575047f055c7ba1741f", + "name": "ipython-notebook", + "requires": [], + "size": 684, + "version": "1.1.0" + }, + "ipython-notebook-1.1.0-py33_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "ipython 1.1.0", + "jinja2", + "python 3.3*", + "pyzmq 2.2.0.1", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "0d4c74b9dcb607fd275eebd80fe701f5", + "name": "ipython-notebook", + "requires": [], + "size": 1139, + "version": "1.1.0" + }, + "ipython-notebook-2.0.0-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.0.0", + "jinja2", + "python 2.7*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9a5b3de9bc899f98278ee12a1344531d", + "name": "ipython-notebook", + "requires": [], + "size": 5102, + "version": "2.0.0" + }, + "ipython-notebook-2.0.0-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.0.0", + "jinja2", + "python 3.3*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "cd43921535b4c407c782f680b1f63406", + "name": "ipython-notebook", + "requires": [], + "size": 5039, + "version": "2.0.0" + }, + "ipython-notebook-2.0.0-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.0.0", + "jinja2", + "python 3.4*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "940a600739f6b5c2a333c73fb3013ea1", + "name": "ipython-notebook", + "requires": [], + "size": 5072, + "version": "2.0.0" + }, + "ipython-notebook-2.1.0-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.1.0", + "jinja2", + "python 2.7*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c7b74c3114dc77f5d26d2a094305002a", + "name": "ipython-notebook", + "requires": [], + "size": 5102, + "version": "2.1.0" + }, + "ipython-notebook-2.1.0-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.1.0", + "jinja2", + "python 3.3*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "f903960aef4f7077ee3cf646e268802f", + "name": "ipython-notebook", + "requires": [], + "size": 5124, + "version": "2.1.0" + }, + "ipython-notebook-2.1.0-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.1.0", + "jinja2", + "python 3.4*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "72218b22499ad3074177c0650283532e", + "name": "ipython-notebook", + "requires": [], + "size": 5098, + "version": "2.1.0" + }, + "ipython-notebook-2.2.0-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "ipython 2.2.0", + "jinja2", + "python 2.7*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "7c2e800b3c8ad67f6803fb8486681d7e", + "name": "ipython-notebook", + "requires": [], + "size": 5111, + "version": "2.2.0" + }, + "ipython-notebook-2.2.0-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "ipython 2.2.0", + "jinja2", + "python 3.3*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9ed6540c4ad57d0286fc1729d2a7cb05", + "name": "ipython-notebook", + "requires": [], + "size": 5084, + "version": "2.2.0" + }, + "ipython-notebook-2.2.0-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "ipython 2.2.0", + "jinja2", + "python 3.4*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "2032a1f5731eaa72e9fd4ee5873ab90c", + "name": "ipython-notebook", + "requires": [], + "size": 5106, + "version": "2.2.0" + }, + "ipython-notebook-2.3.0-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "ipython 2.3.0", + "jinja2", + "python 2.7*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "2ac4c8d3a9ab9b45d75bb455f3043432", + "name": "ipython-notebook", + "requires": [], + "size": 5102, + "version": "2.3.0" + }, + "ipython-notebook-2.3.0-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "ipython 2.3.0", + "jinja2", + "python 3.3*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d8dc66a1a592bfc654c3f5d17f3cfa97", + "name": "ipython-notebook", + "requires": [], + "size": 5089, + "version": "2.3.0" + }, + "ipython-notebook-2.3.0-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "ipython 2.3.0", + "jinja2", + "python 3.4*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "358f7702d29e47474174bfc0c212d13e", + "name": "ipython-notebook", + "requires": [], + "size": 5087, + "version": "2.3.0" + }, + "ipython-notebook-2.3.1-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2014-11-13", + "depends": [ + "ipython 2.3.1", + "jinja2", + "python 2.7*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9beaa9107567479f88fc7ad612e57885", + "name": "ipython-notebook", + "requires": [], + "size": 5104, + "version": "2.3.1" + }, + "ipython-notebook-2.3.1-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2014-11-13", + "depends": [ + "ipython 2.3.1", + "jinja2", + "python 3.3*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "5b19b9d63216fba91440b27063e7e5ff", + "name": "ipython-notebook", + "requires": [], + "size": 5088, + "version": "2.3.1" + }, + "ipython-notebook-2.3.1-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2014-11-13", + "depends": [ + "ipython 2.3.1", + "jinja2", + "python 3.4*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "3dd40deb2b765ec455f9a99ef927cb04", + "name": "ipython-notebook", + "requires": [], + "size": 5119, + "version": "2.3.1" + }, + "ipython-notebook-2.4.1-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "ipython 2.4.1", + "jinja2", + "python 2.7*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "51a9b5bd5b1bd4c9f46e7fd057074f09", + "name": "ipython-notebook", + "requires": [], + "size": 5069, + "version": "2.4.1" + }, + "ipython-notebook-2.4.1-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "ipython 2.4.1", + "jinja2", + "python 3.3*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "1f081ee55547943a04e6cef5bcefd523", + "name": "ipython-notebook", + "requires": [], + "size": 5068, + "version": "2.4.1" + }, + "ipython-notebook-2.4.1-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "ipython 2.4.1", + "jinja2", + "python 3.4*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "d76606dfcd554ecd240c7c16a1df7393", + "name": "ipython-notebook", + "requires": [], + "size": 5084, + "version": "2.4.1" + }, + "ipython-notebook-3.0.0-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "ipython 3.0.0", + "jinja2", + "jsonschema 2.4.0", + "python 2.7*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "2009fd5f830a292f1524e6194d2fca03", + "name": "ipython-notebook", + "requires": [], + "size": 5094, + "version": "3.0.0" + }, + "ipython-notebook-3.0.0-py27_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_1", + "build_number": 1, + "date": "2015-03-03", + "depends": [ + "ipython 3.0.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 2.7*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "02312fac1fb3ccb2640621e70d8a0632", + "name": "ipython-notebook", + "requires": [], + "size": 5185, + "version": "3.0.0" + }, + "ipython-notebook-3.0.0-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "ipython 3.0.0", + "jinja2", + "jsonschema 2.4.0", + "python 3.3*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "ba9cefb5287ac50463e8c2827163aa34", + "name": "ipython-notebook", + "requires": [], + "size": 5104, + "version": "3.0.0" + }, + "ipython-notebook-3.0.0-py33_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_1", + "build_number": 1, + "date": "2015-03-03", + "depends": [ + "ipython 3.0.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 3.3*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b17ab9a970ac6c2bb91eb650f02872a1", + "name": "ipython-notebook", + "requires": [], + "size": 5168, + "version": "3.0.0" + }, + "ipython-notebook-3.0.0-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "ipython 3.0.0", + "jinja2", + "jsonschema 2.4.0", + "python 3.4*", + "pyzmq 14.*", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "bdb4eac10cf3ce6d79124af09b304c10", + "name": "ipython-notebook", + "requires": [], + "size": 5117, + "version": "3.0.0" + }, + "ipython-notebook-3.0.0-py34_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_1", + "build_number": 1, + "date": "2015-03-03", + "depends": [ + "ipython 3.0.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 3.4*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "746ff33470cf723a8265a14bea4d6f76", + "name": "ipython-notebook", + "requires": [], + "size": 5165, + "version": "3.0.0" + }, + "ipython-notebook-3.1.0-py27_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_1", + "build_number": 1, + "date": "2015-04-03", + "depends": [ + "ipython 3.1.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 2.7*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "0991f77fad48cff3cff8a7031a1ef79a", + "name": "ipython-notebook", + "requires": [], + "size": 5181, + "version": "3.1.0" + }, + "ipython-notebook-3.1.0-py33_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_1", + "build_number": 1, + "date": "2015-04-03", + "depends": [ + "ipython 3.1.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 3.3*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "0f91d626a0c65816cf32703e6493366d", + "name": "ipython-notebook", + "requires": [], + "size": 5158, + "version": "3.1.0" + }, + "ipython-notebook-3.1.0-py34_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_1", + "build_number": 1, + "date": "2015-04-03", + "depends": [ + "ipython 3.1.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 3.4*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "788abd6d212255bdbec0a3eba4802730", + "name": "ipython-notebook", + "requires": [], + "size": 5164, + "version": "3.1.0" + }, + "ipython-notebook-3.2.0-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "ipython 3.2.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 2.7*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "dd1a0d8edef4a3f58d1e0e0e8c244cd4", + "name": "ipython-notebook", + "requires": [], + "size": 4803, + "version": "3.2.0" + }, + "ipython-notebook-3.2.0-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "ipython 3.2.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 3.3*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "21151a26fb9be7235a004790e90980fe", + "name": "ipython-notebook", + "requires": [], + "size": 4787, + "version": "3.2.0" + }, + "ipython-notebook-3.2.0-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "ipython 3.2.0", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 3.4*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b449edae1b1f01df54c94a8cd375e95a", + "name": "ipython-notebook", + "requires": [], + "size": 4792, + "version": "3.2.0" + }, + "ipython-notebook-3.2.1-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "ipython 3.2.1", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 2.7*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "ca5dedea57d9c157427f2b40e46d9084", + "name": "ipython-notebook", + "requires": [], + "size": 4801, + "version": "3.2.1" + }, + "ipython-notebook-3.2.1-py33_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "ipython 3.2.1", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 3.3*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "5b5ed5466c886abc1fbb28ae21dc5084", + "name": "ipython-notebook", + "requires": [], + "size": 4797, + "version": "3.2.1" + }, + "ipython-notebook-3.2.1-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "ipython 3.2.1", + "jinja2", + "jsonschema 2.4.0", + "mistune", + "pygments", + "python 3.4*", + "pyzmq 14.*", + "terminado 0.5", + "tornado" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "4e7ec39e772e4f5a08c22f70371b901b", + "name": "ipython-notebook", + "requires": [], + "size": 4803, + "version": "3.2.1" + }, + "ipython-notebook-4.0.4-py27_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py27_0", + "build_number": 0, + "date": "2015-08-28", + "depends": [ + "notebook", + "python 2.7*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9d688ba794a138de60f0919a253fd734", + "name": "ipython-notebook", + "requires": [], + "size": 4837, + "version": "4.0.4" + }, + "ipython-notebook-4.0.4-py34_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py34_0", + "build_number": 0, + "date": "2015-08-28", + "depends": [ + "notebook", + "python 3.4*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b786e66568144dfae7209ba688cfca40", + "name": "ipython-notebook", + "requires": [], + "size": 4840, + "version": "4.0.4" + }, + "ipython-notebook-4.0.4-py35_0.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": 8080, + "name": "port", + "summary": "Server port ..." + } + ], + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "notebook", + "python 3.5*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "03f66505e6b70dfb92ce56fbd7220777", + "name": "ipython-notebook", + "requires": [], + "size": 4833, + "version": "4.0.4" + }, + "ipython-qtconsole-0.13.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 0.13.2", + "pyside 1.1.2", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license_family": "BSD", + "md5": "d7b1197b566b35d7d943991a5a9ecf44", + "name": "ipython-qtconsole", + "requires": [], + "size": 668, + "version": "0.13.2" + }, + "ipython-qtconsole-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 1.0.0", + "pyside 1.2.1", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license_family": "BSD", + "md5": "cf295b4b29995b40e5e5e0e3495cd091", + "name": "ipython-qtconsole", + "requires": [], + "size": 661, + "version": "1.0.0" + }, + "ipython-qtconsole-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 1.1.0", + "pyside 1.2.1", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license_family": "BSD", + "md5": "8a561992c85579542ecdeb90987118ea", + "name": "ipython-qtconsole", + "requires": [], + "size": 614, + "version": "1.1.0" + }, + "ipython-qtconsole-1.1.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "ipython 1.1.0", + "pygments", + "pyside 1.2.1", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "1f8bf4699fcd35a1aea7d4684e04add4", + "name": "ipython-qtconsole", + "requires": [], + "size": 1067, + "version": "1.1.0" + }, + "ipython-qtconsole-2.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.1.0", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "73c60e1aea776c8fb08ebade2501d5a9", + "name": "ipython-qtconsole", + "requires": [], + "size": 4268, + "version": "2.1.0" + }, + "ipython-qtconsole-2.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.1.0", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "4073f020bdab159b1a1c5316bf72ec9b", + "name": "ipython-qtconsole", + "requires": [], + "size": 4241, + "version": "2.1.0" + }, + "ipython-qtconsole-2.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython 2.1.0", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "5c5825454bdf6e365efd31a538bf1f96", + "name": "ipython-qtconsole", + "requires": [], + "size": 4266, + "version": "2.1.0" + }, + "ipython-qtconsole-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "ipython 2.2.0", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "861aef471f26d1950539be819834db36", + "name": "ipython-qtconsole", + "requires": [], + "size": 4262, + "version": "2.2.0" + }, + "ipython-qtconsole-2.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "ipython 2.2.0", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "6a91bb1f119e09081e885fbef3050353", + "name": "ipython-qtconsole", + "requires": [], + "size": 4235, + "version": "2.2.0" + }, + "ipython-qtconsole-2.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "ipython 2.2.0", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "f8503123899762fbeb12659b3296a712", + "name": "ipython-qtconsole", + "requires": [], + "size": 4230, + "version": "2.2.0" + }, + "ipython-qtconsole-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "ipython 2.3.0", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "1ccc607e9e5f2f7f4181807a1356104c", + "name": "ipython-qtconsole", + "requires": [], + "size": 4255, + "version": "2.3.0" + }, + "ipython-qtconsole-2.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "ipython 2.3.0", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "223c40b63f116fc5a9435386e7e683da", + "name": "ipython-qtconsole", + "requires": [], + "size": 4283, + "version": "2.3.0" + }, + "ipython-qtconsole-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "ipython 2.3.0", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "7a95648c433d77e17494c95ded3905df", + "name": "ipython-qtconsole", + "requires": [], + "size": 4251, + "version": "2.3.0" + }, + "ipython-qtconsole-2.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-13", + "depends": [ + "ipython 2.3.1", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b833e918b8b02038b070799a25d88ea4", + "name": "ipython-qtconsole", + "requires": [], + "size": 4263, + "version": "2.3.1" + }, + "ipython-qtconsole-2.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-13", + "depends": [ + "ipython 2.3.1", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "79d9fb7e5b9191ab2f0ed28992ee7fb3", + "name": "ipython-qtconsole", + "requires": [], + "size": 4266, + "version": "2.3.1" + }, + "ipython-qtconsole-2.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-13", + "depends": [ + "ipython 2.3.1", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "78035545f37ee417dde512a5db30f574", + "name": "ipython-qtconsole", + "requires": [], + "size": 4267, + "version": "2.3.1" + }, + "ipython-qtconsole-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "ipython 2.4.1", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "4350c79681382cf35582bd3d59372172", + "name": "ipython-qtconsole", + "requires": [], + "size": 4243, + "version": "2.4.1" + }, + "ipython-qtconsole-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "ipython 2.4.1", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "9b03ee3ee3ed0a059ecc021bde297e7b", + "name": "ipython-qtconsole", + "requires": [], + "size": 4235, + "version": "2.4.1" + }, + "ipython-qtconsole-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "ipython 2.4.1", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "a0bb6277cff5515b6873898dab414e91", + "name": "ipython-qtconsole", + "requires": [], + "size": 4237, + "version": "2.4.1" + }, + "ipython-qtconsole-3.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "ipython 3.0.0", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "3e0f5e50556dc8011309fdd505b59007", + "name": "ipython-qtconsole", + "requires": [], + "size": 4229, + "version": "3.0.0" + }, + "ipython-qtconsole-3.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "ipython 3.0.0", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "e671db265d2a2977be6ccbfeaba0eb2b", + "name": "ipython-qtconsole", + "requires": [], + "size": 4202, + "version": "3.0.0" + }, + "ipython-qtconsole-3.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "ipython 3.0.0", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "b29e2151ffa43c2749cc9658ea995bd4", + "name": "ipython-qtconsole", + "requires": [], + "size": 4199, + "version": "3.0.0" + }, + "ipython-qtconsole-3.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "ipython 3.1.0", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "4a12ebe3ce8c6bc5d6373252f9dffc98", + "name": "ipython-qtconsole", + "requires": [], + "size": 4279, + "version": "3.1.0" + }, + "ipython-qtconsole-3.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "ipython 3.1.0", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "740f54a197a1a25e781014324977ee90", + "name": "ipython-qtconsole", + "requires": [], + "size": 4247, + "version": "3.1.0" + }, + "ipython-qtconsole-3.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-03", + "depends": [ + "ipython 3.1.0", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "258f52156b967d54c6d99434dff93697", + "name": "ipython-qtconsole", + "requires": [], + "size": 4261, + "version": "3.1.0" + }, + "ipython-qtconsole-3.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "ipython 3.2.0", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "02f173e96f6153a82084fef6b04f4be7", + "name": "ipython-qtconsole", + "requires": [], + "size": 3888, + "version": "3.2.0" + }, + "ipython-qtconsole-3.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "ipython 3.2.0", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "04c86123e0fe0c2ff2f7ccbe340ad5b6", + "name": "ipython-qtconsole", + "requires": [], + "size": 3878, + "version": "3.2.0" + }, + "ipython-qtconsole-3.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "ipython 3.2.0", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "5476e4e229eb9e094ca8470372e7144f", + "name": "ipython-qtconsole", + "requires": [], + "size": 3891, + "version": "3.2.0" + }, + "ipython-qtconsole-3.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "ipython 3.2.1", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "335e5c12982d6151b19fd31f79bf60d2", + "name": "ipython-qtconsole", + "requires": [], + "size": 3913, + "version": "3.2.1" + }, + "ipython-qtconsole-3.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "ipython 3.2.1", + "pygments", + "pyqt", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "ad8aa064509c27933536cf4f8acf2b14", + "name": "ipython-qtconsole", + "requires": [], + "size": 3913, + "version": "3.2.1" + }, + "ipython-qtconsole-3.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "ipython 3.2.1", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "a8b919f70e71db5e21fde9e5c6446f95", + "name": "ipython-qtconsole", + "requires": [], + "size": 3894, + "version": "3.2.1" + }, + "ipython-qtconsole-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-28", + "depends": [ + "python 2.7*", + "qtconsole" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "1302db0cca7091fa0ca3c069260785b4", + "name": "ipython-qtconsole", + "requires": [], + "size": 3988, + "version": "4.0.1" + }, + "ipython-qtconsole-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-28", + "depends": [ + "python 3.4*", + "qtconsole" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "5166c75621688aeec839ee1d986eca93", + "name": "ipython-qtconsole", + "requires": [], + "size": 3977, + "version": "4.0.1" + }, + "ipython-qtconsole-4.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "qtconsole" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "8751573ba2c0d5f28f434720f95cda83", + "name": "ipython-qtconsole", + "requires": [], + "size": 3982, + "version": "4.0.1" + }, + "ipython_genutils-0.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "631fa79f4747effcfc95acbfff2fa4bd", + "name": "ipython_genutils", + "requires": [], + "size": 33104, + "version": "0.1.0" + }, + "ipython_genutils-0.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "c7482f6b67ffe198f2dad9ded7991b19", + "name": "ipython_genutils", + "requires": [], + "size": 34233, + "version": "0.1.0" + }, + "ipython_genutils-0.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "332c30763f00fe1df34e4efd7235d1d1", + "name": "ipython_genutils", + "requires": [], + "size": 34173, + "version": "0.1.0" + }, + "ipywidgets-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "21dfec7c33f14418348119e681f69d13", + "name": "ipywidgets", + "requires": [], + "size": 94725, + "version": "4.0.2" + }, + "ipywidgets-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "3b3ad2bed0ee392da280c10e55196f24", + "name": "ipywidgets", + "requires": [], + "size": 96451, + "version": "4.0.2" + }, + "ipywidgets-4.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "061930dd81873fa169db268f70dfce75", + "name": "ipywidgets", + "requires": [], + "size": 96526, + "version": "4.0.2" + }, + "ipywidgets-4.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "626b91582175d70f47d737f099dbc9b6", + "name": "ipywidgets", + "requires": [], + "size": 96482, + "version": "4.0.3" + }, + "ipywidgets-4.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "77ab8ec7ed6a79b0c9883c3eec7dc295", + "name": "ipywidgets", + "requires": [], + "size": 98383, + "version": "4.0.3" + }, + "ipywidgets-4.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "6eec1fcac00a08d22ace633b2d79901b", + "name": "ipywidgets", + "requires": [], + "size": 98270, + "version": "4.0.3" + }, + "ipywidgets-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "f4c57150b8cdb3bfdc1352c5f030f5bc", + "name": "ipywidgets", + "requires": [], + "size": 100134, + "version": "4.1.0" + }, + "ipywidgets-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "e653d7a3f77c21e1fff0799a9812ad4b", + "name": "ipywidgets", + "requires": [], + "size": 102175, + "version": "4.1.0" + }, + "ipywidgets-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "946e5979c0d6a05ac6118a7ce1391188", + "name": "ipywidgets", + "requires": [], + "size": 101981, + "version": "4.1.0" + }, + "ipywidgets-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "6e68ac62487b3d96995b003290a73879", + "name": "ipywidgets", + "requires": [], + "size": 100026, + "version": "4.1.1" + }, + "ipywidgets-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "70ebb4ef401824e0221e06efb6a41b90", + "name": "ipywidgets", + "requires": [], + "size": 102116, + "version": "4.1.1" + }, + "ipywidgets-4.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "ipykernel", + "ipython", + "notebook", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "081e05d3801ce1313190eae56e769ca6", + "name": "ipywidgets", + "requires": [], + "size": 101887, + "version": "4.1.1" + }, + "isl-0.12.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "gmp" + ], + "license": "MIT", + "md5": "97aaa02735b4c5e71a08cec175287b0e", + "name": "isl", + "requires": [], + "size": 1151169, + "version": "0.12.2" + }, + "iso8601-0.1.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "f0e95c6e0e56e9a3820dff6368a535dd", + "name": "iso8601", + "requires": [], + "size": 10981, + "version": "0.1.11" + }, + "iso8601-0.1.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "333c9b6a44fdc133bacada559bb97c15", + "name": "iso8601", + "requires": [], + "size": 11118, + "version": "0.1.11" + }, + "iso8601-0.1.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "e461eac24fe4dcfac84f2f86329766ea", + "name": "iso8601", + "requires": [], + "size": 11133, + "version": "0.1.11" + }, + "itsdangerous-0.21-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "e4a478f0a7a9bbd24fe77df230c3d562", + "name": "itsdangerous", + "requires": [], + "size": 14459, + "version": "0.21" + }, + "itsdangerous-0.21-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ed4494c7748c73afb78e24b7df727e2d", + "name": "itsdangerous", + "requires": [], + "size": 14471, + "version": "0.21" + }, + "itsdangerous-0.23-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "83f53bff425bec50e065b1aba21d654b", + "name": "itsdangerous", + "requires": [], + "size": 15586, + "version": "0.23" + }, + "itsdangerous-0.23-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "179b091d5820462fa095fed65c7741ef", + "name": "itsdangerous", + "requires": [], + "size": 15596, + "version": "0.23" + }, + "itsdangerous-0.23-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f5ed259526166f569527f47be67d9eee", + "name": "itsdangerous", + "requires": [], + "size": 16281, + "version": "0.23" + }, + "itsdangerous-0.23-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "d5f6472777b665a19ee3c2401549f3c3", + "name": "itsdangerous", + "requires": [], + "size": 16512, + "version": "0.23" + }, + "itsdangerous-0.24-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "e75cf629f23e58015c30d7ba806219db", + "name": "itsdangerous", + "requires": [], + "size": 16281, + "version": "0.24" + }, + "itsdangerous-0.24-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "48295d6fb79e3c601a611515e5d9a6f6", + "name": "itsdangerous", + "requires": [], + "size": 16328, + "version": "0.24" + }, + "itsdangerous-0.24-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "735bf987d336e458c45411c8fb535e84", + "name": "itsdangerous", + "requires": [], + "size": 17040, + "version": "0.24" + }, + "itsdangerous-0.24-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "0bcd8d71eba009acb8694d3511a41604", + "name": "itsdangerous", + "requires": [], + "size": 16844, + "version": "0.24" + }, + "itsdangerous-0.24-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "2308b43796a502d88de5165516916e02", + "name": "itsdangerous", + "requires": [], + "size": 16453, + "version": "0.24" + }, + "jbig-2.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-11-11", + "depends": [], + "license": "GPL2", + "md5": "334b102413fec962bf65c4d60697da34", + "name": "jbig", + "requires": [], + "size": 30127, + "version": "2.1" + }, + "jdcal-1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "0633e8dcb7ad9464077847eda6838bcc", + "name": "jdcal", + "requires": [], + "size": 9328, + "version": "1.0" + }, + "jdcal-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "313a850db51b029cb0fe1aacf395a795", + "name": "jdcal", + "requires": [], + "size": 9240, + "version": "1.0" + }, + "jdcal-1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "506350c0cffc94e2382156d118a198fc", + "name": "jdcal", + "requires": [], + "size": 9478, + "version": "1.0" + }, + "jdcal-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3b6557546f5c9b34bfc364bfcb130521", + "name": "jdcal", + "requires": [], + "size": 9497, + "version": "1.0" + }, + "jdcal-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "53ae17001d85dae403dc119c3f7eff59", + "name": "jdcal", + "requires": [], + "size": 9171, + "version": "1.0" + }, + "jdcal-1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2dc0e4a8303c56e2e6cb6fde82fc43b1", + "name": "jdcal", + "requires": [], + "size": 7434, + "version": "1.2" + }, + "jdcal-1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "d60a5dcfdee91b5018db12e1e39197a0", + "name": "jdcal", + "requires": [], + "size": 7511, + "version": "1.2" + }, + "jdcal-1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "a968eafd5ca7307f566e23575bb9ff17", + "name": "jdcal", + "requires": [], + "size": 7488, + "version": "1.2" + }, + "jedi-0.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "1306a51b10787068f041a9d8884fec5d", + "name": "jedi", + "requires": [], + "size": 175482, + "version": "0.8.1" + }, + "jedi-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "dd8fe62d728bb892b2e0098db2d5555c", + "name": "jedi", + "requires": [], + "size": 175256, + "version": "0.8.1" + }, + "jedi-0.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "c7f77a506df5fcac1a080b422b059495", + "name": "jedi", + "requires": [], + "size": 187882, + "version": "0.8.1" + }, + "jedi-0.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "8632c86cf6622a339e9000d08799247e", + "name": "jedi", + "requires": [], + "size": 180696, + "version": "0.8.1" + }, + "jedi-0.9.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "75926a4ad2b8d9ca26a3338b43802d55", + "name": "jedi", + "requires": [], + "size": 200045, + "version": "0.9.0" + }, + "jedi-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ab4a71619f4e44e957e248886875431b", + "name": "jedi", + "requires": [], + "size": 199829, + "version": "0.9.0" + }, + "jedi-0.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "cbd8b216e37981e0e66cf6c090868c15", + "name": "jedi", + "requires": [], + "size": 210357, + "version": "0.9.0" + }, + "jedi-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-16", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "809bf1c333cec1d1ecb089450942243c", + "name": "jedi", + "requires": [], + "size": 200124, + "version": "0.9.0" + }, + "jedi-0.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "a451846a1039475826184ba389e04665", + "name": "jedi", + "requires": [], + "size": 199470, + "version": "0.9.0" + }, + "jinja2-2.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "fd7997f6c01066f5121e4c8ff989d7e3", + "name": "jinja2", + "requires": [], + "size": 325717, + "version": "2.6" + }, + "jinja2-2.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f6ddf7613c8162ab6028be96fe6569bb", + "name": "jinja2", + "requires": [], + "size": 326320, + "version": "2.6" + }, + "jinja2-2.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "fc9108e5d780b8f4e0223b81256a0e0e", + "name": "jinja2", + "requires": [], + "size": 366293, + "version": "2.6" + }, + "jinja2-2.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.6*" + ], + "license": "BSD", + "md5": "1720d7a9d17725eddfb3b68424696dfe", + "name": "jinja2", + "requires": [], + "size": 313261, + "version": "2.7" + }, + "jinja2-2.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.7*" + ], + "license": "BSD", + "md5": "cbcdab4bb457980df9c756fdce1a663e", + "name": "jinja2", + "requires": [], + "size": 313915, + "version": "2.7" + }, + "jinja2-2.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 3.3*" + ], + "license": "BSD", + "md5": "ac7687f49daa850cc45b3b6eda36d0d3", + "name": "jinja2", + "requires": [], + "size": 374830, + "version": "2.7" + }, + "jinja2-2.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.6*" + ], + "license": "BSD", + "md5": "c8c09b7d9a00f56b322bddcb5aa48b7a", + "name": "jinja2", + "requires": [], + "size": 313611, + "version": "2.7.1" + }, + "jinja2-2.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.7*" + ], + "license": "BSD", + "md5": "f137d4e2d4f6176d151aebbb405fa1ce", + "name": "jinja2", + "requires": [], + "size": 314167, + "version": "2.7.1" + }, + "jinja2-2.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 3.3*" + ], + "license": "BSD", + "md5": "7a76efe8d9985ceedcf8669a2a717780", + "name": "jinja2", + "requires": [], + "size": 375012, + "version": "2.7.1" + }, + "jinja2-2.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.6*" + ], + "license": "BSD", + "md5": "07746250df3c713a223774db8e8e6622", + "name": "jinja2", + "requires": [], + "size": 314568, + "version": "2.7.2" + }, + "jinja2-2.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.7*" + ], + "license": "BSD", + "md5": "0d0ba83f6cb444c24880eaebf35a724f", + "name": "jinja2", + "requires": [], + "size": 314771, + "version": "2.7.2" + }, + "jinja2-2.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 3.3*" + ], + "license": "BSD", + "md5": "2f82a414b93b4316e835b18ef98c97ee", + "name": "jinja2", + "requires": [], + "size": 381858, + "version": "2.7.2" + }, + "jinja2-2.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 3.4*" + ], + "license": "BSD", + "md5": "e32f664931d90c82003a31f54a22ca31", + "name": "jinja2", + "requires": [], + "size": 358871, + "version": "2.7.2" + }, + "jinja2-2.7.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.6*" + ], + "license": "BSD", + "md5": "2603ec43cb2860ac0eecc7b3b8d3497c", + "name": "jinja2", + "requires": [], + "size": 314532, + "version": "2.7.3" + }, + "jinja2-2.7.3-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.6*", + "setuptools" + ], + "license": "BSD", + "md5": "12efe487a9e3c0e2cb3e9b9c5a4bd052", + "name": "jinja2", + "requires": [], + "size": 314526, + "version": "2.7.3" + }, + "jinja2-2.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.7*" + ], + "license": "BSD", + "md5": "f2ba7da4ea50cb2b3c36e74e8eb248f7", + "name": "jinja2", + "requires": [], + "size": 315122, + "version": "2.7.3" + }, + "jinja2-2.7.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "89bd52eedad1bc11d845bc52dcc9880b", + "name": "jinja2", + "requires": [], + "size": 315021, + "version": "2.7.3" + }, + "jinja2-2.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 3.3*" + ], + "license": "BSD", + "md5": "b9dc0d9782b6683f144634223fad5ee9", + "name": "jinja2", + "requires": [], + "size": 376093, + "version": "2.7.3" + }, + "jinja2-2.7.3-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 3.3*", + "setuptools" + ], + "license": "BSD", + "md5": "d0ea023093dce2caf08b92763d87c75e", + "name": "jinja2", + "requires": [], + "size": 375864, + "version": "2.7.3" + }, + "jinja2-2.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 3.4*" + ], + "license": "BSD", + "md5": "ece956215404d3af4e5ab72c427e89c3", + "name": "jinja2", + "requires": [], + "size": 358961, + "version": "2.7.3" + }, + "jinja2-2.7.3-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "markupsafe", + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "2af86a99ad6a93e04d8410ca07029c1d", + "name": "jinja2", + "requires": [], + "size": 359293, + "version": "2.7.3" + }, + "jinja2-2.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "markupsafe", + "python 2.6*", + "setuptools" + ], + "license": "BSD", + "md5": "b99c5e8b7e309e526de2e415ebf6c25f", + "name": "jinja2", + "requires": [], + "size": 269492, + "version": "2.8" + }, + "jinja2-2.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "markupsafe", + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "fe1aee9f85f898e74b6e35246cdee444", + "name": "jinja2", + "requires": [], + "size": 269663, + "version": "2.8" + }, + "jinja2-2.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "markupsafe", + "python 3.3*", + "setuptools" + ], + "license": "BSD", + "md5": "82a1c3acf650afbf46227c2eab9e19de", + "name": "jinja2", + "requires": [], + "size": 311768, + "version": "2.8" + }, + "jinja2-2.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "markupsafe", + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "5f2ad4356f081790f9edc410cc82e794", + "name": "jinja2", + "requires": [], + "size": 308551, + "version": "2.8" + }, + "jinja2-2.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "markupsafe", + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "92d4daf2a8e4794098526aa13f712704", + "name": "jinja2", + "requires": [], + "size": 307185, + "version": "2.8" + }, + "jmespath-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d5211f53166ddeec8eace4ec63a30077", + "name": "jmespath", + "requires": [], + "size": 27882, + "version": "0.9.0" + }, + "jmespath-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "2f102d3b17314e3c6d7f82aae79099f3", + "name": "jmespath", + "requires": [], + "size": 29012, + "version": "0.9.0" + }, + "jmespath-0.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-02", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "f23ea32b80d0debbfc6b3b01854034ae", + "name": "jmespath", + "requires": [], + "size": 28845, + "version": "0.9.0" + }, + "joblib-0.8.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "894cd9a9d77dd375faa99370b9483313", + "name": "joblib", + "requires": [], + "size": 97955, + "version": "0.8.4" + }, + "joblib-0.8.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "afb10195d80977d45858babc3ddc9fc2", + "name": "joblib", + "requires": [], + "size": 97447, + "version": "0.8.4" + }, + "joblib-0.8.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "0e1697eb2349bf0385bf190bb238575d", + "name": "joblib", + "requires": [], + "size": 100015, + "version": "0.8.4" + }, + "joblib-0.8.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-25", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "42b2223da4f67b8fba4e2a59f3e12724", + "name": "joblib", + "requires": [], + "size": 99781, + "version": "0.8.4" + }, + "joblib-0.8.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "a23df601d2aa738c90e58318a697c097", + "name": "joblib", + "requires": [], + "size": 99355, + "version": "0.8.4" + }, + "joblib-0.9.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "c866be35c7e7179a79a0950b2c14f497", + "name": "joblib", + "requires": [], + "size": 123559, + "version": "0.9.4" + }, + "joblib-0.9.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "6ff74f7b6a6a5940480c5b9ec5f8197b", + "name": "joblib", + "requires": [], + "size": 126181, + "version": "0.9.4" + }, + "joblib-0.9.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-18", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "d5d63a2168fa91ce5511841ee7c17b31", + "name": "joblib", + "requires": [], + "size": 125856, + "version": "0.9.4" + }, + "joy-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "543264e458e937a6e2c0caedc7ac0dc4", + "name": "joy", + "requires": [], + "size": 634, + "version": "1.0" + }, + "joy-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "cb158f441c3391d330db3373a9db5cf9", + "name": "joy", + "requires": [], + "size": 628, + "version": "1.0" + }, + "joy-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "06093b90f8420e7350da6afdbe414abc", + "name": "joy", + "requires": [], + "size": 634, + "version": "1.0" + }, + "jpeg-8d-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "Custom free software license", + "license_family": "Other", + "md5": "1cbde2e729854689e0b1437085b39b41", + "name": "jpeg", + "requires": [], + "size": 715463, + "version": "8d" + }, + "jsonschema-2.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "argparse", + "python 2.6*" + ], + "license": "MIT", + "md5": "809dfa82caaba23d113bc5f197ac51d5", + "name": "jsonschema", + "requires": [], + "size": 53305, + "version": "2.4.0" + }, + "jsonschema-2.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ce68124fa8a4fd34c0b617ef5c700acd", + "name": "jsonschema", + "requires": [], + "size": 52710, + "version": "2.4.0" + }, + "jsonschema-2.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "3449e1d303c50c4fe5ac934802ab9893", + "name": "jsonschema", + "requires": [], + "size": 54548, + "version": "2.4.0" + }, + "jsonschema-2.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "3315f440c27fb46548df43fd177b5056", + "name": "jsonschema", + "requires": [], + "size": 54629, + "version": "2.4.0" + }, + "jsonschema-2.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "fa524ce241b8b59e58156dc90e937b06", + "name": "jsonschema", + "requires": [], + "size": 54592, + "version": "2.4.0" + }, + "jupyter-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 2.7*", + "qtconsole" + ], + "license": "BSD", + "md5": "f89393a67f5cca5c08fcb8cf78f41ccb", + "name": "jupyter", + "requires": [], + "size": 1748, + "version": "1.0.0" + }, + "jupyter-1.0.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-12-02", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 2.7*", + "qtconsole" + ], + "license": "BSD", + "md5": "432c9cc0ab875099449ad826da927f4f", + "name": "jupyter", + "requires": [], + "size": 1751, + "version": "1.0.0" + }, + "jupyter-1.0.0-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2016-03-22", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 2.7*", + "qtconsole" + ], + "license": "BSD", + "md5": "6563355ba7dec3b1b57b7968c10edd25", + "name": "jupyter", + "requires": [], + "size": 2243, + "version": "1.0.0" + }, + "jupyter-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 3.4*", + "qtconsole" + ], + "license": "BSD", + "md5": "e87957b81edceb0013cb63e9f8e5559a", + "name": "jupyter", + "requires": [], + "size": 1759, + "version": "1.0.0" + }, + "jupyter-1.0.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-12-02", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 3.4*", + "qtconsole" + ], + "license": "BSD", + "md5": "2d2819f2dd566a1dbe8da084ee9489e5", + "name": "jupyter", + "requires": [], + "size": 1746, + "version": "1.0.0" + }, + "jupyter-1.0.0-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2016-03-22", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 3.4*", + "qtconsole" + ], + "license": "BSD", + "md5": "8a77af910ffc8e14fe82d898e3763f2e", + "name": "jupyter", + "requires": [], + "size": 2208, + "version": "1.0.0" + }, + "jupyter-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 3.5*", + "qtconsole" + ], + "license": "BSD", + "md5": "834d762709e779cb88b50b6a93a0bbc1", + "name": "jupyter", + "requires": [], + "size": 1738, + "version": "1.0.0" + }, + "jupyter-1.0.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-12-02", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 3.5*", + "qtconsole" + ], + "license": "BSD", + "md5": "e1a233d2b3692960fd38c1a964cb56ec", + "name": "jupyter", + "requires": [], + "size": 1734, + "version": "1.0.0" + }, + "jupyter-1.0.0-py35_2.tar.bz2": { + "build": "py35_2", + "build_number": 2, + "date": "2016-03-22", + "depends": [ + "ipykernel", + "ipywidgets", + "jupyter_console", + "nbconvert", + "notebook", + "python 3.5*", + "qtconsole" + ], + "license": "BSD", + "md5": "b5a065c719a82940dcbf237a9d11973a", + "name": "jupyter", + "requires": [], + "size": 2200, + "version": "1.0.0" + }, + "jupyter_client-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "jupyter_core", + "python 2.7*", + "pyzmq 14.*", + "traitlets" + ], + "license": "BSD", + "md5": "6c76393e0523f948bf8f210640924ed9", + "name": "jupyter_client", + "requires": [], + "size": 89860, + "version": "4.0.0" + }, + "jupyter_client-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "jupyter_core", + "python 3.4*", + "pyzmq 14.*", + "traitlets" + ], + "license": "BSD", + "md5": "de1ce75229b710ba053b1cd3793049b6", + "name": "jupyter_client", + "requires": [], + "size": 92637, + "version": "4.0.0" + }, + "jupyter_client-4.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "jupyter_core", + "python 3.5*", + "pyzmq 14.*", + "traitlets" + ], + "license": "BSD", + "md5": "2eb813ed1b0d6f85babe52a1e4ec277d", + "name": "jupyter_client", + "requires": [], + "size": 92317, + "version": "4.0.0" + }, + "jupyter_client-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "jupyter_core", + "python 2.7*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "bb6c1fd60fd93418d8300a8e8bbf1981", + "name": "jupyter_client", + "requires": [], + "size": 90879, + "version": "4.1.1" + }, + "jupyter_client-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "jupyter_core", + "python 3.4*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "463c8fe8c3cc96cae81701a4428d24b5", + "name": "jupyter_client", + "requires": [], + "size": 93679, + "version": "4.1.1" + }, + "jupyter_client-4.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "jupyter_core", + "python 3.5*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "8c4337d6d3ed6b6c333cc15c2f8cf7b6", + "name": "jupyter_client", + "requires": [], + "size": 93331, + "version": "4.1.1" + }, + "jupyter_client-4.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "jupyter_core", + "python 2.7*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "342ec17571f8d4d282821880ce9a6289", + "name": "jupyter_client", + "requires": [], + "size": 97827, + "version": "4.2.1" + }, + "jupyter_client-4.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "jupyter_core", + "python 3.4*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "e1a6f993e1e802d13fa4e29500b4b77b", + "name": "jupyter_client", + "requires": [], + "size": 101106, + "version": "4.2.1" + }, + "jupyter_client-4.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "jupyter_core", + "python 3.5*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "bf233fa77f56423756b85431300ffb94", + "name": "jupyter_client", + "requires": [], + "size": 100402, + "version": "4.2.1" + }, + "jupyter_client-4.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "jupyter_core", + "python 2.7*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "73e08fd8278599058172a7975d8298fd", + "name": "jupyter_client", + "requires": [], + "size": 98074, + "version": "4.2.2" + }, + "jupyter_client-4.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "jupyter_core", + "python 3.4*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "7804c1c42cace0e44e7c7b0c79aad91b", + "name": "jupyter_client", + "requires": [], + "size": 101203, + "version": "4.2.2" + }, + "jupyter_client-4.2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "jupyter_core", + "python 3.5*", + "pyzmq", + "traitlets" + ], + "license": "BSD", + "md5": "01f055861ab55e0fb4d2d008f342635a", + "name": "jupyter_client", + "requires": [], + "size": 100617, + "version": "4.2.2" + }, + "jupyter_console-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 2.7*" + ], + "license": "BSD", + "md5": "515cb6c97073b26e95647bf4e370f7d8", + "name": "jupyter_console", + "requires": [], + "size": 22705, + "version": "4.0.0" + }, + "jupyter_console-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.4*" + ], + "license": "BSD", + "md5": "68d8e5ed63acc870cb75ced94a020c13", + "name": "jupyter_console", + "requires": [], + "size": 23422, + "version": "4.0.0" + }, + "jupyter_console-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-31", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 2.7*" + ], + "license": "BSD", + "md5": "1fd08adb04fa1c205f8801f3be8fea02", + "name": "jupyter_console", + "requires": [], + "size": 22432, + "version": "4.0.1" + }, + "jupyter_console-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-31", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.4*" + ], + "license": "BSD", + "md5": "0a0ea953bdb65c69957ecc4a2192d2a7", + "name": "jupyter_console", + "requires": [], + "size": 23115, + "version": "4.0.1" + }, + "jupyter_console-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 2.7*" + ], + "license": "BSD", + "md5": "a101385239f6a2ae84e2381f291317da", + "name": "jupyter_console", + "requires": [], + "size": 22391, + "version": "4.0.2" + }, + "jupyter_console-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.4*" + ], + "license": "BSD", + "md5": "aa93f7d18ae0aa6dcdedf6124ca21bf0", + "name": "jupyter_console", + "requires": [], + "size": 23146, + "version": "4.0.2" + }, + "jupyter_console-4.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.5*" + ], + "license": "BSD", + "md5": "8b6b2c896526a41e8ff1be7c54bb29ab", + "name": "jupyter_console", + "requires": [], + "size": 23108, + "version": "4.0.2" + }, + "jupyter_console-4.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 2.7*" + ], + "license": "BSD", + "md5": "06916cf182cd8ca104ee10d9190f600d", + "name": "jupyter_console", + "requires": [], + "size": 22978, + "version": "4.0.3" + }, + "jupyter_console-4.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.4*" + ], + "license": "BSD", + "md5": "eb2d34b03545a391974fe3c3e2964cf9", + "name": "jupyter_console", + "requires": [], + "size": 23739, + "version": "4.0.3" + }, + "jupyter_console-4.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.5*" + ], + "license": "BSD", + "md5": "a7e82af3030414b5650feb20335bacd0", + "name": "jupyter_console", + "requires": [], + "size": 23622, + "version": "4.0.3" + }, + "jupyter_console-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 2.7*" + ], + "license": "BSD", + "md5": "4e487bd1f29cfad2a0e2d9d8b2748c72", + "name": "jupyter_console", + "requires": [], + "size": 24383, + "version": "4.1.0" + }, + "jupyter_console-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.4*" + ], + "license": "BSD", + "md5": "b96423193adab928f150ad6f7b185a12", + "name": "jupyter_console", + "requires": [], + "size": 25205, + "version": "4.1.0" + }, + "jupyter_console-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.5*" + ], + "license": "BSD", + "md5": "ddc3635e358c9acb8847403e91e3ef88", + "name": "jupyter_console", + "requires": [], + "size": 25115, + "version": "4.1.0" + }, + "jupyter_console-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 2.7*" + ], + "license": "BSD", + "md5": "01237c7fad651d383ff9da80393f438e", + "name": "jupyter_console", + "requires": [], + "size": 25070, + "version": "4.1.1" + }, + "jupyter_console-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.4*" + ], + "license": "BSD", + "md5": "30149ee8ffa8353d744ae05c56fa74a0", + "name": "jupyter_console", + "requires": [], + "size": 25890, + "version": "4.1.1" + }, + "jupyter_console-4.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "ipykernel", + "ipython", + "jupyter_client", + "python 3.5*" + ], + "license": "BSD", + "md5": "ec59db2c8093aec8041d5aa7d4f62e65", + "name": "jupyter_console", + "requires": [], + "size": 25797, + "version": "4.1.1" + }, + "jupyter_core-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "e808d95d9d7514c1ab4ae017a79a60e9", + "name": "jupyter_core", + "requires": [], + "size": 25841, + "version": "4.0.2" + }, + "jupyter_core-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "b2eb777d27f80c8bf036f643cbcfcc73", + "name": "jupyter_core", + "requires": [], + "size": 26404, + "version": "4.0.2" + }, + "jupyter_core-4.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "a53fc8ecd0601fbc143d7418d8d23e49", + "name": "jupyter_core", + "requires": [], + "size": 25866, + "version": "4.0.3" + }, + "jupyter_core-4.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "7820f55a30117bfce3189e24f4d7a7f2", + "name": "jupyter_core", + "requires": [], + "size": 26449, + "version": "4.0.3" + }, + "jupyter_core-4.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "2af2e696b16ed5669ee3b49db2d4b879", + "name": "jupyter_core", + "requires": [], + "size": 26022, + "version": "4.0.4" + }, + "jupyter_core-4.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "b4dedf12c0fa527b47b50bf6f1650b83", + "name": "jupyter_core", + "requires": [], + "size": 26592, + "version": "4.0.4" + }, + "jupyter_core-4.0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "4930c0b8ca4d5fac300855045370fc84", + "name": "jupyter_core", + "requires": [], + "size": 26434, + "version": "4.0.4" + }, + "jupyter_core-4.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "3c18788d6c74398f6607e2fc8d32728d", + "name": "jupyter_core", + "requires": [], + "size": 49063, + "version": "4.0.6" + }, + "jupyter_core-4.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "3e7ecc3263387c356261fa126ba13d9a", + "name": "jupyter_core", + "requires": [], + "size": 49895, + "version": "4.0.6" + }, + "jupyter_core-4.0.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "9275f4ef2436431fed0335bd91848d02", + "name": "jupyter_core", + "requires": [], + "size": 49724, + "version": "4.0.6" + }, + "jupyter_core-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "06f88ce6fc0283decf22d0d7d1fc6731", + "name": "jupyter_core", + "requires": [], + "size": 51970, + "version": "4.1.0" + }, + "jupyter_core-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "8d6d824efaebc8a61bdd908eb2dd18d7", + "name": "jupyter_core", + "requires": [], + "size": 52669, + "version": "4.1.0" + }, + "jupyter_core-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "92bd94d6edc5cbd8e5fe3dcf48f38db7", + "name": "jupyter_core", + "requires": [], + "size": 52477, + "version": "4.1.0" + }, + "kealib-1.4.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-14", + "depends": [ + "hdf5" + ], + "license": "MIT", + "md5": "546af8960fb664140ed11e96e6d0c27e", + "name": "kealib", + "requires": [], + "size": 208548, + "version": "1.4.5" + }, + "keyring-1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "MIT", + "md5": "1a1240c7dcf203d10a3de8ee4265fdda", + "name": "keyring", + "requires": [], + "size": 67922, + "version": "1.4" + }, + "keyring-1.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "MIT", + "md5": "2731089a2cd425fa8aec641482c7401f", + "name": "keyring", + "requires": [], + "size": 68713, + "version": "1.6.1" + }, + "keyring-2.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "MIT", + "md5": "dca0967400e48bb072cf1cf893a719cc", + "name": "keyring", + "requires": [], + "size": 69878, + "version": "2.0.2" + }, + "keyring-3.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "MIT", + "md5": "b788ac45116c6c96eea37763d0362407", + "name": "keyring", + "requires": [], + "size": 69901, + "version": "3.0.1" + }, + "keyring-3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "MIT", + "md5": "73bf45792af1bfc406549726196d55d8", + "name": "keyring", + "requires": [], + "size": 70349, + "version": "3.1" + }, + "keyring-3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "MIT", + "md5": "bf55ff5c90515aa7143ed300ef6c4eeb", + "name": "keyring", + "requires": [], + "size": 71259, + "version": "3.2" + }, + "keyring-3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "MIT", + "md5": "c31641036bcf2cf0e99714b586735d30", + "name": "keyring", + "requires": [], + "size": 71394, + "version": "3.3" + }, + "keyring-3.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "license_family": "MIT", + "md5": "a24cd6e5cc7e2dcbc45f8f5b37e21bf7", + "name": "keyring", + "requires": [], + "size": 74207, + "version": "3.7" + }, + "keyring-3.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "license_family": "MIT", + "md5": "9595ca9df0d841755651699168ae8a65", + "name": "keyring", + "requires": [], + "size": 73860, + "version": "3.8" + }, + "kiwisolver-0.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "2bb01e59fd441a53b343d1f77044b463", + "name": "kiwisolver", + "requires": [], + "size": 461625, + "version": "0.1.2" + }, + "kiwisolver-0.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bf16c41dc139fb3bccb7c3b573c10b61", + "name": "kiwisolver", + "requires": [], + "size": 461725, + "version": "0.1.2" + }, + "kiwisolver-0.1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "68267ab0dd236fa6e7b75b0a497df5f0", + "name": "kiwisolver", + "requires": [], + "size": 584484, + "version": "0.1.3" + }, + "kiwisolver-0.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "fb3f0da147f72808699d479164635a69", + "name": "kiwisolver", + "requires": [], + "size": 584671, + "version": "0.1.3" + }, + "krb5-1.13.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-06-10", + "depends": [], + "license": "MIT", + "md5": "0dbae411858a59ad0dbb8a7727a9686e", + "name": "krb5", + "requires": [], + "size": 3713825, + "version": "1.13.2" + }, + "lancet-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "param 1.3.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "bd465b3e2d78a246a760a64d6875b0ef", + "name": "lancet", + "requires": [], + "size": 54234, + "version": "0.9.0" + }, + "lancet-0.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "param 1.3.2", + "python 3.3*" + ], + "license": "BSD", + "md5": "d58407bcc0f38cc412194e335644f455", + "name": "lancet", + "requires": [], + "size": 56337, + "version": "0.9.0" + }, + "lancet-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "param 1.3.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "b9299c35d012a0ea9a36b191b18199c4", + "name": "lancet", + "requires": [], + "size": 56694, + "version": "0.9.0" + }, + "lancet-0.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "param 1.3.2", + "python 3.5*" + ], + "license": "BSD", + "md5": "b5eb7a550d6c927acc9d0a952c7cc647", + "name": "lancet", + "requires": [], + "size": 56534, + "version": "0.9.0" + }, + "lancet-ioam-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "param 1.3.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "e1e6c13d5d9986f96e9e97069ceba47b", + "name": "lancet-ioam", + "requires": [], + "size": 54245, + "version": "0.9.0" + }, + "lancet-ioam-0.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "param 1.3.2", + "python 3.3*" + ], + "license": "BSD", + "md5": "b45191ddf2351775cb3c561fb0745674", + "name": "lancet-ioam", + "requires": [], + "size": 56340, + "version": "0.9.0" + }, + "lancet-ioam-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "param 1.3.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "62262b047322f2deac90002f2066a404", + "name": "lancet-ioam", + "requires": [], + "size": 56669, + "version": "0.9.0" + }, + "launcher-0.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask", + "gevent", + "gevent-websocket", + "pyside", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "90b345be05fda790be3698849413e868", + "name": "launcher", + "requires": [], + "size": 2219204, + "version": "0.1.1" + }, + "launcher-0.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask", + "gevent", + "gevent-websocket", + "pyside", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "70e1506bad8ab0a1af4c07abc7063598", + "name": "launcher", + "requires": [], + "size": 1674767, + "version": "0.1.2" + }, + "launcher-0.1.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "flask", + "gevent", + "gevent-websocket", + "pyqt", + "python 2.7*" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "c335be74b5f11e7aee6a8b2c54cc5204", + "name": "launcher", + "requires": [], + "size": 1675505, + "version": "0.1.5" + }, + "launcher-1.0.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-09-02", + "depends": [ + "node-webkit" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "7a28392e1e9eaaa94f8fb2a5d92a3c81", + "name": "launcher", + "requires": [], + "size": 1887214, + "version": "1.0.0" + }, + "launcher-1.0.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-09-19", + "depends": [ + "node-webkit" + ], + "license": "proprietary - Continuum Analytics, Inc.", + "license_family": "Proprietary", + "md5": "c365bfbf074cb0610a0e7b99030c72f2", + "name": "launcher", + "requires": [], + "size": 1887237, + "version": "1.0.0" + }, + "lazy-object-proxy-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7c98ebde49571f43feaafa0584e7f983", + "name": "lazy-object-proxy", + "requires": [], + "size": 47217, + "version": "1.2.1" + }, + "lazy-object-proxy-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "93ed5f1cba0e6627810dda4a2c2c8fda", + "name": "lazy-object-proxy", + "requires": [], + "size": 47678, + "version": "1.2.1" + }, + "lazy-object-proxy-1.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "2bd76187edd16fc2567505058f6bfc8d", + "name": "lazy-object-proxy", + "requires": [], + "size": 47723, + "version": "1.2.1" + }, + "lcms-1.19-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "af06a0cae120932ed092e111aa28a80e", + "name": "lcms", + "requires": [], + "size": 609352, + "version": "1.19" + }, + "ldap3-0.9.8.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "pyasn1 0.1.7", + "python 2.6*" + ], + "license": "LGPLv3", + "license_family": "LGPL", + "md5": "f52e63c7f2c6ce654142d2e769d3e920", + "name": "ldap3", + "requires": [], + "size": 329806, + "version": "0.9.8.4" + }, + "ldap3-0.9.8.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "pyasn1 0.1.7", + "python 2.7*" + ], + "license": "LGPLv3", + "license_family": "LGPL", + "md5": "df219c7833bb21aad629266e75cf8e7f", + "name": "ldap3", + "requires": [], + "size": 330344, + "version": "0.9.8.4" + }, + "ldap3-0.9.8.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "pyasn1 0.1.7", + "python 3.3*" + ], + "license": "LGPLv3", + "license_family": "LGPL", + "md5": "f06072a084abf186c33d97f3b5826488", + "name": "ldap3", + "requires": [], + "size": 379316, + "version": "0.9.8.4" + }, + "ldap3-0.9.8.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "pyasn1 0.1.7", + "python 3.4*" + ], + "license": "LGPLv3", + "license_family": "LGPL", + "md5": "47322c9d7d0b50d1aa6e3bbc2102cd6e", + "name": "ldap3", + "requires": [], + "size": 369905, + "version": "0.9.8.4" + }, + "ldap3-0.9.8.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pyasn1 0.1.7", + "python 3.5*" + ], + "license": "LGPLv3", + "license_family": "LGPL", + "md5": "147a03e08295a30fc4dd2d4d56e62446", + "name": "ldap3", + "requires": [], + "size": 369242, + "version": "0.9.8.4" + }, + "ldap3-1.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "pyasn1 >=0.1.8", + "python 2.7*" + ], + "license": "LGPLv3", + "license_family": "LGPL", + "md5": "32bd2e1a60ca2218c46bae70774167ce", + "name": "ldap3", + "requires": [], + "size": 381376, + "version": "1.0.4" + }, + "ldap3-1.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "pyasn1 >=0.1.8", + "python 3.4*" + ], + "license": "LGPLv3", + "license_family": "LGPL", + "md5": "0cd8bfc2cc014d9b6bcbc53ca7a71b28", + "name": "ldap3", + "requires": [], + "size": 422512, + "version": "1.0.4" + }, + "ldap3-1.0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "pyasn1 >=0.1.8", + "python 3.5*" + ], + "license": "LGPLv3", + "license_family": "LGPL", + "md5": "33ebc143f884e23c53cba69bcefcaf75", + "name": "ldap3", + "requires": [], + "size": 421372, + "version": "1.0.4" + }, + "libconda-3.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "7f2c1f5ffb7f16758d8650d5a49a4101", + "name": "libconda", + "requires": [], + "size": 171045, + "version": "3.11.0" + }, + "libconda-3.11.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c4f885d51b35e1863ef3eb9b310711df", + "name": "libconda", + "requires": [], + "size": 174471, + "version": "3.11.0" + }, + "libconda-3.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-24", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "c7245c490d0156b212a01849a20ff312", + "name": "libconda", + "requires": [], + "size": 174703, + "version": "3.11.0" + }, + "libconda-3.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "fb6754a9b7e271137241ececd565aac0", + "name": "libconda", + "requires": [], + "size": 158037, + "version": "3.7.1" + }, + "libconda-3.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "5bffcc4e93a0e55b7300023f6dd00a4b", + "name": "libconda", + "requires": [], + "size": 161053, + "version": "3.7.1" + }, + "libconda-3.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "43cc98fd6d5f0a83e5ac3d04aaf8aea1", + "name": "libconda", + "requires": [], + "size": 161533, + "version": "3.7.1" + }, + "libconda-3.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "648eca518dd5f49eee79dce2e2fdfacc", + "name": "libconda", + "requires": [], + "size": 158850, + "version": "3.7.2" + }, + "libconda-3.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "a9096d22965e19712973038de67e78fd", + "name": "libconda", + "requires": [], + "size": 161766, + "version": "3.7.2" + }, + "libconda-3.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "7ab5db767904ec40c53fadac820717ee", + "name": "libconda", + "requires": [], + "size": 162290, + "version": "3.7.2" + }, + "libconda-3.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "pycosat", + "python 2.7*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "f67380bcb1223a42b3b9a532056dd186", + "name": "libconda", + "requires": [], + "size": 159269, + "version": "3.7.3" + }, + "libconda-3.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "pycosat", + "python 3.3*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "740079ba1bfea082b6731bac5a92b8e0", + "name": "libconda", + "requires": [], + "size": 162530, + "version": "3.7.3" + }, + "libconda-3.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "pycosat", + "python 3.4*", + "pyyaml", + "requests" + ], + "license": "BSD", + "md5": "d5c1689a3b218958afc22b26b6449b38", + "name": "libconda", + "requires": [], + "size": 163309, + "version": "3.7.3" + }, + "libdynd-0.3.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "5e5c3358c2c6a26048eeea2512c23f73", + "name": "libdynd", + "requires": [], + "size": 3966811, + "version": "0.3.0" + }, + "libdynd-0.4.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "c068ce28179274ad8d6a065f5ae6ecdf", + "name": "libdynd", + "requires": [], + "size": 12698741, + "version": "0.4.0" + }, + "libdynd-0.4.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "b66f4fbd2d79055ab4d7d64ac1d37c3d", + "name": "libdynd", + "requires": [], + "size": 12823188, + "version": "0.4.2" + }, + "libdynd-0.5.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "039a5b5b363facd06d052f4c5c71c3db", + "name": "libdynd", + "requires": [], + "size": 13504913, + "version": "0.5.0" + }, + "libdynd-0.6.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "64795469facc0723f575aceccf95c7a3", + "name": "libdynd", + "requires": [], + "size": 13756804, + "version": "0.6.0" + }, + "libdynd-0.6.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "341850f8a72e5f44a8e92d26d8d93bd0", + "name": "libdynd", + "requires": [], + "size": 13816175, + "version": "0.6.1" + }, + "libdynd-0.6.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "c3b557cc8e687aefe12d06eb9942d154", + "name": "libdynd", + "requires": [], + "size": 18044258, + "version": "0.6.2" + }, + "libdynd-0.6.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "f68bd86921743b43c0fae4cece8ba29e", + "name": "libdynd", + "requires": [], + "size": 22124439, + "version": "0.6.4" + }, + "libdynd-0.6.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-29", + "depends": [], + "license": "BSD", + "md5": "91f1d6b36edff5204055f23a190ff9f3", + "name": "libdynd", + "requires": [], + "size": 18479809, + "version": "0.6.5" + }, + "libdynd-0.7.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-11-30", + "depends": [], + "license": "BSD", + "md5": "8149b5cc6ca3044d8c3fb7ef8f56c7ce", + "name": "libdynd", + "requires": [], + "size": 6627251, + "version": "0.7.0" + }, + "libdynd-0.7.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-02-03", + "depends": [], + "license": "BSD", + "md5": "5ca748b017583308975bd8e35d70de6c", + "name": "libdynd", + "requires": [], + "size": 5692653, + "version": "0.7.1" + }, + "libdynd-0.7.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-03-18", + "depends": [], + "license": "BSD", + "md5": "e9269a41a8e4a30f5f133f885d45f131", + "name": "libdynd", + "requires": [], + "size": 4838996, + "version": "0.7.2" + }, + "libevent-2.0.20-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "225d69bcaad5a1cdfd3b393a5479071b", + "name": "libevent", + "requires": [], + "size": 1597251, + "version": "2.0.20" + }, + "libevent-2.0.21-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6bdd0b32acf0c4f0ac401d339040c8f4", + "name": "libevent", + "requires": [], + "size": 1597007, + "version": "2.0.21" + }, + "libffi-3.0.13-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "36d68faaa66db3ac6053d5f8a48a854e", + "name": "libffi", + "requires": [], + "size": 33563, + "version": "3.0.13" + }, + "libgcc-4.8.4-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-06-04", + "depends": [ + "cloog 0.18.0", + "gmp >=4.2", + "isl", + "mpc >=0.8.0", + "mpfr >=2.4.0" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "aa99dcba2e1940f71d6de1c4d325a49e", + "name": "libgcc", + "requires": [], + "size": 3826420, + "version": "4.8.4" + }, + "libgcc-4.8.5-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-09-18", + "depends": [], + "license": "GPL", + "license_family": "GPL3", + "md5": "bbda30b0b1d8e32e9de16e23d21d4662", + "name": "libgcc", + "requires": [], + "size": 943852, + "version": "4.8.5" + }, + "libgdal-1.11.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-05-11", + "depends": [], + "license": "MIT", + "md5": "d250daf68cefbdf615fd9de9962c97af", + "name": "libgdal", + "requires": [], + "size": 41090815, + "version": "1.11.2" + }, + "libgdal-1.11.2-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-05-12", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2" + ], + "license": "MIT", + "md5": "388dff1ce09623764912714fe385c451", + "name": "libgdal", + "requires": [], + "size": 5489765, + "version": "1.11.2" + }, + "libgdal-1.11.2-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-07-21", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1" + ], + "license": "MIT", + "md5": "34fedbe8c6f9608f2f672f0c1143e453", + "name": "libgdal", + "requires": [], + "size": 41091918, + "version": "1.11.2" + }, + "libgdal-2.0.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1" + ], + "license": "MIT", + "md5": "daae1a62b4f6d4be4e6f26cbccd4fd6b", + "name": "libgdal", + "requires": [], + "size": 45260644, + "version": "2.0.0" + }, + "libgdal-2.0.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-12-03", + "depends": [ + "geos", + "hdf4", + "hdf5", + "kealib", + "libnetcdf", + "proj4", + "xerces-c" + ], + "license": "MIT", + "md5": "dbfff338ba5ad7a8ac891038303736a7", + "name": "libgdal", + "requires": [], + "size": 49249905, + "version": "2.0.0" + }, + "libgdal-2.0.0-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-12-15", + "depends": [ + "geos 3.4.*", + "hdf4 4.2.*", + "hdf5 1.8.15*", + "kealib 1.4.*", + "libnetcdf 4.3.*", + "proj4 4.9.*", + "xerces-c 3.1.*" + ], + "license": "MIT", + "md5": "eefa640f58fc521184f75ae9ca9775ca", + "name": "libgdal", + "requires": [], + "size": 49248914, + "version": "2.0.0" + }, + "libgfortran-1.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-08-20", + "depends": [], + "license": "GPL3", + "md5": "e847ec912eebbaee5ec4ec394f78e2cc", + "name": "libgfortran", + "requires": [], + "size": 174097, + "version": "1.0" + }, + "libgfortran-3.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-03-03", + "depends": [], + "license": "GPL3", + "md5": "0d1664f9e5992bbd447a9c4d8bc43c64", + "name": "libgfortran", + "requires": [], + "size": 267097, + "version": "3.0" + }, + "libhlc-0.1-6.tar.bz2": { + "build": "6", + "build_number": 6, + "date": "2015-11-26", + "depends": [], + "license": "BSD", + "md5": "979a945cd07141350d368d7ab6a9e65c", + "name": "libhlc", + "requires": [], + "size": 17090178, + "version": "0.1" + }, + "libnetcdf-4.2.1.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9" + ], + "license": "MIT", + "md5": "62f7db25412658c692bc66087ab84346", + "name": "libnetcdf", + "requires": [], + "size": 652530, + "version": "4.2.1.1" + }, + "libnetcdf-4.2.1.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "hdf5 1.8.9", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "1d96c6018c6b3dba25e83e95f60d1b02", + "name": "libnetcdf", + "requires": [], + "size": 879255, + "version": "4.2.1.1" + }, + "libnetcdf-4.3.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "curl 7.38.0", + "hdf5 1.8.13", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "8f77bbf0542aa40c90adc0860cb2dfd9", + "name": "libnetcdf", + "requires": [], + "size": 901780, + "version": "4.3.2" + }, + "libnetcdf-4.3.2-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "curl 7.38.0", + "hdf5 1.8.14", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "0ccc1af685db26f06c76d2b24b0b0187", + "name": "libnetcdf", + "requires": [], + "size": 901782, + "version": "4.3.2" + }, + "libnetcdf-4.3.3.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "curl 7.42.1", + "hdf5 1.8.14", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "d486b2223bb87091c14b79f1d1fe809d", + "name": "libnetcdf", + "requires": [], + "size": 921209, + "version": "4.3.3.1" + }, + "libnetcdf-4.3.3.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-07-15", + "depends": [ + "curl 7.43.0", + "hdf5 1.8.15.1", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "5c7a9e907cc1799995fa53f9b09c37bd", + "name": "libnetcdf", + "requires": [], + "size": 921353, + "version": "4.3.3.1" + }, + "libnetcdf-4.3.3.1-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2016-02-22", + "depends": [ + "curl 7.45.*", + "hdf5 1.8.15*", + "zlib 1.2.*" + ], + "license": "MIT", + "md5": "1fa1dd945d1ced04b840112f39a43ebf", + "name": "libnetcdf", + "requires": [], + "size": 913088, + "version": "4.3.3.1" + }, + "libpng-1.2.50-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "libpng license (http://www.libpng.org/pub/png/src/libpng-LICENSE.txt)", + "license_family": "Other", + "md5": "7dd2a5f888450d1105d940ce7cb85777", + "name": "libpng", + "requires": [], + "size": 597779, + "version": "1.2.50" + }, + "libpng-1.5.13-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "libpng license (http://www.libpng.org/pub/png/src/libpng-LICENSE.txt)", + "license_family": "Other", + "md5": "563975760401861e0b3361424a4923d8", + "name": "libpng", + "requires": [], + "size": 485840, + "version": "1.5.13" + }, + "libpng-1.5.13-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [], + "license": "libpng license (http://www.libpng.org/pub/png/src/libpng-LICENSE.txt)", + "license_family": "Other", + "md5": "5ca270828ba83b60fd6660f2aa4bf401", + "name": "libpng", + "requires": [], + "size": 155845, + "version": "1.5.13" + }, + "libpng-1.6.17-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-05-26", + "depends": [], + "license": "libpng license (http://www.libpng.org/pub/png/src/libpng-LICENSE.txt)", + "license_family": "Other", + "md5": "8504156f444604ee4635e3423095a9ab", + "name": "libpng", + "requires": [], + "size": 218911, + "version": "1.6.17" + }, + "libsodium-0.4.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "4b2cac38d57b1e0caa0d388a528d3a5e", + "name": "libsodium", + "requires": [], + "size": 541426, + "version": "0.4.5" + }, + "libsodium-1.0.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-19", + "depends": [], + "license": "MIT", + "md5": "7fbb290afdcd89c7033443a273ef5d28", + "name": "libsodium", + "requires": [], + "size": 792638, + "version": "1.0.3" + }, + "libtiff-4.0.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD-like (http://www.libtiff.org/misc.html)", + "license_family": "BSD", + "md5": "6e61cca80f0ccb1ca487e617de42679a", + "name": "libtiff", + "requires": [], + "size": 1025334, + "version": "4.0.2" + }, + "libtiff-4.0.2-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-09-02", + "depends": [ + "jpeg 8d" + ], + "license": "BSD-like (http://www.libtiff.org/misc.html)", + "license_family": "BSD", + "md5": "0005564dfb25e4d7921b9117764baa9c", + "name": "libtiff", + "requires": [], + "size": 952758, + "version": "4.0.2" + }, + "libtiff-4.0.6-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "jpeg 8d" + ], + "license": "BSD-like (http://www.libtiff.org/misc.html)", + "license_family": "BSD", + "md5": "ec5b176835e5635e55259f9dc246ffc5", + "name": "libtiff", + "requires": [], + "size": 899115, + "version": "4.0.6" + }, + "libtiff-4.0.6-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-11-11", + "depends": [ + "jbig 2.1", + "jpeg 8d", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "BSD-like (http://www.libtiff.org/misc.html)", + "license_family": "BSD", + "md5": "a4d28e52c631d2c0c284d0d84fc1546f", + "name": "libtiff", + "requires": [], + "size": 1526218, + "version": "4.0.6" + }, + "libxml2-2.9.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "zlib 1.2*" + ], + "license": "MIT", + "md5": "00b6346fe6be7479ddf9e35e101cc964", + "name": "libxml2", + "requires": [], + "size": 4059100, + "version": "2.9.0" + }, + "libxml2-2.9.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "zlib 1.2*" + ], + "license": "MIT", + "md5": "b0b1a3f8274a41231e25f15990975446", + "name": "libxml2", + "requires": [], + "size": 4454630, + "version": "2.9.2" + }, + "libxslt-1.1.28-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*" + ], + "license": "MIT", + "md5": "656b77543a90549faa4ef443bc7cc26e", + "name": "libxslt", + "requires": [], + "size": 1122985, + "version": "1.1.28" + }, + "lighttpd-1.4.36-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-08-26", + "depends": [], + "license": "BSD", + "md5": "3a2b1f1b71d0529e863f111ba016b041", + "name": "lighttpd", + "requires": [], + "size": 707749, + "version": "1.4.36" + }, + "lighttpd-1.4.39-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-02-19", + "depends": [], + "license": "BSD", + "md5": "07a6328278786da72a0ee32b3f9a878d", + "name": "lighttpd", + "requires": [], + "size": 719153, + "version": "1.4.39" + }, + "line_profiler-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-08", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "46a9e3425482e3153ef7d28e62134dda", + "name": "line_profiler", + "requires": [], + "size": 101750, + "version": "1.0" + }, + "line_profiler-1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-08", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7ccdba772671af62dcf36cc6f284d47b", + "name": "line_profiler", + "requires": [], + "size": 104075, + "version": "1.0" + }, + "line_profiler-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-08", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b4e90e3c9d2e8b30dd4cb1b2b6dc0338", + "name": "line_profiler", + "requires": [], + "size": 113571, + "version": "1.0" + }, + "line_profiler-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "af3da238a7cf38be03bc32bcf894b442", + "name": "line_profiler", + "requires": [], + "size": 113725, + "version": "1.0" + }, + "llvm-3.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "system 5.8" + ], + "license": "Open Source (http://llvm.org/releases/3.3/LICENSE.TXT)", + "license_family": "BSD", + "md5": "ef384e2e7b7bc331c311da2b62392817", + "name": "llvm", + "requires": [], + "size": 52737049, + "version": "3.1" + }, + "llvm-3.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "system 5.8" + ], + "license": "Open Source (http://llvm.org/releases/3.3/LICENSE.TXT)", + "license_family": "BSD", + "md5": "038177de8e999938803ceab8adcd3160", + "name": "llvm", + "requires": [], + "size": 45050627, + "version": "3.1" + }, + "llvm-3.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "system 5.8" + ], + "license": "Open Source (http://llvm.org/releases/3.3/LICENSE.TXT)", + "license_family": "BSD", + "md5": "ff6fbe59981887402e8d3f01f799251b", + "name": "llvm", + "requires": [], + "size": 30471181, + "version": "3.2" + }, + "llvm-3.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "system 5.8" + ], + "license": "Open Source (http://llvm.org/releases/3.3/LICENSE.TXT)", + "license_family": "BSD", + "md5": "c0d193af56afa9968bea4905289869d8", + "name": "llvm", + "requires": [], + "size": 36887827, + "version": "3.3" + }, + "llvmlite-0.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "6fa08b9ed80ac1a65420e9a98e24b0ba", + "name": "llvmlite", + "requires": [], + "size": 7294382, + "version": "0.10.0" + }, + "llvmlite-0.10.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "c67ef0c6597829bda89e4a0a39897698", + "name": "llvmlite", + "requires": [], + "size": 7303287, + "version": "0.10.0" + }, + "llvmlite-0.10.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "fe8f8fcfd96085de4a4af586177a0d71", + "name": "llvmlite", + "requires": [], + "size": 7302636, + "version": "0.10.0" + }, + "llvmlite-0.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-16", + "depends": [ + "enum34", + "python 2.6*" + ], + "license": "BSD", + "md5": "089b82bd099069bfb24e0c61eddf0072", + "name": "llvmlite", + "requires": [], + "size": 7698370, + "version": "0.2.0" + }, + "llvmlite-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-16", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "0a9a4d594cb6858a93bf2791224c433b", + "name": "llvmlite", + "requires": [], + "size": 7698162, + "version": "0.2.0" + }, + "llvmlite-0.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-16", + "depends": [ + "enum34", + "python 3.3*" + ], + "license": "BSD", + "md5": "4c8ee8781f3c631ae3fa2ec5dd1c3d92", + "name": "llvmlite", + "requires": [], + "size": 7702032, + "version": "0.2.0" + }, + "llvmlite-0.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-16", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a72cf774779b46a3f54e91e02d462dba", + "name": "llvmlite", + "requires": [], + "size": 7701033, + "version": "0.2.0" + }, + "llvmlite-0.2.2-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-02-04", + "depends": [ + "enum34", + "python 2.6*" + ], + "license": "BSD", + "md5": "1e04c061fcbcab2bb28a9715e7aa3cec", + "name": "llvmlite", + "requires": [], + "size": 7701596, + "version": "0.2.2" + }, + "llvmlite-0.2.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-02-04", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "58223efdff46386de87b63034ff11f3f", + "name": "llvmlite", + "requires": [], + "size": 7699658, + "version": "0.2.2" + }, + "llvmlite-0.2.2-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-02-04", + "depends": [ + "enum34", + "python 3.3*" + ], + "license": "BSD", + "md5": "7cfb878e5f37e13a674f9045d2a0416e", + "name": "llvmlite", + "requires": [], + "size": 7705161, + "version": "0.2.2" + }, + "llvmlite-0.2.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-02-04", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "28551f0ca9d5643b3c62028c6431a970", + "name": "llvmlite", + "requires": [], + "size": 7704085, + "version": "0.2.2" + }, + "llvmlite-0.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "enum34", + "python 2.6*" + ], + "license": "BSD", + "md5": "bc7280466cd74ae098d461391e53ba7d", + "name": "llvmlite", + "requires": [], + "size": 7703725, + "version": "0.4.0" + }, + "llvmlite-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "a4535ca898aae3ea90c67772c84dd458", + "name": "llvmlite", + "requires": [], + "size": 7703196, + "version": "0.4.0" + }, + "llvmlite-0.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "enum34", + "python 3.3*" + ], + "license": "BSD", + "md5": "3fceb4546651d830091d7c4c5484bc89", + "name": "llvmlite", + "requires": [], + "size": 7711481, + "version": "0.4.0" + }, + "llvmlite-0.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "661bf70b96d07438a26167c57e138d9a", + "name": "llvmlite", + "requires": [], + "size": 7708590, + "version": "0.4.0" + }, + "llvmlite-0.5.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-03", + "depends": [ + "enum34", + "python 2.6*" + ], + "license": "BSD", + "md5": "9d103ba05e3d7480bed298df704429cc", + "name": "llvmlite", + "requires": [], + "size": 7709433, + "version": "0.5.0" + }, + "llvmlite-0.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-03", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "4e740d36eb94381dbe17dd81094a145d", + "name": "llvmlite", + "requires": [], + "size": 7708141, + "version": "0.5.0" + }, + "llvmlite-0.5.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-03", + "depends": [ + "enum34", + "python 3.3*" + ], + "license": "BSD", + "md5": "0584e6740b9b902357b25a7750af238e", + "name": "llvmlite", + "requires": [], + "size": 7717490, + "version": "0.5.0" + }, + "llvmlite-0.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8169897e4d53bf2f53cf3fe7570cb5bc", + "name": "llvmlite", + "requires": [], + "size": 7711985, + "version": "0.5.0" + }, + "llvmlite-0.6.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "enum34", + "python 2.6*" + ], + "license": "BSD", + "md5": "5aec5afd0fc19b67a362666b512b922d", + "name": "llvmlite", + "requires": [], + "size": 8352376, + "version": "0.6.0" + }, + "llvmlite-0.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "308f1c75840445530b288bda9abaffa4", + "name": "llvmlite", + "requires": [], + "size": 8350439, + "version": "0.6.0" + }, + "llvmlite-0.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "enum34", + "python 3.3*" + ], + "license": "BSD", + "md5": "9bed6f43e9e90576e61a002a0cb3c81a", + "name": "llvmlite", + "requires": [], + "size": 8364555, + "version": "0.6.0" + }, + "llvmlite-0.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "40dc04a9ae9e469cedd6afb63f7355f8", + "name": "llvmlite", + "requires": [], + "size": 8366771, + "version": "0.6.0" + }, + "llvmlite-0.7.0-py26_3.tar.bz2": { + "build": "py26_3", + "build_number": 3, + "date": "2015-09-11", + "depends": [ + "enum34", + "python 2.6*" + ], + "license": "BSD", + "md5": "12380953eb9e2bfa4e68e9fe41981f39", + "name": "llvmlite", + "requires": [], + "size": 8368929, + "version": "0.7.0" + }, + "llvmlite-0.7.0-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2015-09-11", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "334f287199cbeac332a07bdf2914fccd", + "name": "llvmlite", + "requires": [], + "size": 8367377, + "version": "0.7.0" + }, + "llvmlite-0.7.0-py33_3.tar.bz2": { + "build": "py33_3", + "build_number": 3, + "date": "2015-09-11", + "depends": [ + "enum34", + "python 3.3*" + ], + "license": "BSD", + "md5": "1b9ee0bec917e0de19ed0dab5b30501b", + "name": "llvmlite", + "requires": [], + "size": 8382572, + "version": "0.7.0" + }, + "llvmlite-0.7.0-py34_3.tar.bz2": { + "build": "py34_3", + "build_number": 3, + "date": "2015-09-11", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7a0ac1c6f5f0f99393a0e52ed109154d", + "name": "llvmlite", + "requires": [], + "size": 8381440, + "version": "0.7.0" + }, + "llvmlite-0.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "f47ec095705b3bfc9e6c221bf7ab2375", + "name": "llvmlite", + "requires": [], + "size": 8374046, + "version": "0.8.0" + }, + "llvmlite-0.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "355a3a9dde7fa1bc71b8ad258891bb10", + "name": "llvmlite", + "requires": [], + "size": 8385862, + "version": "0.8.0" + }, + "llvmlite-0.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "065808cbbbdcc21ddb473bfdc1ab05c6", + "name": "llvmlite", + "requires": [], + "size": 8386027, + "version": "0.8.0" + }, + "llvmlite-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "enum34", + "python 2.7*" + ], + "license": "BSD", + "md5": "6966dfb2b5e49e0f0e1ab363b5e4dddc", + "name": "llvmlite", + "requires": [], + "size": 7269040, + "version": "0.9.0" + }, + "llvmlite-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "edb11e05c14b0a5e42121c1012924dcc", + "name": "llvmlite", + "requires": [], + "size": 7275901, + "version": "0.9.0" + }, + "llvmlite-0.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "30be35085c73884a559055d7cdc6c001", + "name": "llvmlite", + "requires": [], + "size": 7275732, + "version": "0.9.0" + }, + "llvmmath-0.1.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "e9812b740f25b48c2356ba882187ee15", + "name": "llvmmath", + "requires": [], + "size": 108138, + "version": "0.1.0" + }, + "llvmmath-0.1.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9d6850e0e19455679dbe81d07428e615", + "name": "llvmmath", + "requires": [], + "size": 108104, + "version": "0.1.0" + }, + "llvmmath-0.1.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "720a2ace2c8a8b1bfc7c278b12cfba90", + "name": "llvmmath", + "requires": [], + "size": 108156, + "version": "0.1.0" + }, + "llvmmath-0.1.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a2513a0c64fdf71e6f3ff2440bfae283", + "name": "llvmmath", + "requires": [], + "size": 108084, + "version": "0.1.0" + }, + "llvmmath-0.1.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "69b97e2b14a5bb5faecbdb07e6ab861b", + "name": "llvmmath", + "requires": [], + "size": 109088, + "version": "0.1.0" + }, + "llvmmath-0.1.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "b8b9000bddbad8fbe9b8e7b90555894d", + "name": "llvmmath", + "requires": [], + "size": 110879, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "c1429bb89f4a5a828e33005b0058497b", + "name": "llvmmath", + "requires": [], + "size": 110774, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np16py26_2.tar.bz2": { + "build": "np16py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "167b6365b67820db6455f50071ddff14", + "name": "llvmmath", + "requires": [], + "size": 110869, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "faabac6c8b3e76d2e1d751bf51c29d8d", + "name": "llvmmath", + "requires": [], + "size": 110777, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c2c1772370260f55054dfddb34a105aa", + "name": "llvmmath", + "requires": [], + "size": 110819, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np16py27_2.tar.bz2": { + "build": "np16py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "373e76611f16f3487afdcc139c322377", + "name": "llvmmath", + "requires": [], + "size": 110790, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "d55eebec8d40bf12bdfe483a80f81d18", + "name": "llvmmath", + "requires": [], + "size": 110894, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "d09adf8f6e25f56cd51e7ab80dec4af8", + "name": "llvmmath", + "requires": [], + "size": 110888, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py26_2.tar.bz2": { + "build": "np17py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "542a9e28d9d5bf4145cebc7d09c0d55e", + "name": "llvmmath", + "requires": [], + "size": 110906, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "8c236678dd8638e79ab130a0f31e0e9b", + "name": "llvmmath", + "requires": [], + "size": 110792, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6abc06db941c384745fc82909277572d", + "name": "llvmmath", + "requires": [], + "size": 110806, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py27_2.tar.bz2": { + "build": "np17py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a51e77d5314a355449abf2536c527662", + "name": "llvmmath", + "requires": [], + "size": 110763, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.3", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "97feb1213a6c9fb4d7c90e62ae590863", + "name": "llvmmath", + "requires": [], + "size": 111616, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "5c9a913194fb83c316f347eef65b21ba", + "name": "llvmmath", + "requires": [], + "size": 111666, + "version": "0.1.1" + }, + "llvmmath-0.1.1-np17py33_2.tar.bz2": { + "build": "np17py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "46643a820c98e65bb4c946f727d7b5b9", + "name": "llvmmath", + "requires": [], + "size": 111663, + "version": "0.1.1" + }, + "llvmmath-0.1.2-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.1", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "2f0e93cd144396e5b3ea30e1c6a64aec", + "name": "llvmmath", + "requires": [], + "size": 132806, + "version": "0.1.2" + }, + "llvmmath-0.1.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.1", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c89fc5e55ec58faadaa15bb495110bb4", + "name": "llvmmath", + "requires": [], + "size": 132616, + "version": "0.1.2" + }, + "llvmmath-0.1.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.1", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "9823e4bb456cb2b6c8f4652b7b6409aa", + "name": "llvmmath", + "requires": [], + "size": 132565, + "version": "0.1.2" + }, + "llvmmath-0.1.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.1", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "608f9627bd68cd41270f55cd6317018c", + "name": "llvmmath", + "requires": [], + "size": 132548, + "version": "0.1.2" + }, + "llvmmath-0.1.2-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.1", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "bafc3e12a8fd3b59368e9a8c18a7ca53", + "name": "llvmmath", + "requires": [], + "size": 133464, + "version": "0.1.2" + }, + "llvmmath-0.1.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.1", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "0527093eac29269aac2da94e952f07d9", + "name": "llvmmath", + "requires": [], + "size": 133090, + "version": "0.1.2" + }, + "llvmmath-0.1.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.1", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a0e020f8565c618ec3912f30ee407300", + "name": "llvmmath", + "requires": [], + "size": 132711, + "version": "0.1.2" + }, + "llvmmath-0.1.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.1", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "957822b743045456ae621eb99093a316", + "name": "llvmmath", + "requires": [], + "size": 133936, + "version": "0.1.2" + }, + "llvmpy-0.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "129d185be3f8bafe27a048f5e1a0f53f", + "name": "llvmpy", + "requires": [], + "size": 710462, + "version": "0.10.0" + }, + "llvmpy-0.10.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7b03518d87901c486de24e8e28dedd73", + "name": "llvmpy", + "requires": [], + "size": 729474, + "version": "0.10.1" + }, + "llvmpy-0.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a0fc076748f716bece6d302afffe96d3", + "name": "llvmpy", + "requires": [], + "size": 732728, + "version": "0.10.1" + }, + "llvmpy-0.10.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2481350a906d4058ee787cb560f03db8", + "name": "llvmpy", + "requires": [], + "size": 751175, + "version": "0.10.1" + }, + "llvmpy-0.10.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e3b9a9c332998bfa9a7dd2557a96bc16", + "name": "llvmpy", + "requires": [], + "size": 730606, + "version": "0.10.2" + }, + "llvmpy-0.10.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f65cd9470f437dffbf8d67303a195c96", + "name": "llvmpy", + "requires": [], + "size": 734644, + "version": "0.10.2" + }, + "llvmpy-0.10.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "42c64078ad04fd17e4704866d152be66", + "name": "llvmpy", + "requires": [], + "size": 753453, + "version": "0.10.2" + }, + "llvmpy-0.11.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9e798a155a45aa42b83d376ee266e20d", + "name": "llvmpy", + "requires": [], + "size": 1354160, + "version": "0.11.0" + }, + "llvmpy-0.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "26537ab25c416e618db575729b332961", + "name": "llvmpy", + "requires": [], + "size": 1279397, + "version": "0.11.0" + }, + "llvmpy-0.11.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3c8df9ea25d8e778e5b8fedd80adbd78", + "name": "llvmpy", + "requires": [], + "size": 1288314, + "version": "0.11.0" + }, + "llvmpy-0.11.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "225215a8132a396fe2247cc7e72dc738", + "name": "llvmpy", + "requires": [], + "size": 1353739, + "version": "0.11.1" + }, + "llvmpy-0.11.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "284fa8a2b72c8a02a853f67b5b9a30a9", + "name": "llvmpy", + "requires": [], + "size": 1278811, + "version": "0.11.1" + }, + "llvmpy-0.11.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0e482c3655d74b2d648f4ea1328e6b93", + "name": "llvmpy", + "requires": [], + "size": 1287572, + "version": "0.11.1" + }, + "llvmpy-0.11.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "40c4834b02fc619a1015d95efb95ab36", + "name": "llvmpy", + "requires": [], + "size": 1395749, + "version": "0.11.2" + }, + "llvmpy-0.11.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3c5e46b0c0ddc478a857b4d08207da75", + "name": "llvmpy", + "requires": [], + "size": 1325106, + "version": "0.11.2" + }, + "llvmpy-0.11.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "591b75260f1758a514facb07d1c8d025", + "name": "llvmpy", + "requires": [], + "size": 1343367, + "version": "0.11.2" + }, + "llvmpy-0.11.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "95eae9744e7369650229728face5a832", + "name": "llvmpy", + "requires": [], + "size": 1595151, + "version": "0.11.3" + }, + "llvmpy-0.11.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ca606cc2212f3afa6d0c9fbcc652450e", + "name": "llvmpy", + "requires": [], + "size": 1484262, + "version": "0.11.3" + }, + "llvmpy-0.11.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.2", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9a8036749c8e97e41edc4b91f221e3c3", + "name": "llvmpy", + "requires": [], + "size": 1506510, + "version": "0.11.3" + }, + "llvmpy-0.12.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8bbc22d94c088aa8b890626243ae2d02", + "name": "llvmpy", + "requires": [], + "size": 1668109, + "version": "0.12.0" + }, + "llvmpy-0.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d7ffc2ee54fe84c33a1875689c748d14", + "name": "llvmpy", + "requires": [], + "size": 1591402, + "version": "0.12.0" + }, + "llvmpy-0.12.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a1c764ce1137d7eb211282b338b95d33", + "name": "llvmpy", + "requires": [], + "size": 1612855, + "version": "0.12.0" + }, + "llvmpy-0.12.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "18327ba140bb0036a0c2bc431d56d05a", + "name": "llvmpy", + "requires": [], + "size": 1686229, + "version": "0.12.1" + }, + "llvmpy-0.12.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "80fcb0008528dae8fe86467b966b4dfb", + "name": "llvmpy", + "requires": [], + "size": 1615699, + "version": "0.12.1" + }, + "llvmpy-0.12.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "135b6e02a2b9847c7d375023bd0d4fce", + "name": "llvmpy", + "requires": [], + "size": 1622736, + "version": "0.12.1" + }, + "llvmpy-0.12.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "580f759932f57683843aaef31aa5e4ae", + "name": "llvmpy", + "requires": [], + "size": 1729887, + "version": "0.12.2" + }, + "llvmpy-0.12.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "81e613f28f3ada6b5cafaf9dcc72bb25", + "name": "llvmpy", + "requires": [], + "size": 1655546, + "version": "0.12.2" + }, + "llvmpy-0.12.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b2e7c6c4d4ec9824e62b7c901229f9d7", + "name": "llvmpy", + "requires": [], + "size": 1667135, + "version": "0.12.2" + }, + "llvmpy-0.12.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "bd4ef1dac1b1ad590f12dec00265f666", + "name": "llvmpy", + "requires": [], + "size": 1730482, + "version": "0.12.3" + }, + "llvmpy-0.12.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "015b88427a184c268b442856b82c3284", + "name": "llvmpy", + "requires": [], + "size": 1656694, + "version": "0.12.3" + }, + "llvmpy-0.12.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4c1a22ae0e3222a622232572971b609d", + "name": "llvmpy", + "requires": [], + "size": 1664671, + "version": "0.12.3" + }, + "llvmpy-0.12.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "5d69df84cee9bf52f3a5179134228e17", + "name": "llvmpy", + "requires": [], + "size": 1729869, + "version": "0.12.4" + }, + "llvmpy-0.12.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "77e8ab266fce936e848916aa28a4d2c5", + "name": "llvmpy", + "requires": [], + "size": 1658323, + "version": "0.12.4" + }, + "llvmpy-0.12.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ca5275f9c9578540624dfb4870d6c962", + "name": "llvmpy", + "requires": [], + "size": 1671586, + "version": "0.12.4" + }, + "llvmpy-0.12.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a481d935622eab1af44b08870960cad3", + "name": "llvmpy", + "requires": [], + "size": 1680982, + "version": "0.12.4" + }, + "llvmpy-0.12.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8631d362c345ec2df35fc8477637371f", + "name": "llvmpy", + "requires": [], + "size": 1734605, + "version": "0.12.6" + }, + "llvmpy-0.12.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "92fdbfaf579948d234b07c96770f6490", + "name": "llvmpy", + "requires": [], + "size": 1659550, + "version": "0.12.6" + }, + "llvmpy-0.12.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "867ec2d1d7634a3a0c62df4cc8559aa7", + "name": "llvmpy", + "requires": [], + "size": 1668129, + "version": "0.12.6" + }, + "llvmpy-0.12.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b0c4e58cfc8ffa270e08726b7050dfb6", + "name": "llvmpy", + "requires": [], + "size": 1679092, + "version": "0.12.6" + }, + "llvmpy-0.12.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c00e0e9197d9dcfcd7815fb977dcb78a", + "name": "llvmpy", + "requires": [], + "size": 1738801, + "version": "0.12.7" + }, + "llvmpy-0.12.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d0204d2e35e3da3336c59601c36245f6", + "name": "llvmpy", + "requires": [], + "size": 1664813, + "version": "0.12.7" + }, + "llvmpy-0.12.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "88d20138a1187974dd80d6ade126eda2", + "name": "llvmpy", + "requires": [], + "size": 1675495, + "version": "0.12.7" + }, + "llvmpy-0.12.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.3", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "96e990843a081fce8e37ae1f5ff8c931", + "name": "llvmpy", + "requires": [], + "size": 1686829, + "version": "0.12.7" + }, + "llvmpy-0.8.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4c48ed5e367b3b1393195d48174bb132", + "name": "llvmpy", + "requires": [], + "size": 510966, + "version": "0.8.3" + }, + "llvmpy-0.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ab02b00bb7ec3ebceeb4f4bb4e084718", + "name": "llvmpy", + "requires": [], + "size": 509034, + "version": "0.8.3" + }, + "llvmpy-0.8.3.dev-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4ccd5261d88b2dd27f83e7feff2b67b8", + "name": "llvmpy", + "requires": [], + "size": 511317, + "version": "0.8.3.dev" + }, + "llvmpy-0.8.3.dev-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2a577ae210fc137142c10f4b96402ddd", + "name": "llvmpy", + "requires": [], + "size": 509116, + "version": "0.8.3.dev" + }, + "llvmpy-0.8.4.dev-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "68c6b162dcae2737004af058b4102c93", + "name": "llvmpy", + "requires": [], + "size": 511340, + "version": "0.8.4.dev" + }, + "llvmpy-0.8.4.dev-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6af00516ea18e38a1b76f2999a2087e5", + "name": "llvmpy", + "requires": [], + "size": 508468, + "version": "0.8.4.dev" + }, + "llvmpy-0.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "61153a4e5ba52224cb130e3099ebf4ce", + "name": "llvmpy", + "requires": [], + "size": 584238, + "version": "0.9" + }, + "llvmpy-0.9-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4bbfd7588fca0a4861598148c130a978", + "name": "llvmpy", + "requires": [], + "size": 636710, + "version": "0.9" + }, + "llvmpy-0.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f4953cd3a90694da0af33350e2678f05", + "name": "llvmpy", + "requires": [], + "size": 582261, + "version": "0.9" + }, + "llvmpy-0.9-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvm 3.1", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e8883fde3e851cbda59fa9310259ac19", + "name": "llvmpy", + "requires": [], + "size": 636773, + "version": "0.9" + }, + "locket-0.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "ea1a7d1bbb90dc3ca150fef39bec4d86", + "name": "locket", + "requires": [], + "size": 4617, + "version": "0.2.0" + }, + "locket-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ba393ddd30cf88a0eba6e6e2c6978dc6", + "name": "locket", + "requires": [], + "size": 4617, + "version": "0.2.0" + }, + "locket-0.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7fa95fc709e544b0ff741c5bac4f6b75", + "name": "locket", + "requires": [], + "size": 4832, + "version": "0.2.0" + }, + "locket-0.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "5a0312a7b2e8c05d0a39bc7529f1e60e", + "name": "locket", + "requires": [], + "size": 4748, + "version": "0.2.0" + }, + "locket-0.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "69e3e8cd3021a00d788c773bdd052693", + "name": "locket", + "requires": [], + "size": 4740, + "version": "0.2.0" + }, + "lockfile-0.10.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "7c082d166b2bba72f4cfc07c828e14c8", + "name": "lockfile", + "requires": [], + "size": 14300, + "version": "0.10.2" + }, + "lockfile-0.10.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5197fe4479a886373c592ebaf106c463", + "name": "lockfile", + "requires": [], + "size": 14356, + "version": "0.10.2" + }, + "lockfile-0.10.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "293e1f574987f6a57adb7bebf9044df7", + "name": "lockfile", + "requires": [], + "size": 14612, + "version": "0.10.2" + }, + "lockfile-0.10.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "e300d616646305e9bfda01d5d1b55a31", + "name": "lockfile", + "requires": [], + "size": 14632, + "version": "0.10.2" + }, + "lockfile-0.10.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "8033b17d1be2a6a53fbdf1792e70b281", + "name": "lockfile", + "requires": [], + "size": 14631, + "version": "0.10.2" + }, + "lockfile-0.12.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5c3371b7e125817aaf6071a583b98595", + "name": "lockfile", + "requires": [], + "size": 14608, + "version": "0.12.2" + }, + "lockfile-0.12.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "8d2ec41584cb0649d175c493df554698", + "name": "lockfile", + "requires": [], + "size": 14933, + "version": "0.12.2" + }, + "lockfile-0.12.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "93d302a567099b32e280a83a5dfb172d", + "name": "lockfile", + "requires": [], + "size": 14898, + "version": "0.12.2" + }, + "logilab-common-0.61.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "d12d1f2acda75d103013ea96269f31bb", + "name": "logilab-common", + "requires": [], + "size": 297420, + "version": "0.61.0" + }, + "logilab-common-0.61.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "815bcdfea3c1f5e9ef1c659ac4cb9873", + "name": "logilab-common", + "requires": [], + "size": 296821, + "version": "0.61.0" + }, + "logilab-common-0.61.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "14ace9943df59a71da2288b503fe3c50", + "name": "logilab-common", + "requires": [], + "size": 319311, + "version": "0.61.0" + }, + "logilab-common-0.61.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "4d84cea87b84fd01df9594b04002327e", + "name": "logilab-common", + "requires": [], + "size": 314537, + "version": "0.61.0" + }, + "logilab-common-0.62.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "744e3ae4236a880c19fd4fe11109f741", + "name": "logilab-common", + "requires": [], + "size": 297420, + "version": "0.62.1" + }, + "logilab-common-0.62.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "a4e65a6ee256911aebfba3d6d6c1ee55", + "name": "logilab-common", + "requires": [], + "size": 297401, + "version": "0.62.1" + }, + "logilab-common-0.62.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "067204b590b2ea4bfcc6f67343a142df", + "name": "logilab-common", + "requires": [], + "size": 297240, + "version": "0.62.1" + }, + "logilab-common-0.62.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "fcefe09a9fe1517b1228cc4374b8a02a", + "name": "logilab-common", + "requires": [], + "size": 296933, + "version": "0.62.1" + }, + "logilab-common-0.62.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "7d0998ce681c0ea65f6552bea53807cf", + "name": "logilab-common", + "requires": [], + "size": 319401, + "version": "0.62.1" + }, + "logilab-common-0.62.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "aa64c5729df321fa9b6926dbac28a721", + "name": "logilab-common", + "requires": [], + "size": 319291, + "version": "0.62.1" + }, + "logilab-common-0.62.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "c1720427c351cab4fb38c00b17a81f61", + "name": "logilab-common", + "requires": [], + "size": 314607, + "version": "0.62.1" + }, + "logilab-common-0.62.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "86cb238135bb805148dae93f96daa380", + "name": "logilab-common", + "requires": [], + "size": 314758, + "version": "0.62.1" + }, + "logilab-common-0.63.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "python 2.7*", + "six" + ], + "license": "LGPL", + "md5": "e1432c399c957999339f102925096575", + "name": "logilab-common", + "requires": [], + "size": 292619, + "version": "0.63.2" + }, + "logilab-common-0.63.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "python 3.3*", + "six" + ], + "license": "LGPL", + "md5": "a55763d0c1421900942480c62839e59d", + "name": "logilab-common", + "requires": [], + "size": 313059, + "version": "0.63.2" + }, + "logilab-common-0.63.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "python 3.4*", + "six" + ], + "license": "LGPL", + "md5": "67e848a97245adf73359ac340eb38beb", + "name": "logilab-common", + "requires": [], + "size": 308815, + "version": "0.63.2" + }, + "logilab-common-0.63.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "six" + ], + "license": "LGPL", + "md5": "3be130a1ace72c1a8974e744e6190d06", + "name": "logilab-common", + "requires": [], + "size": 308007, + "version": "0.63.2" + }, + "logilab-common-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 2.7*", + "setuptools", + "six" + ], + "license": "LGPL", + "md5": "d1e7590bf5d4718d54120d954af6f3ca", + "name": "logilab-common", + "requires": [], + "size": 202357, + "version": "1.0.2" + }, + "logilab-common-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.4*", + "setuptools", + "six" + ], + "license": "LGPL", + "md5": "3941e9d91c6a2106480d6cc03b07eb30", + "name": "logilab-common", + "requires": [], + "size": 204573, + "version": "1.0.2" + }, + "logilab-common-1.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.5*", + "setuptools", + "six" + ], + "license": "LGPL", + "md5": "2dd8db645b8250c6787f48baee59b32a", + "name": "logilab-common", + "requires": [], + "size": 203923, + "version": "1.0.2" + }, + "luigi-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "cached-property", + "pyparsing", + "python 2.7*", + "python-daemon", + "tornado" + ], + "license": "Apache Software License", + "license_family": "Apache", + "md5": "b97e946ae760bb920458366f0551e9e5", + "name": "luigi", + "requires": [], + "size": 460162, + "version": "1.2.1" + }, + "luigi-1.2.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-02-23", + "depends": [ + "cached-property", + "pyparsing", + "python 2.7*", + "python-daemon", + "setuptools", + "tornado" + ], + "license": "Apache Software License", + "license_family": "Apache", + "md5": "9f035e45c8855517061dcd98c78872fb", + "name": "luigi", + "requires": [], + "size": 464151, + "version": "1.2.1" + }, + "luigi-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "cached-property", + "pyparsing", + "python 3.4*", + "python-daemon", + "tornado" + ], + "license": "Apache Software License", + "license_family": "Apache", + "md5": "c2b62796461cbf3fef4506c42990e6d4", + "name": "luigi", + "requires": [], + "size": 467299, + "version": "1.2.1" + }, + "luigi-1.2.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-02-23", + "depends": [ + "cached-property", + "pyparsing", + "python 3.4*", + "python-daemon", + "setuptools", + "tornado" + ], + "license": "Apache Software License", + "license_family": "Apache", + "md5": "2a7347bc24bdbcd3ce06f61c033b4561", + "name": "luigi", + "requires": [], + "size": 469721, + "version": "1.2.1" + }, + "luigi-1.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "cached-property", + "pyparsing", + "python 3.5*", + "python-daemon", + "tornado" + ], + "license": "Apache Software License", + "license_family": "Apache", + "md5": "df05e7e214606ce915a165e050b8a640", + "name": "luigi", + "requires": [], + "size": 465030, + "version": "1.2.1" + }, + "luigi-1.2.1-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-02-23", + "depends": [ + "cached-property", + "pyparsing", + "python 3.5*", + "python-daemon", + "setuptools", + "tornado" + ], + "license": "Apache Software License", + "license_family": "Apache", + "md5": "c2168d46ca27e8dac37bb314f888522b", + "name": "luigi", + "requires": [], + "size": 466807, + "version": "1.2.1" + }, + "lxml-3.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "7dcabbbcab41ca493ec2a8f3e539472a", + "name": "lxml", + "requires": [], + "size": 2110918, + "version": "3.0.2" + }, + "lxml-3.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "fc128a4fa4ff03cb85438edd1e16e4e1", + "name": "lxml", + "requires": [], + "size": 2110886, + "version": "3.0.2" + }, + "lxml-3.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "170dac2d1fd2d80e2302c6fb9aaae214", + "name": "lxml", + "requires": [], + "size": 2117364, + "version": "3.0.2" + }, + "lxml-3.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "a4b39a8d456fb6e1a8ebce4464cb32b1", + "name": "lxml", + "requires": [], + "size": 2183377, + "version": "3.1.2" + }, + "lxml-3.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "4de2a42dfa798d84af7127a5fba1852f", + "name": "lxml", + "requires": [], + "size": 2183820, + "version": "3.1.2" + }, + "lxml-3.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "c44d4da09ea76243b73883317754a233", + "name": "lxml", + "requires": [], + "size": 2175258, + "version": "3.1.2" + }, + "lxml-3.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "558d36cf4e66403041f3503ae5a90fbf", + "name": "lxml", + "requires": [], + "size": 2309114, + "version": "3.2.0" + }, + "lxml-3.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "9d3f5f905d35a80b6dd4a962a3dfaf59", + "name": "lxml", + "requires": [], + "size": 2306996, + "version": "3.2.0" + }, + "lxml-3.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "9a11d8d9bbb43612c2990cc14c520750", + "name": "lxml", + "requires": [], + "size": 2267566, + "version": "3.2.0" + }, + "lxml-3.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "ae5c6b45ecaf1ee72443ac5688ed6317", + "name": "lxml", + "requires": [], + "size": 2302655, + "version": "3.2.1" + }, + "lxml-3.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "77bee6f3fffb166c332d2c229de7724c", + "name": "lxml", + "requires": [], + "size": 2304874, + "version": "3.2.1" + }, + "lxml-3.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "91aad6fb669830e1a538a1a26a558a2a", + "name": "lxml", + "requires": [], + "size": 2253704, + "version": "3.2.1" + }, + "lxml-3.2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "58e112138627f1ea64dc8b3cc0535cb0", + "name": "lxml", + "requires": [], + "size": 2273307, + "version": "3.2.3" + }, + "lxml-3.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "f91ff91085736b5d3c9fb4f107ce7d04", + "name": "lxml", + "requires": [], + "size": 2274633, + "version": "3.2.3" + }, + "lxml-3.2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "25444468568c2967f58a167504ce8719", + "name": "lxml", + "requires": [], + "size": 2229881, + "version": "3.2.3" + }, + "lxml-3.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "50d032e4d4728d004158933d993089df", + "name": "lxml", + "requires": [], + "size": 2601347, + "version": "3.3.1" + }, + "lxml-3.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "3038bdca69944c790a4c416d54e60179", + "name": "lxml", + "requires": [], + "size": 2605659, + "version": "3.3.1" + }, + "lxml-3.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "9d954f78ff3f368121929fefc628722a", + "name": "lxml", + "requires": [], + "size": 2703934, + "version": "3.3.1" + }, + "lxml-3.3.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "6eab9af4a9e8c34a0ef51b96978fa12f", + "name": "lxml", + "requires": [], + "size": 2615942, + "version": "3.3.4" + }, + "lxml-3.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "7e0a51ae060dd6350ef477c2812d0387", + "name": "lxml", + "requires": [], + "size": 2617489, + "version": "3.3.4" + }, + "lxml-3.3.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "24b10d645223d3008c81a99816d1949a", + "name": "lxml", + "requires": [], + "size": 2715388, + "version": "3.3.4" + }, + "lxml-3.3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "f41f8aaac82350fff26238663b1043ec", + "name": "lxml", + "requires": [], + "size": 3033268, + "version": "3.3.4" + }, + "lxml-3.3.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "1a8a0aca67dbdca8a6f5328093efbfc2", + "name": "lxml", + "requires": [], + "size": 2615307, + "version": "3.3.5" + }, + "lxml-3.3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "0b6cbd4a3a344a7871df09a2195d5bba", + "name": "lxml", + "requires": [], + "size": 2617416, + "version": "3.3.5" + }, + "lxml-3.3.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "4d03f4df7a5e3714fb40d56b3ae79165", + "name": "lxml", + "requires": [], + "size": 2713947, + "version": "3.3.5" + }, + "lxml-3.3.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "5d584dcbece62a0238e425f6dea7852b", + "name": "lxml", + "requires": [], + "size": 3033564, + "version": "3.3.5" + }, + "lxml-3.3.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "81e6d3971bdcac62ae3ed10e10f16c49", + "name": "lxml", + "requires": [], + "size": 2681035, + "version": "3.3.6" + }, + "lxml-3.3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "c864c26f33a0e8a5e53045609a9befd3", + "name": "lxml", + "requires": [], + "size": 2681228, + "version": "3.3.6" + }, + "lxml-3.3.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "f65c4404e92cc1983dbba8529f47e2bd", + "name": "lxml", + "requires": [], + "size": 2792936, + "version": "3.3.6" + }, + "lxml-3.3.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "11f03d642c5689ccef34462121788d08", + "name": "lxml", + "requires": [], + "size": 3154116, + "version": "3.3.6" + }, + "lxml-3.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "1189de332cc370fe1ac789e72e911e90", + "name": "lxml", + "requires": [], + "size": 2836945, + "version": "3.4.0" + }, + "lxml-3.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "a6b060cc8a2016ef72222c7c522bc685", + "name": "lxml", + "requires": [], + "size": 2833468, + "version": "3.4.0" + }, + "lxml-3.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "943704dcbb05d659f2e42a4bcea8ada6", + "name": "lxml", + "requires": [], + "size": 2962810, + "version": "3.4.0" + }, + "lxml-3.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "35133c923970ae40c3383e6dedd0485b", + "name": "lxml", + "requires": [], + "size": 3386268, + "version": "3.4.0" + }, + "lxml-3.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "f794c47321533b9a2b9894f64c7e9146", + "name": "lxml", + "requires": [], + "size": 2831737, + "version": "3.4.1" + }, + "lxml-3.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "d6fcea76d10f8c4948bc451d78df4989", + "name": "lxml", + "requires": [], + "size": 2833647, + "version": "3.4.1" + }, + "lxml-3.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "65b2adc75475076904a31f26a3227a0f", + "name": "lxml", + "requires": [], + "size": 2965740, + "version": "3.4.1" + }, + "lxml-3.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-21", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "1c61df17eb56364c54d59ac0cfd73bd7", + "name": "lxml", + "requires": [], + "size": 3380804, + "version": "3.4.1" + }, + "lxml-3.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-13", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "524897a2db166b7bb799c02610b4e879", + "name": "lxml", + "requires": [], + "size": 2834029, + "version": "3.4.2" + }, + "lxml-3.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-13", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "b348df32963111c16c2005f376f96d3c", + "name": "lxml", + "requires": [], + "size": 2836819, + "version": "3.4.2" + }, + "lxml-3.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-13", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "350b0e296dd41e1d29f79fac9998c89b", + "name": "lxml", + "requires": [], + "size": 2960896, + "version": "3.4.2" + }, + "lxml-3.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-13", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "34fed744dd8ac44d7db2ea4bab3b64f1", + "name": "lxml", + "requires": [], + "size": 3379089, + "version": "3.4.2" + }, + "lxml-3.4.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "134d42090ca5c3b8767ea864fd69872e", + "name": "lxml", + "requires": [], + "size": 2836507, + "version": "3.4.3" + }, + "lxml-3.4.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "34bc251ffecccd2b4f63ba9642a908f3", + "name": "lxml", + "requires": [], + "size": 2836610, + "version": "3.4.3" + }, + "lxml-3.4.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "5313d9a52821d409f968643c4040e999", + "name": "lxml", + "requires": [], + "size": 2963648, + "version": "3.4.3" + }, + "lxml-3.4.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "6e925d480d29f94a2feeca64f43272c2", + "name": "lxml", + "requires": [], + "size": 3382128, + "version": "3.4.3" + }, + "lxml-3.4.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.6*" + ], + "license": "BSD", + "md5": "1cdc820b8fa51c1744128e2d2c81ecac", + "name": "lxml", + "requires": [], + "size": 2836490, + "version": "3.4.4" + }, + "lxml-3.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "86ffca191db3b3307cdbf39ead179cbe", + "name": "lxml", + "requires": [], + "size": 2837812, + "version": "3.4.4" + }, + "lxml-3.4.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.3*" + ], + "license": "BSD", + "md5": "47681ed59955c442417b64cd4934c31e", + "name": "lxml", + "requires": [], + "size": 2962031, + "version": "3.4.4" + }, + "lxml-3.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "f452562f3c5f19dc9bb165d77af83455", + "name": "lxml", + "requires": [], + "size": 3381374, + "version": "3.4.4" + }, + "lxml-3.4.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.5*" + ], + "license": "BSD", + "md5": "89babe7b41b49118218ebda3bf92a2ed", + "name": "lxml", + "requires": [], + "size": 3383558, + "version": "3.4.4" + }, + "lxml-3.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "df8650dd9f46d4b50b95d59819aa9185", + "name": "lxml", + "requires": [], + "size": 3387698, + "version": "3.5.0" + }, + "lxml-3.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "abbc7a747c23f4d34355306adbd7fe36", + "name": "lxml", + "requires": [], + "size": 4093123, + "version": "3.5.0" + }, + "lxml-3.5.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.5*" + ], + "license": "BSD", + "md5": "381f9782e74697fcb52d326e1233d0a7", + "name": "lxml", + "requires": [], + "size": 3749082, + "version": "3.5.0" + }, + "lxml-3.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 2.7*" + ], + "license": "BSD", + "md5": "b65377846b3606327ced14b1743fc36e", + "name": "lxml", + "requires": [], + "size": 2911915, + "version": "3.6.0" + }, + "lxml-3.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.4*" + ], + "license": "BSD", + "md5": "57969dd26f4a7ecb875d9dd1c3fb7dff", + "name": "lxml", + "requires": [], + "size": 3480035, + "version": "3.6.0" + }, + "lxml-3.6.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "libxml2 2.9*", + "libxslt 1.1.28", + "python 3.5*" + ], + "license": "BSD", + "md5": "5d70c26e50b38e0b5a4b90854497f67d", + "name": "lxml", + "requires": [], + "size": 3338357, + "version": "3.6.0" + }, + "lz4-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f0492177a998718f9b423afe99bc70f9", + "name": "lz4", + "requires": [], + "size": 47504, + "version": "0.7.0" + }, + "lz4-0.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "06d88fd52181b5a65ae208fe47f98767", + "name": "lz4", + "requires": [], + "size": 48152, + "version": "0.7.0" + }, + "lz4-0.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "cadf125692ca3b8b22ec8af26b215249", + "name": "lz4", + "requires": [], + "size": 48332, + "version": "0.7.0" + }, + "lzo-2.06-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "GPL", + "license_family": "GPL2", + "md5": "3b09edce961f11128ca6a63df59c8f8f", + "name": "lzo", + "requires": [], + "size": 51558, + "version": "2.06" + }, + "mako-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "markupsafe", + "python 2.7*" + ], + "license": "MIT", + "md5": "2b4fa26a1156155c2f3d4e7f05bad10a", + "name": "mako", + "requires": [], + "size": 107071, + "version": "1.0.1" + }, + "mako-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "markupsafe", + "python 3.4*" + ], + "license": "MIT", + "md5": "5ea8f2aed57c888a2b286a6a952897ff", + "name": "mako", + "requires": [], + "size": 111235, + "version": "1.0.1" + }, + "mako-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "markupsafe >=0.9.2", + "python 2.7*" + ], + "license": "MIT", + "md5": "11421ac8f9b9060da46b9bdd22f8220d", + "name": "mako", + "requires": [], + "size": 106005, + "version": "1.0.2" + }, + "mako-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "markupsafe >=0.9.2", + "python 3.4*" + ], + "license": "MIT", + "md5": "53db3fac3c900b53133fcf753989acb0", + "name": "mako", + "requires": [], + "size": 110040, + "version": "1.0.2" + }, + "mako-1.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "markupsafe >=0.9.2", + "python 3.5*" + ], + "license": "MIT", + "md5": "cb480082c56fdee8e9de1e31567b8ba3", + "name": "mako", + "requires": [], + "size": 109574, + "version": "1.0.2" + }, + "mako-1.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "markupsafe >=0.9.2", + "python 2.7*" + ], + "license": "MIT", + "md5": "41eacba5e78cf24ac9baaa9ae4b915da", + "name": "mako", + "requires": [], + "size": 107640, + "version": "1.0.3" + }, + "mako-1.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "markupsafe >=0.9.2", + "python 3.4*" + ], + "license": "MIT", + "md5": "e8b96ff97369739a72d1610a859aa4aa", + "name": "mako", + "requires": [], + "size": 111555, + "version": "1.0.3" + }, + "mako-1.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "markupsafe >=0.9.2", + "python 3.5*" + ], + "license": "MIT", + "md5": "400a3a1b4cbe28d4c98495494a373c81", + "name": "mako", + "requires": [], + "size": 111270, + "version": "1.0.3" + }, + "mako-1.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "markupsafe >=0.9.2", + "python 2.7*" + ], + "license": "MIT", + "md5": "46ad606362a3786f6924d30cb3bcbbec", + "name": "mako", + "requires": [], + "size": 109133, + "version": "1.0.4" + }, + "mako-1.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "markupsafe >=0.9.2", + "python 3.4*" + ], + "license": "MIT", + "md5": "7267a3b378f7e40ad304b1f9661ba2cd", + "name": "mako", + "requires": [], + "size": 113245, + "version": "1.0.4" + }, + "mako-1.0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "markupsafe >=0.9.2", + "python 3.5*" + ], + "license": "MIT", + "md5": "14d3e3abccb687320bcf2b6d62f1007e", + "name": "mako", + "requires": [], + "size": 112609, + "version": "1.0.4" + }, + "markdown-2.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "52f45e40b67bd27cb247b46fb0f11817", + "name": "markdown", + "requires": [], + "size": 81670, + "version": "2.3.1" + }, + "markdown-2.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "67ca6cc9e9a0e61a833b553b860214c3", + "name": "markdown", + "requires": [], + "size": 81708, + "version": "2.3.1" + }, + "markdown-2.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "607d388f4dd79ad9b2fa7cce4cc8831f", + "name": "markdown", + "requires": [], + "size": 83347, + "version": "2.3.1" + }, + "markdown-2.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "cabf1774b060b76fb780eea3f655cc6a", + "name": "markdown", + "requires": [], + "size": 84383, + "version": "2.3.1" + }, + "markdown-2.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "3f8270af1cd25f96a22569b15d605baa", + "name": "markdown", + "requires": [], + "size": 90488, + "version": "2.4" + }, + "markdown-2.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d39cc70a9fc8adf02865eed798fb166f", + "name": "markdown", + "requires": [], + "size": 90574, + "version": "2.4" + }, + "markdown-2.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e63f2e5b25e78816e06ee453d48c0e9f", + "name": "markdown", + "requires": [], + "size": 92287, + "version": "2.4" + }, + "markdown-2.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1699cf634da1f3b6d5306ed6d7274943", + "name": "markdown", + "requires": [], + "size": 93167, + "version": "2.4" + }, + "markdown-2.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "dacb395a0194d5e52fd28c33cd3b3148", + "name": "markdown", + "requires": [], + "size": 89427, + "version": "2.4.1" + }, + "markdown-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "fbfb574d93ef33fce6441c7dd79ffbb1", + "name": "markdown", + "requires": [], + "size": 89595, + "version": "2.4.1" + }, + "markdown-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "8936457f7c5b8ee393cf8c2762587dae", + "name": "markdown", + "requires": [], + "size": 91349, + "version": "2.4.1" + }, + "markdown-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "bbb3bb5bebb1d469b2c7c29a4b36d1a4", + "name": "markdown", + "requires": [], + "size": 92118, + "version": "2.4.1" + }, + "markdown-2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3afd898652ec9821b4abecfd070e7d02", + "name": "markdown", + "requires": [], + "size": 89009, + "version": "2.5" + }, + "markdown-2.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7f322bb6b83e278481f1fe514f7bc258", + "name": "markdown", + "requires": [], + "size": 90724, + "version": "2.5" + }, + "markdown-2.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "fb96984d1fbf3f2fa7cda63830badbe3", + "name": "markdown", + "requires": [], + "size": 91461, + "version": "2.5" + }, + "markdown-2.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-24", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "5559d6ecab19d20eaa4e1044dcfb16d9", + "name": "markdown", + "requires": [], + "size": 89191, + "version": "2.5.2" + }, + "markdown-2.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-24", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "bac053d9b3b54dc88d384398fb6386ac", + "name": "markdown", + "requires": [], + "size": 90996, + "version": "2.5.2" + }, + "markdown-2.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-24", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "52e9343429c07c7797cecfe386fc09a1", + "name": "markdown", + "requires": [], + "size": 91583, + "version": "2.5.2" + }, + "markdown-2.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0f632f2f606d8fbdcd08398231ae67ec", + "name": "markdown", + "requires": [], + "size": 90403, + "version": "2.6" + }, + "markdown-2.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a5b79e44d2d566e0e8fe0d7cc76a36e5", + "name": "markdown", + "requires": [], + "size": 92320, + "version": "2.6" + }, + "markdown-2.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3217571a8586c8d71e632dea5510473f", + "name": "markdown", + "requires": [], + "size": 92810, + "version": "2.6" + }, + "markdown-2.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3e1bc9486f8beaf2a7445a110f6bb783", + "name": "markdown", + "requires": [], + "size": 89943, + "version": "2.6.1" + }, + "markdown-2.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "ee713b148ed401a2a091c43cd98c0405", + "name": "markdown", + "requires": [], + "size": 91841, + "version": "2.6.1" + }, + "markdown-2.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "01dd15686b5abb5c3cb8d7fbf1f79085", + "name": "markdown", + "requires": [], + "size": 92414, + "version": "2.6.1" + }, + "markdown-2.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "003bcba434e698c2e506dfefc4f0306f", + "name": "markdown", + "requires": [], + "size": 89691, + "version": "2.6.2" + }, + "markdown-2.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "1a5495609a5c8fd0e526399f3fd8b490", + "name": "markdown", + "requires": [], + "size": 91701, + "version": "2.6.2" + }, + "markdown-2.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "01e1b17eaae58994f736a2aef4be2738", + "name": "markdown", + "requires": [], + "size": 92218, + "version": "2.6.2" + }, + "markdown-2.6.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "07b870559c18af4d388b6c192f7aa4e3", + "name": "markdown", + "requires": [], + "size": 91851, + "version": "2.6.2" + }, + "markdown-2.6.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d7a2693a90ae96085fc80967e5f61ba0", + "name": "markdown", + "requires": [], + "size": 90747, + "version": "2.6.5" + }, + "markdown-2.6.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "902755cfeaf93e87a59d2dda79d14c6a", + "name": "markdown", + "requires": [], + "size": 93463, + "version": "2.6.5" + }, + "markdown-2.6.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "bb05a13f81fb2c42ba9acdcfa0ad242f", + "name": "markdown", + "requires": [], + "size": 93035, + "version": "2.6.5" + }, + "markdown-2.6.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7cea50585f380a5097841d1e84040ada", + "name": "markdown", + "requires": [], + "size": 91316, + "version": "2.6.6" + }, + "markdown-2.6.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8febe4e53df9619cabe9705d171f0e73", + "name": "markdown", + "requires": [], + "size": 94049, + "version": "2.6.6" + }, + "markdown-2.6.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "299c929e02e198c7051b399688644fd5", + "name": "markdown", + "requires": [], + "size": 93584, + "version": "2.6.6" + }, + "markdown2-2.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "fae79141a40fab9ec040dabdb79f152d", + "name": "markdown2", + "requires": [], + "size": 44562, + "version": "2.3.0" + }, + "markdown2-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "131ce3e0df12dd9167143c4a148626ef", + "name": "markdown2", + "requires": [], + "size": 44587, + "version": "2.3.0" + }, + "markdown2-2.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "b54ba4f6d3dac1b2ac51de71d8911816", + "name": "markdown2", + "requires": [], + "size": 45483, + "version": "2.3.0" + }, + "markdown2-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "d4e434a065bc1d0972819d7a907998a6", + "name": "markdown2", + "requires": [], + "size": 45570, + "version": "2.3.0" + }, + "markdown2-2.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "70212d69ca4722e913106071f4e385cd", + "name": "markdown2", + "requires": [], + "size": 45071, + "version": "2.3.0" + }, + "markdown2-2.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "43228d42c067aaa0d8e6e2206b644ce6", + "name": "markdown2", + "requires": [], + "size": 46092, + "version": "2.3.1" + }, + "markdown2-2.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "d92d30c854937cf193893368ca8265cb", + "name": "markdown2", + "requires": [], + "size": 46970, + "version": "2.3.1" + }, + "markdown2-2.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "4ce6fea6bbdb70aa9535d327cdf8539e", + "name": "markdown2", + "requires": [], + "size": 46752, + "version": "2.3.1" + }, + "markupsafe-0.18-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c8a1bfc2231bbf4e288383912f84f5f0", + "name": "markupsafe", + "requires": [], + "size": 26462, + "version": "0.18" + }, + "markupsafe-0.18-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2eeb36f0857d3581dde2c160c315701e", + "name": "markupsafe", + "requires": [], + "size": 26565, + "version": "0.18" + }, + "markupsafe-0.18-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "93c49c1b5902debf9faab08030a3790a", + "name": "markupsafe", + "requires": [], + "size": 28066, + "version": "0.18" + }, + "markupsafe-0.18-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "67a45510c7dac68522c93853f0c1b769", + "name": "markupsafe", + "requires": [], + "size": 28478, + "version": "0.18" + }, + "markupsafe-0.23-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "bb5a5286a2f61e878100eb216a212a82", + "name": "markupsafe", + "requires": [], + "size": 30368, + "version": "0.23" + }, + "markupsafe-0.23-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0ccff5a967d78d5193aa92ed561c539b", + "name": "markupsafe", + "requires": [], + "size": 30425, + "version": "0.23" + }, + "markupsafe-0.23-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d1bc3dccc138845c4cc91640014941ac", + "name": "markupsafe", + "requires": [], + "size": 32052, + "version": "0.23" + }, + "markupsafe-0.23-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "5779eb4e3a2c4b576a403ac969d8d151", + "name": "markupsafe", + "requires": [], + "size": 32154, + "version": "0.23" + }, + "markupsafe-0.23-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "573784492065d6e4e2181754ff8756aa", + "name": "markupsafe", + "requires": [], + "size": 32070, + "version": "0.23" + }, + "mathjax-2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "530a28ae48472c733a6ac8466b219a1a", + "name": "mathjax", + "requires": [], + "size": 7491567, + "version": "2.2" + }, + "mathjax-2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "e4ed64521e94231bfe9eee65c55c1eaf", + "name": "mathjax", + "requires": [], + "size": 7490988, + "version": "2.2" + }, + "mathjax-2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "9c1153763930be2fc6e1bc4a4366afbd", + "name": "mathjax", + "requires": [], + "size": 7491016, + "version": "2.2" + }, + "mathjax-2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "e3dbe517cde28a4023dc658d403b8c76", + "name": "mathjax", + "requires": [], + "size": 7490733, + "version": "2.2" + }, + "mathjax-2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "e50b7e35628d5e938af43fa0e5bf751a", + "name": "mathjax", + "requires": [], + "size": 7491447, + "version": "2.2" + }, + "matplotlib-1.1.1-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.5*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "906621db7a9df71a4c85f50844db9dcb", + "name": "matplotlib", + "requires": [], + "size": 29333618, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np15py26_1.tar.bz2": { + "build": "np15py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.5*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "4454d97bba2077895908b8e6db154dd6", + "name": "matplotlib", + "requires": [], + "size": 29423636, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np15py26_2.tar.bz2": { + "build": "np15py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.5*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "6f059fede2c440a6bc40e3beb5d0a6fd", + "name": "matplotlib", + "requires": [], + "size": 29423639, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.5*", + "py2cairo 1.10.0", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "8b0f210645bcd9fe99a03623508ed8a4", + "name": "matplotlib", + "requires": [], + "size": 29329112, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np15py27_1.tar.bz2": { + "build": "np15py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.5*", + "py2cairo 1.10.0", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "befea3c55777c380a8590dcc9ae0fdff", + "name": "matplotlib", + "requires": [], + "size": 29425670, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np15py27_2.tar.bz2": { + "build": "np15py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.5*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "2cd4f35dc0736d2e749ed926ec3f64ff", + "name": "matplotlib", + "requires": [], + "size": 29418639, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "284661d2a30cd79f3fecf16f3497cb0d", + "name": "matplotlib", + "requires": [], + "size": 29335664, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "ea6161bdb1085c29bbb012f4057c4746", + "name": "matplotlib", + "requires": [], + "size": 29424884, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np16py26_2.tar.bz2": { + "build": "np16py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "8757a7d9dcbf5bd61f9f9e838b6e5757", + "name": "matplotlib", + "requires": [], + "size": 29423039, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "6f89433c707d92844f1bd6182bbd6e98", + "name": "matplotlib", + "requires": [], + "size": 29330658, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "6730e960d372e29f13c0133f24f756e5", + "name": "matplotlib", + "requires": [], + "size": 29424939, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np16py27_2.tar.bz2": { + "build": "np16py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "be5e36a869c3d038c589881b586909f3", + "name": "matplotlib", + "requires": [], + "size": 29418563, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "438e01444ed3d359b7bddeaba6ec0dbf", + "name": "matplotlib", + "requires": [], + "size": 29336229, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "0c3b1f51c765aebd4b76efe2164cba18", + "name": "matplotlib", + "requires": [], + "size": 29423579, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np17py26_2.tar.bz2": { + "build": "np17py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "4bd26b5a78f20546d2b8d972d19152dc", + "name": "matplotlib", + "requires": [], + "size": 29425163, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "c4d4fd35d1602ad5ff39d9bb90e164d3", + "name": "matplotlib", + "requires": [], + "size": 29331040, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "98416a67ffbba6e44b8e203098f39546", + "name": "matplotlib", + "requires": [], + "size": 29428397, + "version": "1.1.1" + }, + "matplotlib-1.1.1-np17py27_2.tar.bz2": { + "build": "np17py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "24c23f6eddcea1aa8706025b4dd86b93", + "name": "matplotlib", + "requires": [], + "size": 29420487, + "version": "1.1.1" + }, + "matplotlib-1.2.0-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.5*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "2283c2cf9c28d2c5a8602fdec30a5f85", + "name": "matplotlib", + "requires": [], + "size": 32096238, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np15py26_1.tar.bz2": { + "build": "np15py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.5*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "c1650e445d58a0c8945be7f477b86437", + "name": "matplotlib", + "requires": [], + "size": 32236909, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.5*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "b57f0211a2b68bedc75e9ebe6d7262ae", + "name": "matplotlib", + "requires": [], + "size": 32052385, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np15py27_1.tar.bz2": { + "build": "np15py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.5*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "6f0a3024b2108374e4d341ed2374b06f", + "name": "matplotlib", + "requires": [], + "size": 32230276, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "a5d30c5decfc908c8b199950206b43f6", + "name": "matplotlib", + "requires": [], + "size": 32097542, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "a7c4805f152b731d341e5f1c654fcd97", + "name": "matplotlib", + "requires": [], + "size": 32236572, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "c865a9106bcde2eb93106f16857e0695", + "name": "matplotlib", + "requires": [], + "size": 32051387, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "be57c5a17bf694b5feca6c53cd6ff329", + "name": "matplotlib", + "requires": [], + "size": 32230240, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "c9948cac9451ce972c373f062abaecb8", + "name": "matplotlib", + "requires": [], + "size": 32100265, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "d756c0658fa1e1db872efb525ba14739", + "name": "matplotlib", + "requires": [], + "size": 32235234, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "25068542472c1a5684688a2a5befb351", + "name": "matplotlib", + "requires": [], + "size": 32055887, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "91c0666f19dd74dece639073484cf334", + "name": "matplotlib", + "requires": [], + "size": 32233425, + "version": "1.2.0" + }, + "matplotlib-1.2.0-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "5cb8f0169bd1c25f173f076b5f16d006", + "name": "matplotlib", + "requires": [], + "size": 32426451, + "version": "1.2.0" + }, + "matplotlib-1.2.1-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.5*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "44631fc44698df1c6c3ed53976625645", + "name": "matplotlib", + "requires": [], + "size": 33764260, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.5*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "ec9634083f6ed534920ef765704789b2", + "name": "matplotlib", + "requires": [], + "size": 33795363, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "f25f5b7384d844400f68c0a4bbdaacf6", + "name": "matplotlib", + "requires": [], + "size": 33766299, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "1060fc6e4db2d73a4a69f3b3a60f6e9c", + "name": "matplotlib", + "requires": [], + "size": 33765305, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "2454943aebd16e324cfb0a3311353d25", + "name": "matplotlib", + "requires": [], + "size": 33795243, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "38ea6f7cf131ad06f9515fc4f93d87f0", + "name": "matplotlib", + "requires": [], + "size": 33796006, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "e23826ae166438db3ba2a276f0544985", + "name": "matplotlib", + "requires": [], + "size": 33766432, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "e4883be780d0cb038ec34464729eba1d", + "name": "matplotlib", + "requires": [], + "size": 33765757, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "e5f1ceb91c3a331a7de7be11e6043c7c", + "name": "matplotlib", + "requires": [], + "size": 33795757, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyside 1.1.2", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "16b661825c50e65ee453b808d0bbf49c", + "name": "matplotlib", + "requires": [], + "size": 33794137, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "e36f811675589c82d2e92bc99312f46d", + "name": "matplotlib", + "requires": [], + "size": 34008326, + "version": "1.2.1" + }, + "matplotlib-1.2.1-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "a12c221e2045482318da1a089bb62b79", + "name": "matplotlib", + "requires": [], + "size": 34008861, + "version": "1.2.1" + }, + "matplotlib-1.3.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyparsing 1.5.6", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "dd23b3a8a3921b9faa981dd050cd4a85", + "name": "matplotlib", + "requires": [], + "size": 38790846, + "version": "1.3.0" + }, + "matplotlib-1.3.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyparsing 1.5.6", + "pyside 1.2.1", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "5a0211382c81e72fbdee392fa07f8e03", + "name": "matplotlib", + "requires": [], + "size": 38758848, + "version": "1.3.0" + }, + "matplotlib-1.3.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyparsing 1.5.6", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "efc28c7ea460d222ea0d41f9cad1c68f", + "name": "matplotlib", + "requires": [], + "size": 38795777, + "version": "1.3.0" + }, + "matplotlib-1.3.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyparsing 1.5.6", + "pyside 1.2.1", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "cab0c48851d34ff0dc5373014a120ea3", + "name": "matplotlib", + "requires": [], + "size": 38765986, + "version": "1.3.0" + }, + "matplotlib-1.3.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "pyparsing 1.5.6", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "42d61dfa5a223aec8fdae788af6bf755", + "name": "matplotlib", + "requires": [], + "size": 38870965, + "version": "1.3.0" + }, + "matplotlib-1.3.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyparsing 1.5.6", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "30d4d69bc731edd1d975a89533681553", + "name": "matplotlib", + "requires": [], + "size": 38882661, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.6*", + "py2cairo 1.10.0", + "pyparsing 1.5.6", + "pyside 1.2.1", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "330a4db4e94f7b1820f4c70d0336c138", + "name": "matplotlib", + "requires": [], + "size": 38883343, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyparsing 1.5.6", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "8e0857bb1a22099e48d1296f6d6e0a03", + "name": "matplotlib", + "requires": [], + "size": 38884171, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "py2cairo 1.10.0", + "pyparsing 1.5.6", + "pyside 1.2.1", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "77fd828da6b3458eabb3850169f6e340", + "name": "matplotlib", + "requires": [], + "size": 38884464, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.7*", + "pyparsing 1.5.6", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "0ebc2b1a88457c04b232e0f84af135ce", + "name": "matplotlib", + "requires": [], + "size": 39012550, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "9d0bd723aff67ea60ad6becb01955623", + "name": "matplotlib", + "requires": [], + "size": 38884745, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np18py26_1.tar.bz2": { + "build": "np18py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "1c09c1c702466604a707cef358e444f8", + "name": "matplotlib", + "requires": [], + "size": 38788625, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyside 1.2.1", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "d34da390d0339ef9cd23c66dd3fd3597", + "name": "matplotlib", + "requires": [], + "size": 38885226, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "7100f8cf7665b97294961e2429fccbf0", + "name": "matplotlib", + "requires": [], + "size": 38883354, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "pyparsing 2.0.1", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "8cfeb5f9a69a99e3fdce4c3707d90fb3", + "name": "matplotlib", + "requires": [], + "size": 39091353, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "pyparsing 2.0.1", + "pyqt", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "e9f6cf76bef715ebdedb9f863a0d7ce3", + "name": "matplotlib", + "requires": [], + "size": 39018914, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "pyparsing 2.0.1", + "python 3.4*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "522f5bb3b6cc1e4852892c45efda5187", + "name": "matplotlib", + "requires": [], + "size": 39115798, + "version": "1.3.1" + }, + "matplotlib-1.3.1-np18py34_1.tar.bz2": { + "build": "np18py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "pyparsing 2.0.1", + "pyqt", + "python 3.4*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "ab3c1bc983c166bca0199ac6f8ba4674", + "name": "matplotlib", + "requires": [], + "size": 39116911, + "version": "1.3.1" + }, + "matplotlib-1.4.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-26", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "6c3d0d4837f6f82654d47039437a75af", + "name": "matplotlib", + "requires": [], + "size": 46890643, + "version": "1.4.0" + }, + "matplotlib-1.4.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-26", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "60823754c93132650db81395d3d023b0", + "name": "matplotlib", + "requires": [], + "size": 46867547, + "version": "1.4.0" + }, + "matplotlib-1.4.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-26", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "pyparsing 2.0.1", + "pyqt", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "82a97c25b72c5e09ba259815dc33f905", + "name": "matplotlib", + "requires": [], + "size": 46907354, + "version": "1.4.0" + }, + "matplotlib-1.4.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-26", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.8*", + "pyparsing 2.0.1", + "pyqt", + "python 3.4*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "535f9b40b638f098fe976ea1f8c78dd7", + "name": "matplotlib", + "requires": [], + "size": 46953174, + "version": "1.4.0" + }, + "matplotlib-1.4.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "ab68dcd7a5ea7764e95c4e0a63ecb02a", + "name": "matplotlib", + "requires": [], + "size": 46891501, + "version": "1.4.0" + }, + "matplotlib-1.4.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "02cb7c5545e5712d5a6f2ad7cc1d2a73", + "name": "matplotlib", + "requires": [], + "size": 46870558, + "version": "1.4.0" + }, + "matplotlib-1.4.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.1", + "pyqt", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "c3176e5ac4856df0aafd9f10f13b0f4a", + "name": "matplotlib", + "requires": [], + "size": 46907630, + "version": "1.4.0" + }, + "matplotlib-1.4.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.1", + "pyqt", + "python 3.4*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "57a7335ce7bdabc9603923826f078a38", + "name": "matplotlib", + "requires": [], + "size": 46960491, + "version": "1.4.0" + }, + "matplotlib-1.4.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "95a55ff37d5d2e43445052789cf859f2", + "name": "matplotlib", + "requires": [], + "size": 46926199, + "version": "1.4.1" + }, + "matplotlib-1.4.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "4f7be0831973157431aff5d3d218873a", + "name": "matplotlib", + "requires": [], + "size": 46959571, + "version": "1.4.1" + }, + "matplotlib-1.4.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.1", + "pyqt", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "a947701eda79e5e629fd58cffa7210b3", + "name": "matplotlib", + "requires": [], + "size": 47194620, + "version": "1.4.1" + }, + "matplotlib-1.4.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.1", + "pyqt", + "python 3.4*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "ad05c3fa13d719a00638c5613a432c0c", + "name": "matplotlib", + "requires": [], + "size": 47243352, + "version": "1.4.1" + }, + "matplotlib-1.4.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "5dffea8ede748d8a051c78f7dbb09415", + "name": "matplotlib", + "requires": [], + "size": 46928956, + "version": "1.4.2" + }, + "matplotlib-1.4.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.1", + "pyqt", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "bf9584afc630ead39b7f824cc94e9802", + "name": "matplotlib", + "requires": [], + "size": 46961386, + "version": "1.4.2" + }, + "matplotlib-1.4.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.1", + "pyqt", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "278b43c9b82496f357b9e350712b1c61", + "name": "matplotlib", + "requires": [], + "size": 47194534, + "version": "1.4.2" + }, + "matplotlib-1.4.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.1", + "pyqt", + "python 3.4*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "701bd21f71ecd807b283021077ae1b6b", + "name": "matplotlib", + "requires": [], + "size": 47243664, + "version": "1.4.2" + }, + "matplotlib-1.4.3-np110py27_2.tar.bz2": { + "build": "np110py27_2", + "build_number": 2, + "date": "2015-10-06", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "numpy 1.10*", + "py2cairo 1.10.0", + "pyparsing 2.0.3", + "pyqt", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "0ac6d98eecbf70731d0936d701cc2496", + "name": "matplotlib", + "requires": [], + "size": 46670764, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np110py34_2.tar.bz2": { + "build": "np110py34_2", + "build_number": 2, + "date": "2015-10-07", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "numpy 1.10*", + "pyparsing 2.0.3", + "pyqt", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "bc275f26cbe321ff6d558c911b4a3de4", + "name": "matplotlib", + "requires": [], + "size": 47101102, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np110py35_2.tar.bz2": { + "build": "np110py35_2", + "build_number": 2, + "date": "2015-10-07", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "numpy 1.10*", + "pyparsing 2.0.3", + "pyqt", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "207e7f9190f2f02631e10cb56aa55476", + "name": "matplotlib", + "requires": [], + "size": 47087150, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-19", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.3", + "pyqt", + "python 2.6*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "d688f6c76704249dcb7a6e1e959f4e35", + "name": "matplotlib", + "requires": [], + "size": 46770187, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.3", + "pyqt", + "python 2.6*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "c67636e4c0b8aeee4eb3961074ad8de7", + "name": "matplotlib", + "requires": [], + "size": 46770947, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py26_2.tar.bz2": { + "build": "np19py26_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.3", + "pyqt", + "python 2.6*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "58fd040f54374941b146af0a78974e04", + "name": "matplotlib", + "requires": [], + "size": 46682262, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-19", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.3", + "pyqt", + "python 2.7*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "6e17d5ae27f32b5d2b5d6681f6fb5814", + "name": "matplotlib", + "requires": [], + "size": 46796276, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.3", + "pyqt", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "d5cc32c32adc5967e6433d51ad1bca90", + "name": "matplotlib", + "requires": [], + "size": 46797911, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py27_2.tar.bz2": { + "build": "np19py27_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "numpy 1.9*", + "py2cairo 1.10.0", + "pyparsing 2.0.3", + "pyqt", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "e24a8c6dc7dc486b19d9f812e3de7885", + "name": "matplotlib", + "requires": [], + "size": 46672382, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-19", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.3", + "pyqt", + "python 3.3*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "64565e80b1a2926c43a17266b283dd0b", + "name": "matplotlib", + "requires": [], + "size": 46981835, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.3", + "pyqt", + "python 3.3*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "ab40fc7655c35f9738b4df51638534cd", + "name": "matplotlib", + "requires": [], + "size": 47203564, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py33_2.tar.bz2": { + "build": "np19py33_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "numpy 1.9*", + "pyparsing 2.0.3", + "pyqt", + "python 3.3*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "ae751e850cb4f13d834b7c02c8a7152e", + "name": "matplotlib", + "requires": [], + "size": 47118131, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-19", + "depends": [ + "dateutil", + "freetype 2.4*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.3", + "pyqt", + "python 3.4*", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "58f37e80b47a50601df26e2aaa944597", + "name": "matplotlib", + "requires": [], + "size": 46992822, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "libpng 1.5.13", + "numpy 1.9*", + "pyparsing 2.0.3", + "pyqt", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "9c7ba896ac17f2683215dfe63c646b26", + "name": "matplotlib", + "requires": [], + "size": 47211062, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py34_2.tar.bz2": { + "build": "np19py34_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "numpy 1.9*", + "pyparsing 2.0.3", + "pyqt", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "5fa58d1041f8fb185bcf8e8975dde2e9", + "name": "matplotlib", + "requires": [], + "size": 47101730, + "version": "1.4.3" + }, + "matplotlib-1.4.3-np19py35_2.tar.bz2": { + "build": "np19py35_2", + "build_number": 2, + "date": "2015-09-10", + "depends": [ + "freetype 2.5*", + "libpng 1.6.17", + "numpy 1.9*", + "pyparsing 2.0.3", + "pyqt", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "f4c99896523598d51375755461f28a1d", + "name": "matplotlib", + "requires": [], + "size": 47088498, + "version": "1.4.3" + }, + "matplotlib-1.5.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.10*", + "py2cairo", + "pyparsing", + "pyqt", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "a59676151141a0984a381d7ccca318ac", + "name": "matplotlib", + "requires": [], + "size": 8567041, + "version": "1.5.0" + }, + "matplotlib-1.5.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.10*", + "pyparsing", + "pyqt", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "7871df623476dcc35d0574d838786a33", + "name": "matplotlib", + "requires": [], + "size": 8768444, + "version": "1.5.0" + }, + "matplotlib-1.5.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.10*", + "pyparsing", + "pyqt", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "e1b41e043fe646bad8dcb6f90a0a36ac", + "name": "matplotlib", + "requires": [], + "size": 8756669, + "version": "1.5.0" + }, + "matplotlib-1.5.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.10*", + "pycairo", + "pyparsing", + "pyqt", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "4bceb253bbf5c03b2fc5f359ce6b24a1", + "name": "matplotlib", + "requires": [], + "size": 8585595, + "version": "1.5.1" + }, + "matplotlib-1.5.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.10*", + "pyparsing", + "pyqt", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "c407aab189efe1662eea20c83dd0353a", + "name": "matplotlib", + "requires": [], + "size": 8786649, + "version": "1.5.1" + }, + "matplotlib-1.5.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.10*", + "pyparsing", + "pyqt", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "255686571cea2826664d14ce3e8c4c56", + "name": "matplotlib", + "requires": [], + "size": 8777825, + "version": "1.5.1" + }, + "matplotlib-1.5.1-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.11*", + "pycairo", + "pyparsing", + "pyqt", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "2812c74bc129497ec4b144024f6ec7f4", + "name": "matplotlib", + "requires": [], + "size": 8602825, + "version": "1.5.1" + }, + "matplotlib-1.5.1-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.11*", + "pyparsing", + "pyqt", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "5a23dffadb9598a674985e7c85a75931", + "name": "matplotlib", + "requires": [], + "size": 8791728, + "version": "1.5.1" + }, + "matplotlib-1.5.1-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "cycler", + "freetype 2.5.*", + "libpng 1.6.*", + "numpy 1.11*", + "pyparsing", + "pyqt", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "b8bd210412985213337027872edd77a1", + "name": "matplotlib", + "requires": [], + "size": 8778427, + "version": "1.5.1" + }, + "matplotlib-tests-1.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-07", + "depends": [ + "python 2.7*" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "d77fd175dccc262258e706c27dc260dd", + "name": "matplotlib-tests", + "requires": [], + "size": 36044144, + "version": "1.5.0" + }, + "matplotlib-tests-1.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-07", + "depends": [ + "python 3.4*" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "6fed3e985e9ae8ebeb881ba2dd29132c", + "name": "matplotlib-tests", + "requires": [], + "size": 35885125, + "version": "1.5.0" + }, + "matplotlib-tests-1.5.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-07", + "depends": [ + "python 3.5*" + ], + "license": "PSF-based (http://matplotlib.sourceforge.net/users/license.html)", + "license_family": "PSF", + "md5": "b1b2828fa27e2cb021fee6bc16f59779", + "name": "matplotlib-tests", + "requires": [], + "size": 35885308, + "version": "1.5.0" + }, + "mayavi-4.3.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.0", + "envisage 4.3.0", + "numpy 1.7*", + "python 2.7*", + "traitsui 4.3.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "2789ca12c1cd04c535a35390f7cb8773", + "name": "mayavi", + "requires": [], + "size": 9952586, + "version": "4.3.0" + }, + "mayavi-4.3.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.0", + "envisage 4.3.0", + "numpy 1.7*", + "python 2.7*", + "traitsui 4.3.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "ae04b2ff86ad1d206642a7ccff07d3ac", + "name": "mayavi", + "requires": [], + "size": 10520158, + "version": "4.3.0" + }, + "mayavi-4.3.0-np17py27_2.tar.bz2": { + "build": "np17py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.0", + "envisage 4.3.0", + "numpy 1.7*", + "pyside 1.2.1", + "python 2.7*", + "traitsui 4.3.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "34c8477d5704327d88bece3fd90922eb", + "name": "mayavi", + "requires": [], + "size": 10519007, + "version": "4.3.0" + }, + "mayavi-4.3.0-np17py27_3.tar.bz2": { + "build": "np17py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.0", + "envisage 4.4.0", + "numpy 1.7*", + "pyside 1.2.1", + "python 2.7*", + "traitsui 4.4.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "dc3d3904684a7583b6b54113c78ea4b7", + "name": "mayavi", + "requires": [], + "size": 10522089, + "version": "4.3.0" + }, + "mayavi-4.3.0-np17py27_4.tar.bz2": { + "build": "np17py27_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.0", + "envisage 4.4.0", + "numpy 1.7*", + "pyside 1.2.1", + "python 2.7*", + "setuptools", + "traitsui 4.4.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "c5880ac4dfb35a5fff4e7125e81c4bb6", + "name": "mayavi", + "requires": [], + "size": 10519384, + "version": "4.3.0" + }, + "mayavi-4.3.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.1", + "envisage 4.4.0", + "numpy 1.8*", + "pyside 1.2.1", + "python 2.7*", + "setuptools", + "traitsui 4.4.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "4b8d3252f45eb3b13c0a1a2790fecf59", + "name": "mayavi", + "requires": [], + "size": 10519447, + "version": "4.3.1" + }, + "mayavi-4.3.1-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "apptools 4.2.1", + "envisage 4.4.0", + "numpy 1.8*", + "pyqt", + "python 2.7*", + "setuptools", + "traitsui 4.4.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "f6d4fd065c07a4ba99b3e8a4b15efb66", + "name": "mayavi", + "requires": [], + "size": 10515327, + "version": "4.3.1" + }, + "mayavi-4.3.1-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2014-09-09", + "depends": [ + "apptools 4.2.1", + "envisage 4.4.0", + "numpy 1.9*", + "pyqt", + "python 2.7*", + "setuptools", + "traitsui 4.4.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "59884003b0fff551899274c18b58e1f3", + "name": "mayavi", + "requires": [], + "size": 10521390, + "version": "4.3.1" + }, + "mayavi-4.4.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "apptools 4.2.1", + "envisage 4.4.0", + "numpy 1.9*", + "pyqt", + "python 2.7*", + "setuptools", + "traitsui 4.4.0", + "vtk 5.10.1" + ], + "license": "BSD", + "md5": "e94886ec8d6fb0476407b29051b4d1d0", + "name": "mayavi", + "requires": [], + "size": 10825921, + "version": "4.4.0" + }, + "mccabe-0.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "3e0c7e4b97f6c0740dd18e8ec5c43b1f", + "name": "mccabe", + "requires": [], + "size": 8548, + "version": "0.2.1" + }, + "mccabe-0.2.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "ec58f7ea733e5728a2a62031f4a8b2ad", + "name": "mccabe", + "requires": [], + "size": 8830, + "version": "0.2.1" + }, + "mccabe-0.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d13a2a1332e41f2a9087540ce11df71d", + "name": "mccabe", + "requires": [], + "size": 8502, + "version": "0.2.1" + }, + "mccabe-0.2.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "3c477ea3f3acff765f6f81e4407096bf", + "name": "mccabe", + "requires": [], + "size": 8744, + "version": "0.2.1" + }, + "mccabe-0.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "62104fcfc3d0701ccdca9ba3eea993b0", + "name": "mccabe", + "requires": [], + "size": 4662, + "version": "0.2.1" + }, + "mccabe-0.2.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "11da66142c20c4cac04f6108d9bfceaa", + "name": "mccabe", + "requires": [], + "size": 9077, + "version": "0.2.1" + }, + "mccabe-0.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "535104bf078290e53a01f63c30b81051", + "name": "mccabe", + "requires": [], + "size": 4659, + "version": "0.2.1" + }, + "mccabe-0.2.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "fbf9bc51d1cddb68b63f787e05e5f8dd", + "name": "mccabe", + "requires": [], + "size": 9003, + "version": "0.2.1" + }, + "mccabe-0.3-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-02-11", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "f73b58f623ace6618582d5822cc8ea1b", + "name": "mccabe", + "requires": [], + "size": 9165, + "version": "0.3" + }, + "mccabe-0.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-02-11", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "df3a6096d3f27e029ccb50b6326e9dbb", + "name": "mccabe", + "requires": [], + "size": 9072, + "version": "0.3" + }, + "mccabe-0.3-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-02-11", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "8d31282ceba74bbe7a07c5995747f528", + "name": "mccabe", + "requires": [], + "size": 9388, + "version": "0.3" + }, + "mccabe-0.3-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-02-11", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "58a82ed1d9873297d78575ee8b680165", + "name": "mccabe", + "requires": [], + "size": 9351, + "version": "0.3" + }, + "mccabe-0.3-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "ff191f6698d60802fcc6abe067a5d6d9", + "name": "mccabe", + "requires": [], + "size": 8997, + "version": "0.3" + }, + "mccabe-0.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "cac73738eee30279485f715c39faa7cd", + "name": "mccabe", + "requires": [], + "size": 8813, + "version": "0.3.1" + }, + "mccabe-0.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "fadd62361a447398c5bcb88872e1413e", + "name": "mccabe", + "requires": [], + "size": 9086, + "version": "0.3.1" + }, + "mccabe-0.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "e6915b211a007635bc37c3f80c30037b", + "name": "mccabe", + "requires": [], + "size": 9072, + "version": "0.3.1" + }, + "mdp-3.3-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "95358ccaf21750018cef23af2307e58d", + "name": "mdp", + "requires": [], + "size": 750169, + "version": "3.3" + }, + "mdp-3.3-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "3b780056817ab38ab4d3b4e650404e12", + "name": "mdp", + "requires": [], + "size": 804783, + "version": "3.3" + }, + "mdp-3.3-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "ad55dfa61db49edddd3bf6fd54251433", + "name": "mdp", + "requires": [], + "size": 803684, + "version": "3.3" + }, + "mdp-3.3-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD", + "md5": "1bbc113be6953245294bb360f3e3ab22", + "name": "mdp", + "requires": [], + "size": 745739, + "version": "3.3" + }, + "mdp-3.3-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "80d44da40eab1cf5f62d2f9bcee6b3b1", + "name": "mdp", + "requires": [], + "size": 750459, + "version": "3.3" + }, + "mdp-3.3-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "ca0570d8ade6babf9ae4eaa1b37f8fa8", + "name": "mdp", + "requires": [], + "size": 745729, + "version": "3.3" + }, + "mdp-3.3-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9ff4366c19d4c7291e37f264b0e70130", + "name": "mdp", + "requires": [], + "size": 750597, + "version": "3.3" + }, + "mdp-3.3-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "aa7bc9c8822e85c40f4e41766747a781", + "name": "mdp", + "requires": [], + "size": 746088, + "version": "3.3" + }, + "mdp-3.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "412e33e7b436cd134915bfdd6c64accc", + "name": "mdp", + "requires": [], + "size": 750505, + "version": "3.3" + }, + "mdp-3.3-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "3afe7f5978b75fdd8ea94949649a644f", + "name": "mdp", + "requires": [], + "size": 700219, + "version": "3.3" + }, + "mdp-3.3-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "d4f201d0bcb0cdf63fa41ae92f46111a", + "name": "mdp", + "requires": [], + "size": 745968, + "version": "3.3" + }, + "mdp-3.3-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "fdf5732c6794fc7ccc67db3da76a9066", + "name": "mdp", + "requires": [], + "size": 750235, + "version": "3.3" + }, + "mdp-3.3-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "395fc4eeba210218027760e1adf833af", + "name": "mdp", + "requires": [], + "size": 700483, + "version": "3.3" + }, + "mdp-3.3-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "7d8ce6abbd7c1612326735d4885662e3", + "name": "mdp", + "requires": [], + "size": 804740, + "version": "3.3" + }, + "mdp-3.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "80739733a1d80b649584a551d1a44a23", + "name": "mdp", + "requires": [], + "size": 745391, + "version": "3.3" + }, + "mdp-3.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "4ba8b67058fd3a17b5951b15171559b5", + "name": "mdp", + "requires": [], + "size": 750488, + "version": "3.3" + }, + "mdp-3.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "46a018cb67500cf31e4fc1a631089f70", + "name": "mdp", + "requires": [], + "size": 700665, + "version": "3.3" + }, + "mdp-3.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "c1c04f36bf897b71c5755ece95eaafe1", + "name": "mdp", + "requires": [], + "size": 804917, + "version": "3.3" + }, + "mdp-3.3-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "ea9de466805156a6dce21e962ce17360", + "name": "mdp", + "requires": [], + "size": 803425, + "version": "3.3" + }, + "mdp-3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "future", + "numpy", + "python 2.7*" + ], + "license": "BSD", + "md5": "fa46d2e4ba971c221870ee31d8e06904", + "name": "mdp", + "requires": [], + "size": 488347, + "version": "3.5" + }, + "mdp-3.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "future", + "numpy", + "python 3.4*" + ], + "license": "BSD", + "md5": "7d43b721234e333adf288bc66b81cf7b", + "name": "mdp", + "requires": [], + "size": 508421, + "version": "3.5" + }, + "mdp-3.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "future", + "numpy", + "python 3.5*" + ], + "license": "BSD", + "md5": "b46b71bf8b9fc2294da4f43cd8bd6de2", + "name": "mdp", + "requires": [], + "size": 507518, + "version": "3.5" + }, + "meld3-1.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "python 2.6*" + ], + "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "acbc81b96826ddd47ad89a8e3c8d25ea", + "name": "meld3", + "requires": [], + "size": 42601, + "version": "1.0.2" + }, + "meld3-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "python 2.7*" + ], + "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "45e739ac2468d5507721c7316cf6a4a8", + "name": "meld3", + "requires": [], + "size": 42570, + "version": "1.0.2" + }, + "meld3-1.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "python 3.3*" + ], + "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "c88b7f4b94f2ba0b891cc2788de84e38", + "name": "meld3", + "requires": [], + "size": 43908, + "version": "1.0.2" + }, + "meld3-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "python 3.4*" + ], + "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "e8cf23fc6646f030de552c6c79ee48da", + "name": "meld3", + "requires": [], + "size": 43991, + "version": "1.0.2" + }, + "meld3-1.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "b812987498afb41b9dc6fb9891a40586", + "name": "meld3", + "requires": [], + "size": 43453, + "version": "1.0.2" + }, + "memory_profiler-0.40-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "psutil", + "python 2.7*" + ], + "license": "BSD", + "md5": "962a524bb563c971912f51aa048c7850", + "name": "memory_profiler", + "requires": [], + "size": 28765, + "version": "0.40" + }, + "memory_profiler-0.40-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "psutil", + "python 3.4*" + ], + "license": "BSD", + "md5": "ab22f4a19c8d2da73e41050ef9f42788", + "name": "memory_profiler", + "requires": [], + "size": 18863, + "version": "0.40" + }, + "memory_profiler-0.40-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "psutil", + "python 3.5*" + ], + "license": "BSD", + "md5": "9e3204b0b36816182206ca8eae522074", + "name": "memory_profiler", + "requires": [], + "size": 18865, + "version": "0.40" + }, + "mercurial-2.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "b50801a4369638e7aac8c812d30d795e", + "name": "mercurial", + "requires": [], + "size": 2697079, + "version": "2.8" + }, + "mercurial-2.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "e82438f288eca878199371afde73837e", + "name": "mercurial", + "requires": [], + "size": 2696817, + "version": "2.8" + }, + "mercurial-2.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "e43faac5d830fa89b06dd4b46c3ca3ac", + "name": "mercurial", + "requires": [], + "size": 2727788, + "version": "2.9.1" + }, + "mercurial-2.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "4f22944333dd0740d7fde5d7874c0de9", + "name": "mercurial", + "requires": [], + "size": 2726834, + "version": "2.9.1" + }, + "mercurial-3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "8ab9aeb8961f89dcd10a3d0409262aee", + "name": "mercurial", + "requires": [], + "size": 2747224, + "version": "3.0" + }, + "mercurial-3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "aa668fdca9ed96ce58366ba451370173", + "name": "mercurial", + "requires": [], + "size": 2745009, + "version": "3.0" + }, + "mercurial-3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "a018fd65e89a58ecd89b147902636cfb", + "name": "mercurial", + "requires": [], + "size": 2775745, + "version": "3.1" + }, + "mercurial-3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "49803455cc0d0b2742a7f5a5341aa891", + "name": "mercurial", + "requires": [], + "size": 2783115, + "version": "3.1" + }, + "mercurial-3.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "c216b2066ba3b184ad4d8499c5227f66", + "name": "mercurial", + "requires": [], + "size": 2798877, + "version": "3.1.2" + }, + "mercurial-3.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "33f21a38a983b56ad7065e5e596eeb73", + "name": "mercurial", + "requires": [], + "size": 2802288, + "version": "3.1.2" + }, + "mercurial-3.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "9f082a9ba7aa59efdc3bd81f4a8b4213", + "name": "mercurial", + "requires": [], + "size": 2870036, + "version": "3.2" + }, + "mercurial-3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-06", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "ee61c3e654e045528270a40a67bbf493", + "name": "mercurial", + "requires": [], + "size": 2866912, + "version": "3.2" + }, + "mercurial-3.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "8e1ad01b1a6709dd26626dd553b7b1a0", + "name": "mercurial", + "requires": [], + "size": 2870837, + "version": "3.2.1" + }, + "mercurial-3.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "87c768b9586da91bf977c054f98f8014", + "name": "mercurial", + "requires": [], + "size": 2867415, + "version": "3.2.1" + }, + "mercurial-3.2.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "9610a6b8f1560e9c4cfdb10db62de4b3", + "name": "mercurial", + "requires": [], + "size": 2874136, + "version": "3.2.4" + }, + "mercurial-3.2.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "34ef309e7d465c16adf550212abd51eb", + "name": "mercurial", + "requires": [], + "size": 2870416, + "version": "3.2.4" + }, + "mercurial-3.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "13070c9b3d362c85a4310dd2ef2c8975", + "name": "mercurial", + "requires": [], + "size": 2916643, + "version": "3.3" + }, + "mercurial-3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "6c813528973f2e889343930d334b80fa", + "name": "mercurial", + "requires": [], + "size": 2921057, + "version": "3.3" + }, + "mercurial-3.3.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "e5ef53f112ebde23beef833da91187df", + "name": "mercurial", + "requires": [], + "size": 2918434, + "version": "3.3.2" + }, + "mercurial-3.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "28104c37f7c83ca561a2df63c3bac7bc", + "name": "mercurial", + "requires": [], + "size": 2920873, + "version": "3.3.2" + }, + "mercurial-3.3.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "abc63691059f7e6d5f7793789883db24", + "name": "mercurial", + "requires": [], + "size": 2918076, + "version": "3.3.3" + }, + "mercurial-3.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "37fce575e9bbe8c3c890ac0df21eee96", + "name": "mercurial", + "requires": [], + "size": 2921471, + "version": "3.3.3" + }, + "mercurial-3.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "cf0f990721ebd942edec8d6b7656d351", + "name": "mercurial", + "requires": [], + "size": 3033139, + "version": "3.4" + }, + "mercurial-3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "3ef9b6dcbcf14720136ddf6d1a969062", + "name": "mercurial", + "requires": [], + "size": 3038892, + "version": "3.4" + }, + "mercurial-3.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "bfe1cead32c4de6467254c9a2ca54bac", + "name": "mercurial", + "requires": [], + "size": 3034407, + "version": "3.4.1" + }, + "mercurial-3.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "e4b5100208dcad6ee32cae4e431acf2c", + "name": "mercurial", + "requires": [], + "size": 3039765, + "version": "3.4.1" + }, + "mercurial-3.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "c730cc068bb7c5573f69666b2ef374ee", + "name": "mercurial", + "requires": [], + "size": 3035668, + "version": "3.4.2" + }, + "mercurial-3.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "3dda689b72c9bdc4e2eb1c24948cfe98", + "name": "mercurial", + "requires": [], + "size": 3040754, + "version": "3.4.2" + }, + "mercurial-3.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-08-03", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "5a4ab84e59bde54202f3b1b8d3f387c2", + "name": "mercurial", + "requires": [], + "size": 3095194, + "version": "3.5" + }, + "mercurial-3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-03", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "ad0fdb99460823b5ee9b92e295c17004", + "name": "mercurial", + "requires": [], + "size": 3099729, + "version": "3.5" + }, + "mercurial-3.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "adcd24150d5424986d35068dd9755589", + "name": "mercurial", + "requires": [], + "size": 3092455, + "version": "3.5.1" + }, + "mercurial-3.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "323acf8e91a103d88722509928e3bdca", + "name": "mercurial", + "requires": [], + "size": 3091087, + "version": "3.5.2" + }, + "mercurial-3.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "12f256c7c041ea32b3caaa32391c0558", + "name": "mercurial", + "requires": [], + "size": 3160353, + "version": "3.6.1" + }, + "mercurial-3.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "b5856d485c2faeaf9c0c67f5711ce672", + "name": "mercurial", + "requires": [], + "size": 3250827, + "version": "3.7.1" + }, + "mercurial-3.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "52224cbe2dae491157e497b8a01c46e8", + "name": "mercurial", + "requires": [], + "size": 3267433, + "version": "3.7.2" + }, + "mercurial-3.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "27374b2541b097f0c76107176820e024", + "name": "mercurial", + "requires": [], + "size": 3267331, + "version": "3.7.3" + }, + "mesa-10.5.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "llvm" + ], + "license": "MIT", + "md5": "60cd3c7b894d5294f100cbf8643db4c1", + "name": "mesa", + "requires": [], + "size": 10965955, + "version": "10.5.4" + }, + "meta-0.4.2.dev-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license_family": "BSD", + "md5": "d3e4e3faf7fb004ca80f8e70560a14f6", + "name": "meta", + "requires": [], + "size": 83625, + "version": "0.4.2.dev" + }, + "meta-0.4.2.dev-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "BSD", + "md5": "54f8a111f98adccf8ebb356aac7e04cb", + "name": "meta", + "requires": [], + "size": 85434, + "version": "0.4.2.dev" + }, + "meta-0.4.2.dev-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license_family": "BSD", + "md5": "fe21d7acb8f1ea6febffebe36460263f", + "name": "meta", + "requires": [], + "size": 94790, + "version": "0.4.2.dev" + }, + "mistune-0.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "fccd8803a5b8bda70f19416935bf11f3", + "name": "mistune", + "requires": [], + "size": 19034, + "version": "0.5" + }, + "mistune-0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7a584c71e10f964e6b584ad11d60a808", + "name": "mistune", + "requires": [], + "size": 19077, + "version": "0.5" + }, + "mistune-0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7f9b8db282303e2526da34d62586d8a8", + "name": "mistune", + "requires": [], + "size": 9961, + "version": "0.5" + }, + "mistune-0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e95fc8386405d3981a31a794b579a52e", + "name": "mistune", + "requires": [], + "size": 9959, + "version": "0.5" + }, + "mistune-0.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "2b5ec0f757061ca5102e16abbd2d4bd0", + "name": "mistune", + "requires": [], + "size": 19264, + "version": "0.5.1" + }, + "mistune-0.5.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "da8fd0d6d2cba52ec45026a721e37321", + "name": "mistune", + "requires": [], + "size": 546008, + "version": "0.5.1" + }, + "mistune-0.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d4a1604d0343a8fcde878af71ac2a8d7", + "name": "mistune", + "requires": [], + "size": 19233, + "version": "0.5.1" + }, + "mistune-0.5.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d4f23804d3e47fcbf643c74dd910cfb7", + "name": "mistune", + "requires": [], + "size": 545883, + "version": "0.5.1" + }, + "mistune-0.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "03314dbaf670c30a490f4703b1b2661b", + "name": "mistune", + "requires": [], + "size": 10091, + "version": "0.5.1" + }, + "mistune-0.5.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "32ea350bb5381c0339b643690b66acae", + "name": "mistune", + "requires": [], + "size": 584538, + "version": "0.5.1" + }, + "mistune-0.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "36f9425bde50bfc3cdcfe78c6f909ddc", + "name": "mistune", + "requires": [], + "size": 10096, + "version": "0.5.1" + }, + "mistune-0.5.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f5cf841310d38c62da1b48a6b12ce767", + "name": "mistune", + "requires": [], + "size": 666991, + "version": "0.5.1" + }, + "mistune-0.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "55f7239f72ce23e3511ce1716cd91fce", + "name": "mistune", + "requires": [], + "size": 545982, + "version": "0.6" + }, + "mistune-0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "6f14d4668ecff3dbeb2a22053c28b0b5", + "name": "mistune", + "requires": [], + "size": 546078, + "version": "0.6" + }, + "mistune-0.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "c3cf2436958cb29a13be4408e4a1de13", + "name": "mistune", + "requires": [], + "size": 583528, + "version": "0.6" + }, + "mistune-0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1f9fcd783b07c8e1089ae91d0bd75ec3", + "name": "mistune", + "requires": [], + "size": 662909, + "version": "0.6" + }, + "mistune-0.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "67e268c7832b3d7477b6da0e5e0aded5", + "name": "mistune", + "requires": [], + "size": 567791, + "version": "0.7" + }, + "mistune-0.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8a585d36215882d1a387aa83255c1d79", + "name": "mistune", + "requires": [], + "size": 567874, + "version": "0.7" + }, + "mistune-0.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d4fe93fc1f0437aabdaa2f0a2f453c0a", + "name": "mistune", + "requires": [], + "size": 600574, + "version": "0.7" + }, + "mistune-0.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a24282e61f6ddca23e0b81b9cba4a60c", + "name": "mistune", + "requires": [], + "size": 683291, + "version": "0.7" + }, + "mistune-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-01", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0968cb0d35370891f504791cc4034fe6", + "name": "mistune", + "requires": [], + "size": 583591, + "version": "0.7.1" + }, + "mistune-0.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-01", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ed94d6255d5236230f796e056bd5cf78", + "name": "mistune", + "requires": [], + "size": 664653, + "version": "0.7.1" + }, + "mistune-0.7.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "fd3dac7504c5789d232a18c03a37944d", + "name": "mistune", + "requires": [], + "size": 666881, + "version": "0.7.1" + }, + "mistune-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "28e02e1a7618da4024a367ebce652e15", + "name": "mistune", + "requires": [], + "size": 583222, + "version": "0.7.2" + }, + "mistune-0.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "9fa3a4206ff0b6a7a0738ef91ea3eb49", + "name": "mistune", + "requires": [], + "size": 703782, + "version": "0.7.2" + }, + "mistune-0.7.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "ca10951bc37d9113adcd95dddcf162cd", + "name": "mistune", + "requires": [], + "size": 678143, + "version": "0.7.2" + }, + "mkl-11.3.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-11", + "depends": [], + "license": "proprietary - Intel", + "license_family": "Proprietary", + "md5": "52640a71ab7584c6d1a9ac2b76a822e9", + "name": "mkl", + "requires": [], + "size": 127043498, + "version": "11.3.1" + }, + "mkl-service-1.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-30", + "depends": [ + "mkl 11.3.1", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "bbeb18857463ad9ca8fececbc57a9b09", + "name": "mkl-service", + "requires": [], + "size": 12772, + "version": "1.1.2" + }, + "mkl-service-1.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-30", + "depends": [ + "mkl 11.3.1", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f712e071916e69454c419742ab76557a", + "name": "mkl-service", + "requires": [], + "size": 12793, + "version": "1.1.2" + }, + "mkl-service-1.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-30", + "depends": [ + "mkl 11.3.1", + "python 3.5*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e4906ede52c812a91b71ecfaedda17f2", + "name": "mkl-service", + "requires": [], + "size": 12982, + "version": "1.1.2" + }, + "mock-1.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "7dd07e1b98327978b184696c45152a82", + "name": "mock", + "requires": [], + "size": 36790, + "version": "1.0.1" + }, + "mock-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bf4a30a5f402a6edb3fbc3955b8ef598", + "name": "mock", + "requires": [], + "size": 36887, + "version": "1.0.1" + }, + "mock-1.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3ebdba56fb427d275ffb0df8cd79dd6a", + "name": "mock", + "requires": [], + "size": 38093, + "version": "1.0.1" + }, + "mock-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "baa1ca8c956ad7ad5563b2363548d070", + "name": "mock", + "requires": [], + "size": 37793, + "version": "1.0.1" + }, + "mock-1.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "b0a9358e8a6e1936301f0d378ef32931", + "name": "mock", + "requires": [], + "size": 95766, + "version": "1.1.3" + }, + "mock-1.1.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "3abdf8d77d7fb9e1b365bbff0cae397b", + "name": "mock", + "requires": [], + "size": 100656, + "version": "1.1.3" + }, + "mock-1.1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "ed00fc90077a910e6ba330e1c6489f54", + "name": "mock", + "requires": [], + "size": 100628, + "version": "1.1.3" + }, + "mock-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "63a768a93ad6e4d8d5f9cdcb3e9d09f2", + "name": "mock", + "requires": [], + "size": 95933, + "version": "1.2.0" + }, + "mock-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "561b42da7f26b4a80f0cee3886e5deb1", + "name": "mock", + "requires": [], + "size": 100874, + "version": "1.2.0" + }, + "mock-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "8bf113b850c4ced1ecb19dab9fc92e7e", + "name": "mock", + "requires": [], + "size": 100694, + "version": "1.2.0" + }, + "mock-1.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "a70eee8b9076e77218376dd0c59330e9", + "name": "mock", + "requires": [], + "size": 96853, + "version": "1.3.0" + }, + "mock-1.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "b02dc26cf7c6b5a800e987bc07b1edde", + "name": "mock", + "requires": [], + "size": 101764, + "version": "1.3.0" + }, + "mock-1.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "d444e737ea53576c2e3888ab03e90524", + "name": "mock", + "requires": [], + "size": 102016, + "version": "1.3.0" + }, + "mock-1.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "funcsigs 0.4", + "pbr 1.3.0", + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "e447ece2558c34cbe22ac668f1dc8f6c", + "name": "mock", + "requires": [], + "size": 101728, + "version": "1.3.0" + }, + "mongo-driver-0.7.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "Apache", + "md5": "ba4077a905506f42d1dd82c2625668fb", + "name": "mongo-driver", + "requires": [], + "size": 183279, + "version": "0.7.1" + }, + "mongodb-2.4.6-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "AGPLv3", + "license_family": "AGPL", + "md5": "6dbc2a07520cb17b6d5cefddebd4b905", + "name": "mongodb", + "requires": [], + "size": 83448928, + "version": "2.4.6" + }, + "mpc-1.0.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "gmp", + "mpfr" + ], + "license": "GPL", + "license_family": "GPL3", + "md5": "7ba2b84c4f3281991bc8ccf97c9b540d", + "name": "mpc", + "requires": [], + "size": 62289, + "version": "1.0.1" + }, + "mpfr-3.1.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-05", + "depends": [ + "gmp" + ], + "license": "LGPL", + "md5": "528eb058253f844d79fcdf012306f26b", + "name": "mpfr", + "requires": [], + "size": 416819, + "version": "3.1.2" + }, + "mpi4py-1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "mpich2 1.4.1p1", + "python 2.6*" + ], + "license": "BSD", + "md5": "a006fd8f671d39d9d6fe5e7e20638ef4", + "name": "mpi4py", + "requires": [], + "size": 1270455, + "version": "1.3" + }, + "mpi4py-1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "mpich2 1.4.1p1", + "python 2.7*" + ], + "license": "BSD", + "md5": "fd81a04830767c99327d1bf503a28f81", + "name": "mpi4py", + "requires": [], + "size": 1274192, + "version": "1.3" + }, + "mpi4py-1.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "mpich2 1.4.1p1", + "python 2.6*" + ], + "license": "BSD", + "md5": "b3e641a2b73f1c177ec426217792bd17", + "name": "mpi4py", + "requires": [], + "size": 1372428, + "version": "1.3.1" + }, + "mpi4py-1.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "mpich2 1.4.1p1", + "python 2.7*" + ], + "license": "BSD", + "md5": "bdcb12953f8a325ce1632568219c8b23", + "name": "mpi4py", + "requires": [], + "size": 1373108, + "version": "1.3.1" + }, + "mpi4py-1.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "mpich2 1.4.1p1", + "python 3.3*" + ], + "license": "BSD", + "md5": "f7251a11a78b50a3f026460827b72099", + "name": "mpi4py", + "requires": [], + "size": 1319427, + "version": "1.3.1" + }, + "mpi4py-1.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-02", + "depends": [ + "mpich2 1.4.1p1", + "python 3.4*" + ], + "license": "BSD", + "md5": "24241d736d13f969767b773d5ba4fb87", + "name": "mpi4py", + "requires": [], + "size": 1461900, + "version": "1.3.1" + }, + "mpi4py-1.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "mpich2 1.4.1p1", + "python 3.5*" + ], + "license": "BSD", + "md5": "91743b8a3276fa6734e5a4b943c0887d", + "name": "mpi4py", + "requires": [], + "size": 1458233, + "version": "1.3.1" + }, + "mpi4py-2.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "mpich2 1.4.1p1", + "python 2.7*" + ], + "license": "BSD", + "md5": "6bf22be963194b6479dd72334d924873", + "name": "mpi4py", + "requires": [], + "size": 1775073, + "version": "2.0.0" + }, + "mpi4py-2.0.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-02-09", + "depends": [ + "mpich2", + "python 2.7*" + ], + "license": "BSD", + "md5": "c7e24f3fbee08ec1d666c61cef1d1049", + "name": "mpi4py", + "requires": [], + "size": 1774652, + "version": "2.0.0" + }, + "mpi4py-2.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "mpich2 1.4.1p1", + "python 3.4*" + ], + "license": "BSD", + "md5": "386ea89d9d994ef1b1773850a68cea88", + "name": "mpi4py", + "requires": [], + "size": 1985085, + "version": "2.0.0" + }, + "mpi4py-2.0.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-02-09", + "depends": [ + "mpich2", + "python 3.4*" + ], + "license": "BSD", + "md5": "2b5432b9f2df1edd1ad5e14a861c1deb", + "name": "mpi4py", + "requires": [], + "size": 1985012, + "version": "2.0.0" + }, + "mpi4py-2.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "mpich2 1.4.1p1", + "python 3.5*" + ], + "license": "BSD", + "md5": "99f2705bc252d547542652d45c7113b3", + "name": "mpi4py", + "requires": [], + "size": 1944412, + "version": "2.0.0" + }, + "mpi4py-2.0.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-02-09", + "depends": [ + "mpich2", + "python 3.5*" + ], + "license": "BSD", + "md5": "f228c9c424477641713423a8676118a3", + "name": "mpi4py", + "requires": [], + "size": 1943510, + "version": "2.0.0" + }, + "mpich2-1.4.1p1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "mpich license", + "license_family": "Other", + "md5": "0d864d6cf25313ca76943b77f40720af", + "name": "mpich2", + "requires": [], + "size": 2743468, + "version": "1.4.1p1" + }, + "mpld3-0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "jinja2", + "matplotlib", + "python 2.7*" + ], + "license": "BSD", + "md5": "005253fc58f5bf8502584f496109a9fd", + "name": "mpld3", + "requires": [], + "size": 114401, + "version": "0.2" + }, + "mpld3-0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "jinja2", + "matplotlib", + "python 3.4*" + ], + "license": "BSD", + "md5": "65cd1f8ec84c33efbd57c5da2f4bec29", + "name": "mpld3", + "requires": [], + "size": 115592, + "version": "0.2" + }, + "mpld3-0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "jinja2", + "matplotlib", + "python 3.5*" + ], + "license": "BSD", + "md5": "9ffd169d7b0365b825c065314762d44d", + "name": "mpld3", + "requires": [], + "size": 115269, + "version": "0.2" + }, + "mpmath-0.19-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-09", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "f8625c1140edf869db3870ef18e8b848", + "name": "mpmath", + "requires": [], + "size": 880351, + "version": "0.19" + }, + "mpmath-0.19-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-09", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "7fd6128440ecb90385616b88b90a878a", + "name": "mpmath", + "requires": [], + "size": 893335, + "version": "0.19" + }, + "mpmath-0.19-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-09", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "043a345933b1da1560488fd3b815a836", + "name": "mpmath", + "requires": [], + "size": 941890, + "version": "0.19" + }, + "mpmath-0.19-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-09", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "27f539197e2f352f0fb31491fb641026", + "name": "mpmath", + "requires": [], + "size": 921679, + "version": "0.19" + }, + "mpmath-0.19-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "e1a0c2903bc439386928b05ae76b22a9", + "name": "mpmath", + "requires": [], + "size": 919519, + "version": "0.19" + }, + "msgpack-0.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "Other", + "md5": "4d66130cc34f3270c0ec46d13373bba7", + "name": "msgpack", + "requires": [], + "size": 102353, + "version": "0.2.3" + }, + "msgpack-python-0.4.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "9ad43c07d237ed8a8bb17c38a18298dd", + "name": "msgpack-python", + "requires": [], + "size": 194789, + "version": "0.4.6" + }, + "msgpack-python-0.4.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "ca6ce14c52b4bdc73d78e3ed76537fcc", + "name": "msgpack-python", + "requires": [], + "size": 195308, + "version": "0.4.6" + }, + "msgpack-python-0.4.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "0387cf9b64aba67eae709fe5b80684f7", + "name": "msgpack-python", + "requires": [], + "size": 201033, + "version": "0.4.6" + }, + "msgpack-python-0.4.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "99fcc633557d9c340b36d18e69239459", + "name": "msgpack-python", + "requires": [], + "size": 216113, + "version": "0.4.6" + }, + "msgpack-python-0.4.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "f3c8cedd9e5231057311f59e7c0d8db9", + "name": "msgpack-python", + "requires": [], + "size": 211854, + "version": "0.4.6" + }, + "mtq-0.6.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "pymongo 2.8", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "license_family": "Other", + "md5": "ab136d609c894e98baa2587426471812", + "name": "mtq", + "requires": [], + "size": 41820, + "version": "0.6.3" + }, + "multimethods-1.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "76e733d12c3222f3fa6648dd0068b5b9", + "name": "multimethods", + "requires": [], + "size": 3810, + "version": "1.0.0" + }, + "multimethods-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "0f1153a1cc48ad02f9db7d3343f2983f", + "name": "multimethods", + "requires": [], + "size": 3798, + "version": "1.0.0" + }, + "multimethods-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "def77cbd3510e9f21e9b0c5925ef3ff8", + "name": "multimethods", + "requires": [], + "size": 3917, + "version": "1.0.0" + }, + "multimethods-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "7e17100be304302e8a3c7eba8d86ea8b", + "name": "multimethods", + "requires": [], + "size": 3888, + "version": "1.0.0" + }, + "multimethods-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "da3c9a38076332325311269a7bbac165", + "name": "multimethods", + "requires": [], + "size": 3513, + "version": "1.0.0" + }, + "multipledispatch-0.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "726a592d1f7d179483be08e6b8957e4c", + "name": "multipledispatch", + "requires": [], + "size": 8976, + "version": "0.3.0" + }, + "multipledispatch-0.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ed4e9b88a184a2985427d4343cce0359", + "name": "multipledispatch", + "requires": [], + "size": 8846, + "version": "0.3.0" + }, + "multipledispatch-0.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "24f088513ac6ec0839000ab27d4552fb", + "name": "multipledispatch", + "requires": [], + "size": 9288, + "version": "0.3.0" + }, + "multipledispatch-0.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "387cae078c1c6d1c74356eb655481692", + "name": "multipledispatch", + "requires": [], + "size": 9203, + "version": "0.3.0" + }, + "multipledispatch-0.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a26acc3a86209e38bd52164c3fb972df", + "name": "multipledispatch", + "requires": [], + "size": 9286, + "version": "0.4.0" + }, + "multipledispatch-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "dbecfb26a1100bf67c6d82d1c405d37f", + "name": "multipledispatch", + "requires": [], + "size": 9127, + "version": "0.4.0" + }, + "multipledispatch-0.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d981b548c837a8a8cfd5b81c6ea0ed0d", + "name": "multipledispatch", + "requires": [], + "size": 9571, + "version": "0.4.0" + }, + "multipledispatch-0.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e02562bed2836eab41552db3065e630a", + "name": "multipledispatch", + "requires": [], + "size": 9522, + "version": "0.4.0" + }, + "multipledispatch-0.4.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "0ae32dbbf40b59fa02198e5be0234254", + "name": "multipledispatch", + "requires": [], + "size": 10040, + "version": "0.4.3" + }, + "multipledispatch-0.4.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bdd23dd1e533083aea07f60273ed77ce", + "name": "multipledispatch", + "requires": [], + "size": 9850, + "version": "0.4.3" + }, + "multipledispatch-0.4.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "ad77da6fce0a54e4febdf81a0c0a13b9", + "name": "multipledispatch", + "requires": [], + "size": 10331, + "version": "0.4.3" + }, + "multipledispatch-0.4.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "153eedf998c86b4e5512dd72449933dd", + "name": "multipledispatch", + "requires": [], + "size": 10349, + "version": "0.4.3" + }, + "multipledispatch-0.4.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "bce7859007a2119e199cbf877d0cb880", + "name": "multipledispatch", + "requires": [], + "size": 10664, + "version": "0.4.4" + }, + "multipledispatch-0.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "9a513f54deec8e4d20701b0bcbb4ea6d", + "name": "multipledispatch", + "requires": [], + "size": 10509, + "version": "0.4.4" + }, + "multipledispatch-0.4.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7a14545826da126cf8a37951e6eb2a99", + "name": "multipledispatch", + "requires": [], + "size": 11019, + "version": "0.4.4" + }, + "multipledispatch-0.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7f649f90588ace6d1dbc685d27072fee", + "name": "multipledispatch", + "requires": [], + "size": 10962, + "version": "0.4.4" + }, + "multipledispatch-0.4.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "68440271c888a5d020cb6e8df7c38c94", + "name": "multipledispatch", + "requires": [], + "size": 10854, + "version": "0.4.5" + }, + "multipledispatch-0.4.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4cc92f13fab6f1a5d2844473626830fa", + "name": "multipledispatch", + "requires": [], + "size": 10719, + "version": "0.4.5" + }, + "multipledispatch-0.4.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "404246828e305c10f0cc3eb63bdacaa1", + "name": "multipledispatch", + "requires": [], + "size": 11240, + "version": "0.4.5" + }, + "multipledispatch-0.4.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ca5e5c631424e0b4b6c8402837508a0f", + "name": "multipledispatch", + "requires": [], + "size": 11201, + "version": "0.4.5" + }, + "multipledispatch-0.4.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-28", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "0e7697b887bf5a591d32aef5a54324f2", + "name": "multipledispatch", + "requires": [], + "size": 11093, + "version": "0.4.6" + }, + "multipledispatch-0.4.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "359b3a2ee3f7a421c5398ae598e7fc0e", + "name": "multipledispatch", + "requires": [], + "size": 10996, + "version": "0.4.6" + }, + "multipledispatch-0.4.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-28", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3deb604699408047d4f652488d0caaa2", + "name": "multipledispatch", + "requires": [], + "size": 11467, + "version": "0.4.6" + }, + "multipledispatch-0.4.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b3c515c54e2f06f0f916ec3e021fae65", + "name": "multipledispatch", + "requires": [], + "size": 11464, + "version": "0.4.6" + }, + "multipledispatch-0.4.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "d5c63f2c4fe66846cf384f0d2c9668b5", + "name": "multipledispatch", + "requires": [], + "size": 11472, + "version": "0.4.7" + }, + "multipledispatch-0.4.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "24bcc5fe2b372f3abf3087f3266e4ec3", + "name": "multipledispatch", + "requires": [], + "size": 11374, + "version": "0.4.7" + }, + "multipledispatch-0.4.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "4e06bc8ad31ab9f8cc51085f5e8c319f", + "name": "multipledispatch", + "requires": [], + "size": 11883, + "version": "0.4.7" + }, + "multipledispatch-0.4.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "4930bf54e7715663f2c0ece1d9c40cd8", + "name": "multipledispatch", + "requires": [], + "size": 11820, + "version": "0.4.7" + }, + "multipledispatch-0.4.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "1f50120dd763afd4debcfc1398045b61", + "name": "multipledispatch", + "requires": [], + "size": 11742, + "version": "0.4.8" + }, + "multipledispatch-0.4.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "018a550bf92b18f476348f9adc9b321e", + "name": "multipledispatch", + "requires": [], + "size": 11605, + "version": "0.4.8" + }, + "multipledispatch-0.4.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "cb0a93aa2f1f0a99126b27f5d1cc2ac6", + "name": "multipledispatch", + "requires": [], + "size": 12100, + "version": "0.4.8" + }, + "multipledispatch-0.4.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-09", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "9c6643a6ba28a8193f2c77e5ec688dc9", + "name": "multipledispatch", + "requires": [], + "size": 12119, + "version": "0.4.8" + }, + "multipledispatch-0.4.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "1f6aa98c2cf4d315f35350dfb8da8d84", + "name": "multipledispatch", + "requires": [], + "size": 12082, + "version": "0.4.8" + }, + "murmurhash-0.24-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain", + "md5": "9e96f0b1eb5fe8917285c6b19787aa7d", + "name": "murmurhash", + "requires": [], + "size": 28744, + "version": "0.24" + }, + "murmurhash-0.24-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain", + "md5": "1bf8c398f9b9f804bc0325cdd92f3fdb", + "name": "murmurhash", + "requires": [], + "size": 28846, + "version": "0.24" + }, + "murmurhash-0.24-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.3*" + ], + "license": "Public-Domain", + "md5": "2224089c0da73f29bf331f65f4d57750", + "name": "murmurhash", + "requires": [], + "size": 29654, + "version": "0.24" + }, + "murmurhash-0.24-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.4*" + ], + "license": "Public-Domain", + "md5": "000ed5feca97c0a3b05002230e631207", + "name": "murmurhash", + "requires": [], + "size": 30326, + "version": "0.24" + }, + "murmurhash-0.24-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Public-Domain", + "md5": "a860a8b072d98d12641cf6cf799d914b", + "name": "murmurhash", + "requires": [], + "size": 29022, + "version": "0.24" + }, + "murmurhash-0.26.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain", + "md5": "e465a303a931e11878603f32ac35a294", + "name": "murmurhash", + "requires": [], + "size": 28754, + "version": "0.26.0" + }, + "murmurhash-0.26.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "python 3.4*" + ], + "license": "Public-Domain", + "md5": "ef3cf5369d8853d8373bd1b4effb3848", + "name": "murmurhash", + "requires": [], + "size": 30250, + "version": "0.26.0" + }, + "murmurhash-0.26.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "python 3.5*" + ], + "license": "Public-Domain", + "md5": "fc574886ecb47140785704d732089ff5", + "name": "murmurhash", + "requires": [], + "size": 29289, + "version": "0.26.0" + }, + "murmurhash-0.26.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain", + "md5": "69973a92cf2504c6d51df8dc20087f9e", + "name": "murmurhash", + "requires": [], + "size": 28892, + "version": "0.26.1" + }, + "murmurhash-0.26.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 3.4*" + ], + "license": "Public-Domain", + "md5": "5463ea79b475f4940e95242c87cd1ec0", + "name": "murmurhash", + "requires": [], + "size": 30406, + "version": "0.26.1" + }, + "murmurhash-0.26.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 3.5*" + ], + "license": "Public-Domain", + "md5": "a68812430c2deada95f5097f5d58e63b", + "name": "murmurhash", + "requires": [], + "size": 29458, + "version": "0.26.1" + }, + "mysql-5.5.24-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2013-10-04", + "depends": [], + "license": "GPL", + "license_family": "GPL2", + "md5": "d3f171b4c05bea30e1dca961278612bf", + "name": "mysql", + "requires": [], + "size": 52498334, + "version": "5.5.24" + }, + "mysql-connector-python-2.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "95d3753be93ab27395b275b12c9727a9", + "name": "mysql-connector-python", + "requires": [], + "size": 163628, + "version": "2.0.3" + }, + "mysql-connector-python-2.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "d4665b54cee796915c14b347901c22ed", + "name": "mysql-connector-python", + "requires": [], + "size": 163905, + "version": "2.0.3" + }, + "mysql-connector-python-2.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 3.3*" + ], + "license": "GPL2", + "md5": "a52e6a3e10a5069fe2490a2cf6d05e32", + "name": "mysql-connector-python", + "requires": [], + "size": 171214, + "version": "2.0.3" + }, + "mysql-connector-python-2.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 3.4*" + ], + "license": "GPL2", + "md5": "8c61809210d099ccf25725aeac3899c4", + "name": "mysql-connector-python", + "requires": [], + "size": 169322, + "version": "2.0.3" + }, + "mysql-connector-python-2.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "GPL2", + "md5": "4321411f87d105f443e8f0a1fdb8036d", + "name": "mysql-connector-python", + "requires": [], + "size": 168367, + "version": "2.0.3" + }, + "mysql-python-1.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "e9db1f33533e58bf81cfaa0fe4f4496b", + "name": "mysql-python", + "requires": [], + "size": 1215764, + "version": "1.2.3" + }, + "mysql-python-1.2.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 2.6*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "0927ee2261fc9c543fe308e4c4c78d08", + "name": "mysql-python", + "requires": [], + "size": 1223344, + "version": "1.2.5" + }, + "mysql-python-1.2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-21", + "depends": [ + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "94b9d829a235a84b1993481a0031487b", + "name": "mysql-python", + "requires": [], + "size": 1223146, + "version": "1.2.5" + }, + "nano-2.4.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "ncurses 5.9", + "zlib 1.2*" + ], + "license": "GPL2", + "md5": "eeb822ea4ccbe53f970bc1a3a70eda50", + "name": "nano", + "requires": [], + "size": 635109, + "version": "2.4.1" + }, + "natsort-3.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "python 2.6*" + ], + "license": "MIT", + "md5": "72efb57fb1a1c3c9042a805ae043d446", + "name": "natsort", + "requires": [], + "size": 28799, + "version": "3.4.1" + }, + "natsort-3.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9c199ae677737b2eb7f984bdfbf1d399", + "name": "natsort", + "requires": [], + "size": 28514, + "version": "3.4.1" + }, + "natsort-3.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "ec650f2ce432f2557d324399cc0d8015", + "name": "natsort", + "requires": [], + "size": 29091, + "version": "3.4.1" + }, + "natsort-3.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "b13dd08fd3e99f5d13d5808c68e27d87", + "name": "natsort", + "requires": [], + "size": 28959, + "version": "3.4.1" + }, + "natsort-3.5.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "argparse", + "python 2.6*" + ], + "license": "MIT", + "md5": "63b5bc29d48b6cb4a691496f058aa594", + "name": "natsort", + "requires": [], + "size": 26739, + "version": "3.5.0" + }, + "natsort-3.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "72b5eb36048587994eea49973c1b5b40", + "name": "natsort", + "requires": [], + "size": 26551, + "version": "3.5.0" + }, + "natsort-3.5.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "5957abc37a3711a8be8d59356e3c8cdb", + "name": "natsort", + "requires": [], + "size": 27085, + "version": "3.5.0" + }, + "natsort-3.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "40d589d550a10baa16c74f8ffa1d51b9", + "name": "natsort", + "requires": [], + "size": 27136, + "version": "3.5.0" + }, + "natsort-4.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "argparse", + "python 2.6*" + ], + "license": "MIT", + "md5": "530c040699fa138363cfefb66c3a2003", + "name": "natsort", + "requires": [], + "size": 40120, + "version": "4.0.3" + }, + "natsort-4.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "bfba403a33eeb28c0c7b4b500e44c1e2", + "name": "natsort", + "requires": [], + "size": 40017, + "version": "4.0.3" + }, + "natsort-4.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "a95a2b09f2243da65434076d9164cf29", + "name": "natsort", + "requires": [], + "size": 40610, + "version": "4.0.3" + }, + "natsort-4.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "b09e59c657d634aba503d74e60e13490", + "name": "natsort", + "requires": [], + "size": 40738, + "version": "4.0.3" + }, + "natsort-4.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "d14c146c9cef8de1885bfb03cdfa6ec7", + "name": "natsort", + "requires": [], + "size": 40601, + "version": "4.0.3" + }, + "nb_anacondacloud-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "anaconda-client", + "nb_config_manager", + "nbsetuptools", + "notebook", + "python 2.7*", + "pyyaml" + ], + "license": "BSD", + "md5": "7492a260777380e59bbc0cbf6d7e5cec", + "name": "nb_anacondacloud", + "requires": [], + "size": 18357, + "version": "0.2.0" + }, + "nb_anacondacloud-0.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "anaconda-client", + "nb_config_manager", + "nbsetuptools", + "notebook", + "python 3.4*", + "pyyaml" + ], + "license": "BSD", + "md5": "8e141b5d0b2bbbffb52e2db65be019a2", + "name": "nb_anacondacloud", + "requires": [], + "size": 18716, + "version": "0.2.0" + }, + "nb_anacondacloud-0.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "anaconda-client", + "nb_config_manager", + "nbsetuptools", + "notebook", + "python 3.5*", + "pyyaml" + ], + "license": "BSD", + "md5": "cb2e9a6a115071500a0c6f72908cc566", + "name": "nb_anacondacloud", + "requires": [], + "size": 18680, + "version": "0.2.0" + }, + "nb_conda-0.1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "nb_conda_kernels", + "nb_config_manager", + "nbsetuptools", + "python 2.7*" + ], + "license": "BSD", + "md5": "dd2a54b838c5abf223088cc5f02d4293", + "name": "nb_conda", + "requires": [], + "size": 17264, + "version": "0.1.4" + }, + "nb_conda-0.1.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "nb_conda_kernels", + "nb_config_manager", + "nbsetuptools", + "python 3.4*" + ], + "license": "BSD", + "md5": "ab9606e531d51d8715fb92820910f2d0", + "name": "nb_conda", + "requires": [], + "size": 17730, + "version": "0.1.4" + }, + "nb_conda-0.1.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "nb_conda_kernels", + "nb_config_manager", + "nbsetuptools", + "python 3.5*" + ], + "license": "BSD", + "md5": "6053397b621bdd7c2e0072ea6ba6f125", + "name": "nb_conda", + "requires": [], + "size": 17921, + "version": "0.1.4" + }, + "nb_conda_kernels-0.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "notebook", + "python 2.7*", + "traitlets >=4.1.0" + ], + "license": "BSD", + "md5": "4645208cb8d1de7c6ca5b70833b11800", + "name": "nb_conda_kernels", + "requires": [], + "size": 21056, + "version": "0.1.2" + }, + "nb_conda_kernels-0.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "notebook", + "python 3.4*", + "traitlets >=4.1.0" + ], + "license": "BSD", + "md5": "88d2b75cf2b9ae14b98ca990f3d3eb3d", + "name": "nb_conda_kernels", + "requires": [], + "size": 21307, + "version": "0.1.2" + }, + "nb_conda_kernels-0.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "notebook", + "python 3.5*", + "traitlets >=4.1.0" + ], + "license": "BSD", + "md5": "72e5a5daf9448e85e66a0bd9e655da44", + "name": "nb_conda_kernels", + "requires": [], + "size": 21266, + "version": "0.1.2" + }, + "nb_config_manager-0.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "notebook", + "python 2.7*" + ], + "license": "BSD", + "md5": "0ea98aa68eb03d046b8f364a9a1d7bea", + "name": "nb_config_manager", + "requires": [], + "size": 5897, + "version": "0.1.3" + }, + "nb_config_manager-0.1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "notebook", + "python 3.4*" + ], + "license": "BSD", + "md5": "6949a8dd44cc8d1581c967213d276212", + "name": "nb_config_manager", + "requires": [], + "size": 6034, + "version": "0.1.3" + }, + "nb_config_manager-0.1.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "notebook", + "python 3.5*" + ], + "license": "BSD", + "md5": "74df42303c7ffdc928d19c76e8501ec2", + "name": "nb_config_manager", + "requires": [], + "size": 6042, + "version": "0.1.3" + }, + "nbconvert-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipython", + "jinja2", + "jupyter_core", + "mistune", + "nbformat", + "pygments", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "ad06f9be12b56792faf10c4ee5f019b3", + "name": "nbconvert", + "requires": [], + "size": 272742, + "version": "4.0.0" + }, + "nbconvert-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipython", + "jinja2", + "jupyter_core", + "mistune", + "nbformat", + "pygments", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "570ca16d03ebaeac3380d2da27f4fc57", + "name": "nbconvert", + "requires": [], + "size": 275878, + "version": "4.0.0" + }, + "nbconvert-4.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipython", + "jinja2", + "jupyter_core", + "mistune", + "nbformat", + "pygments", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "a06a93fe4626f473dd49237eac6edcc6", + "name": "nbconvert", + "requires": [], + "size": 275529, + "version": "4.0.0" + }, + "nbconvert-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "jinja2", + "jupyter_core", + "mistune", + "nbformat", + "pygments", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "549e5e0fe73eb34053fafa5cb0e5b300", + "name": "nbconvert", + "requires": [], + "size": 279661, + "version": "4.1.0" + }, + "nbconvert-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "jinja2", + "jupyter_core", + "mistune", + "nbformat", + "pygments", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "81b4db0cadee68a451ac9b817e09111a", + "name": "nbconvert", + "requires": [], + "size": 281756, + "version": "4.1.0" + }, + "nbconvert-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "jinja2", + "jupyter_core", + "mistune", + "nbformat", + "pygments", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "6fcd5e3e67639835d9b603e54d8ce8a1", + "name": "nbconvert", + "requires": [], + "size": 281105, + "version": "4.1.0" + }, + "nbformat-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipython_genutils 0.1.0", + "jsonschema 2.4.0", + "jupyter_core", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "5c489f579acbfc945c217db0de6f5b63", + "name": "nbformat", + "requires": [], + "size": 114738, + "version": "4.0.0" + }, + "nbformat-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipython_genutils 0.1.0", + "jsonschema 2.4.0", + "jupyter_core", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "5a7cfc302ed76702739efaeb1344b4bf", + "name": "nbformat", + "requires": [], + "size": 116762, + "version": "4.0.0" + }, + "nbformat-4.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipython_genutils 0.1.0", + "jsonschema 2.4.0", + "jupyter_core", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "eb901fed37b7fb0050e4245d250a6cf9", + "name": "nbformat", + "requires": [], + "size": 116389, + "version": "4.0.0" + }, + "nbformat-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "ipython_genutils", + "jsonschema", + "jupyter_core", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "2f8e6b3315e49055b8a54e66acbd72c3", + "name": "nbformat", + "requires": [], + "size": 114630, + "version": "4.0.1" + }, + "nbformat-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "ipython_genutils", + "jsonschema", + "jupyter_core", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "49e31b07dceddb5ca0a02e44a0b409c4", + "name": "nbformat", + "requires": [], + "size": 116542, + "version": "4.0.1" + }, + "nbformat-4.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "ipython_genutils", + "jsonschema", + "jupyter_core", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "b0498a89ecf8bfb46aab2c48f251506a", + "name": "nbformat", + "requires": [], + "size": 116133, + "version": "4.0.1" + }, + "nbpresent-2.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "funcsigs", + "mistune !=0.7.2", + "nb_config_manager", + "notebook <5", + "python 2.7*" + ], + "license": "BSD", + "md5": "78bcdb02bd0c939b3247f21f3cf5582f", + "name": "nbpresent", + "requires": [], + "size": 258547, + "version": "2.0.0" + }, + "nbpresent-2.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "mistune !=0.7.2", + "nb_config_manager", + "notebook <5", + "python 3.4*" + ], + "license": "BSD", + "md5": "d0cf284cff4dd4b71f87705c06b47694", + "name": "nbpresent", + "requires": [], + "size": 259149, + "version": "2.0.0" + }, + "nbpresent-2.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "mistune !=0.7.2", + "nb_config_manager", + "notebook <5", + "python 3.5*" + ], + "license": "BSD", + "md5": "6371b8780bac679c43d03b7592087c41", + "name": "nbpresent", + "requires": [], + "size": 259030, + "version": "2.0.0" + }, + "nbsetuptools-0.1.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "funcsigs", + "notebook", + "python 2.7*" + ], + "license": "BSD", + "md5": "652c8d95d744e575522c73992e98edb7", + "name": "nbsetuptools", + "requires": [], + "size": 5998, + "version": "0.1.5" + }, + "nbsetuptools-0.1.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "funcsigs", + "notebook", + "python 3.4*" + ], + "license": "BSD", + "md5": "788bd56d321478a9ad0e3e511c7a8177", + "name": "nbsetuptools", + "requires": [], + "size": 6234, + "version": "0.1.5" + }, + "nbsetuptools-0.1.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-24", + "depends": [ + "funcsigs", + "notebook", + "python 3.5*" + ], + "license": "BSD", + "md5": "82fdb82660331f9b89cbb445e1d8bedc", + "name": "nbsetuptools", + "requires": [], + "size": 6194, + "version": "0.1.5" + }, + "ncurses-5.9-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-09-26", + "depends": [], + "license": "ncurses license", + "license_family": "Other", + "md5": "60520824b80eb03d79277dc50320b02c", + "name": "ncurses", + "requires": [], + "size": 1426290, + "version": "5.9" + }, + "ndg-httpsclient-0.3.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "pyopenssl 0.14", + "python 2.6*" + ], + "license": "BSD", + "md5": "114e7333200b4455b3c9414ca82d3ce0", + "name": "ndg-httpsclient", + "requires": [], + "size": 31298, + "version": "0.3.3" + }, + "ndg-httpsclient-0.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "pyopenssl 0.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "612ba287f864550a4a797e0dcadb7c78", + "name": "ndg-httpsclient", + "requires": [], + "size": 31381, + "version": "0.3.3" + }, + "ndg_httpsclient-0.3.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "pyopenssl 0.14", + "python 2.6*" + ], + "license": "BSD", + "md5": "7b8ed0f75fd97d8549ada2f1954feb67", + "name": "ndg_httpsclient", + "requires": [], + "size": 31302, + "version": "0.3.3" + }, + "ndg_httpsclient-0.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "pyopenssl 0.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "cc354cb98cbba829c8545c97eacb9ed2", + "name": "ndg_httpsclient", + "requires": [], + "size": 31430, + "version": "0.3.3" + }, + "netcdf4-1.0.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "be7f5710620563e536c69d131b9a1ce5", + "name": "netcdf4", + "requires": [], + "size": 843942, + "version": "1.0.2" + }, + "netcdf4-1.0.4-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.5*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "debc51ada85b1f7ff19db8aa826eec32", + "name": "netcdf4", + "requires": [], + "size": 898127, + "version": "1.0.4" + }, + "netcdf4-1.0.4-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.5*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "8a6305a2a830d6f7ed99a95757fedf48", + "name": "netcdf4", + "requires": [], + "size": 894574, + "version": "1.0.4" + }, + "netcdf4-1.0.4-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.6*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "f891968fc3b6382c5a4510924041e36a", + "name": "netcdf4", + "requires": [], + "size": 898736, + "version": "1.0.4" + }, + "netcdf4-1.0.4-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.6*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "abfc7619d518f7b921ce5a21604ce3f0", + "name": "netcdf4", + "requires": [], + "size": 898075, + "version": "1.0.4" + }, + "netcdf4-1.0.4-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "eee7e8bfd004defce81fe227011bacc0", + "name": "netcdf4", + "requires": [], + "size": 898018, + "version": "1.0.4" + }, + "netcdf4-1.0.4-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "3597a7488f6a6d1bc0f4378ab2f5f59b", + "name": "netcdf4", + "requires": [], + "size": 895989, + "version": "1.0.4" + }, + "netcdf4-1.0.4-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "b00c236af04804f998a2579517667db4", + "name": "netcdf4", + "requires": [], + "size": 895077, + "version": "1.0.4" + }, + "netcdf4-1.0.5-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.6*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "4a352809de86419c176d8cd4b761d46f", + "name": "netcdf4", + "requires": [], + "size": 1047405, + "version": "1.0.5" + }, + "netcdf4-1.0.5-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.6*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "3098d3c13e5b610cc4f3fa6f77f3e8a6", + "name": "netcdf4", + "requires": [], + "size": 1046731, + "version": "1.0.5" + }, + "netcdf4-1.0.5-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "c739b91c2a71bdb81116f24f8b8f6657", + "name": "netcdf4", + "requires": [], + "size": 1047800, + "version": "1.0.5" + }, + "netcdf4-1.0.5-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "2817cbfccba1b91baa6f2e1a79798087", + "name": "netcdf4", + "requires": [], + "size": 1048043, + "version": "1.0.5" + }, + "netcdf4-1.0.5-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "47ca74202976f27222b5535e1eeee14e", + "name": "netcdf4", + "requires": [], + "size": 991829, + "version": "1.0.5" + }, + "netcdf4-1.0.6-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.6*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "ba157aa365d5aea8c1576c76937472e1", + "name": "netcdf4", + "requires": [], + "size": 1073042, + "version": "1.0.6" + }, + "netcdf4-1.0.6-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.6*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "fade8848c42cfa40deb9f71c1218fe1c", + "name": "netcdf4", + "requires": [], + "size": 1075031, + "version": "1.0.6" + }, + "netcdf4-1.0.6-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "c32062e8e30a4e94a53dd0cc172269db", + "name": "netcdf4", + "requires": [], + "size": 1073382, + "version": "1.0.6" + }, + "netcdf4-1.0.6-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "06efc7bdcc33b9b3befce983d51089c3", + "name": "netcdf4", + "requires": [], + "size": 1076631, + "version": "1.0.6" + }, + "netcdf4-1.0.6-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "5c74623fa1df098a9b98053aff24c40b", + "name": "netcdf4", + "requires": [], + "size": 1010420, + "version": "1.0.6" + }, + "netcdf4-1.0.7-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "eb0cf220f739d7b9fa88b09fcd44a1b4", + "name": "netcdf4", + "requires": [], + "size": 1080217, + "version": "1.0.7" + }, + "netcdf4-1.0.7-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "18d0f81ce93bb8f849aecb8fc9c0afaf", + "name": "netcdf4", + "requires": [], + "size": 1070728, + "version": "1.0.7" + }, + "netcdf4-1.0.7-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.7*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "9ac18ff71bcd5933bba94d7828d2495a", + "name": "netcdf4", + "requires": [], + "size": 1018843, + "version": "1.0.7" + }, + "netcdf4-1.0.7-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "34031ec4abe3949144dc56fcad3e3548", + "name": "netcdf4", + "requires": [], + "size": 1078914, + "version": "1.0.7" + }, + "netcdf4-1.0.7-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "5f223acf586e29de0d21aa14fed99a87", + "name": "netcdf4", + "requires": [], + "size": 1079864, + "version": "1.0.7" + }, + "netcdf4-1.0.7-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "b4989eec74e034f1c6216f7be2268f65", + "name": "netcdf4", + "requires": [], + "size": 1020533, + "version": "1.0.7" + }, + "netcdf4-1.0.8-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "d9ad2409da126e4d42384bb5febc9495", + "name": "netcdf4", + "requires": [], + "size": 1099354, + "version": "1.0.8" + }, + "netcdf4-1.0.8-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "dac63275061b65abe0c2b80e063344b9", + "name": "netcdf4", + "requires": [], + "size": 1099056, + "version": "1.0.8" + }, + "netcdf4-1.0.8-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "b00c960ab3feb1c8f4a51ad8f45471a7", + "name": "netcdf4", + "requires": [], + "size": 1053229, + "version": "1.0.8" + }, + "netcdf4-1.0.8-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "dae1ab1d513535038074295a3d8492b0", + "name": "netcdf4", + "requires": [], + "size": 1185765, + "version": "1.0.8" + }, + "netcdf4-1.1.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "7801663b49579361bae0b500367b8b0d", + "name": "netcdf4", + "requires": [], + "size": 1067962, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "97da2d59561bd6ade26c7e42029f6b78", + "name": "netcdf4", + "requires": [], + "size": 1068101, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "a0c8ae515e76a3c494e2191e71c2fe22", + "name": "netcdf4", + "requires": [], + "size": 1115902, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "hdf5 1.8.9", + "libnetcdf 4.2.1.1", + "numpy 1.8*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "9ede7f57236c210bf708e01790432ec2", + "name": "netcdf4", + "requires": [], + "size": 1287775, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "libnetcdf 4.3.2", + "numpy 1.9*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "1877a1c079969afc268dc0b3baaaaf9f", + "name": "netcdf4", + "requires": [], + "size": 1068063, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "aba26a198cd4e7c678345b9e3d54ec66", + "name": "netcdf4", + "requires": [], + "size": 1069426, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "d8b09fb3ca34352ba0bcfdd61e2bb146", + "name": "netcdf4", + "requires": [], + "size": 1068027, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "aa28c556403b299d8854d88dd590e2f0", + "name": "netcdf4", + "requires": [], + "size": 1068229, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "c173147a14ec84760e6d83cd22227e31", + "name": "netcdf4", + "requires": [], + "size": 1116878, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "b988291e5a1967ac9641b46197df705b", + "name": "netcdf4", + "requires": [], + "size": 1115106, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "863b7771097f089c0ee1b7e0d9a8cf6c", + "name": "netcdf4", + "requires": [], + "size": 1287127, + "version": "1.1.1" + }, + "netcdf4-1.1.1-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "8bdcda409815d69ec6650c271b73677e", + "name": "netcdf4", + "requires": [], + "size": 1287181, + "version": "1.1.1" + }, + "netcdf4-1.1.6-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "3812aa58eb8c400a90fd8b418e618e43", + "name": "netcdf4", + "requires": [], + "size": 1296114, + "version": "1.1.6" + }, + "netcdf4-1.1.6-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "4fb85e532e1547d7116f852a8fea4303", + "name": "netcdf4", + "requires": [], + "size": 1297986, + "version": "1.1.6" + }, + "netcdf4-1.1.6-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "57228d811f68b133fd45fd1469840d47", + "name": "netcdf4", + "requires": [], + "size": 1348614, + "version": "1.1.6" + }, + "netcdf4-1.1.6-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "829d1d1ab4632b4e4e245843c7496c62", + "name": "netcdf4", + "requires": [], + "size": 1575164, + "version": "1.1.6" + }, + "netcdf4-1.1.8-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "ordereddict", + "python 2.6*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "97a5b58824083819cf6fcee7daf05132", + "name": "netcdf4", + "requires": [], + "size": 1316045, + "version": "1.1.8" + }, + "netcdf4-1.1.8-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "ad6a68b9e925a9fdb101ff012ef6e08c", + "name": "netcdf4", + "requires": [], + "size": 1316278, + "version": "1.1.8" + }, + "netcdf4-1.1.8-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "524a1c91ae569cd8cf869bfd120cdf7f", + "name": "netcdf4", + "requires": [], + "size": 1381472, + "version": "1.1.8" + }, + "netcdf4-1.1.8-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "hdf5 1.8.14", + "libnetcdf 4.3.2", + "numpy 1.9*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "4c5a71153d81aee866c248bd593129ea", + "name": "netcdf4", + "requires": [], + "size": 1616430, + "version": "1.1.8" + }, + "netcdf4-1.1.9-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "fb002a39acd4897527791990a2463d9b", + "name": "netcdf4", + "requires": [], + "size": 1332545, + "version": "1.1.9" + }, + "netcdf4-1.1.9-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "2bbaa6550effebbb2d59a9968ca8169f", + "name": "netcdf4", + "requires": [], + "size": 1633735, + "version": "1.1.9" + }, + "netcdf4-1.1.9-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "02abe3431232336bb59759f53d821ccb", + "name": "netcdf4", + "requires": [], + "size": 1634360, + "version": "1.1.9" + }, + "netcdf4-1.1.9-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "358fe7b1dd178985049900b40298ff41", + "name": "netcdf4", + "requires": [], + "size": 1332220, + "version": "1.1.9" + }, + "netcdf4-1.1.9-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "0351ff373e39db6c02834376f66c187b", + "name": "netcdf4", + "requires": [], + "size": 1634144, + "version": "1.1.9" + }, + "netcdf4-1.1.9-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.9*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "40ec49cd13251dcb4908ee9fd260d100", + "name": "netcdf4", + "requires": [], + "size": 1635846, + "version": "1.1.9" + }, + "netcdf4-1.2.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "4b881dffe7d5f8141b044c921b5feee0", + "name": "netcdf4", + "requires": [], + "size": 1453259, + "version": "1.2.1" + }, + "netcdf4-1.2.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "5d7610ca821f57226baa21934294406d", + "name": "netcdf4", + "requires": [], + "size": 1784538, + "version": "1.2.1" + }, + "netcdf4-1.2.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "6b65e6261e526c2389c71c608aec1777", + "name": "netcdf4", + "requires": [], + "size": 1752156, + "version": "1.2.1" + }, + "netcdf4-1.2.2-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "593b0d57d18b7e95acdbe1eef9b8d5a3", + "name": "netcdf4", + "requires": [], + "size": 1514004, + "version": "1.2.2" + }, + "netcdf4-1.2.2-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "7a50cc99d41ee4776fdb4e2a3b8de254", + "name": "netcdf4", + "requires": [], + "size": 1859840, + "version": "1.2.2" + }, + "netcdf4-1.2.2-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.10*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "8f46b1b39e768f1023c42ee4cc9bc372", + "name": "netcdf4", + "requires": [], + "size": 1825398, + "version": "1.2.2" + }, + "netcdf4-1.2.2-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.11*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "5ba0eacd59477eca9b52b2254b04a581", + "name": "netcdf4", + "requires": [], + "size": 1512600, + "version": "1.2.2" + }, + "netcdf4-1.2.2-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.11*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "560ec85fcb21c19d8466d10cbeaada2a", + "name": "netcdf4", + "requires": [], + "size": 1859562, + "version": "1.2.2" + }, + "netcdf4-1.2.2-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "hdf5 1.8.15.1", + "libnetcdf 4.3.3.1", + "numpy 1.11*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "MIT", + "md5": "56117a9205b2d0768411095512f24de4", + "name": "netcdf4", + "requires": [], + "size": 1824917, + "version": "1.2.2" + }, + "networkx-1.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "decorator", + "python 2.7*" + ], + "license": "BSD", + "md5": "58ca844abeaaa36bbcab3b6d6f72e7a6", + "name": "networkx", + "requires": [], + "size": 1158896, + "version": "1.10" + }, + "networkx-1.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "decorator", + "python 3.4*" + ], + "license": "BSD", + "md5": "f4b1c94d939501fadff9b547ef4ad5d8", + "name": "networkx", + "requires": [], + "size": 1202894, + "version": "1.10" + }, + "networkx-1.10-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "decorator", + "python 3.5*" + ], + "license": "BSD", + "md5": "ee1840748e6825c32c1251da7826ff28", + "name": "networkx", + "requires": [], + "size": 1201260, + "version": "1.10" + }, + "networkx-1.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "decorator >=3.4", + "python 2.7*" + ], + "license": "BSD", + "md5": "58015d5d4b112797b0ae0e9fa685476c", + "name": "networkx", + "requires": [], + "size": 1160923, + "version": "1.11" + }, + "networkx-1.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "decorator >=3.4", + "python 3.4*" + ], + "license": "BSD", + "md5": "31b1046e11bfaa13f1be39322e8575df", + "name": "networkx", + "requires": [], + "size": 1204212, + "version": "1.11" + }, + "networkx-1.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "decorator >=3.4", + "python 3.5*" + ], + "license": "BSD", + "md5": "5e5c96da519ba703cfa8a6491a8e5859", + "name": "networkx", + "requires": [], + "size": 1201694, + "version": "1.11" + }, + "networkx-1.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "089ee9e2ec216f4c58ac6d3d78482e87", + "name": "networkx", + "requires": [], + "size": 629224, + "version": "1.7" + }, + "networkx-1.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "df0e9ce94549501959223f0335576a53", + "name": "networkx", + "requires": [], + "size": 628423, + "version": "1.7" + }, + "networkx-1.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "23d927c1a04abb1b41667622f5b8de29", + "name": "networkx", + "requires": [], + "size": 670283, + "version": "1.7" + }, + "networkx-1.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "196922126b6db0b35ddb194e326278eb", + "name": "networkx", + "requires": [], + "size": 667135, + "version": "1.8" + }, + "networkx-1.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "932938c468e6a73212ee077d97e22a82", + "name": "networkx", + "requires": [], + "size": 665224, + "version": "1.8" + }, + "networkx-1.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "247ee852ffd8c0e6868ee2c08f656edf", + "name": "networkx", + "requires": [], + "size": 720217, + "version": "1.8" + }, + "networkx-1.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "d4225e54232646ec57e78cf8abc6d7b9", + "name": "networkx", + "requires": [], + "size": 667001, + "version": "1.8.1" + }, + "networkx-1.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8a238e533a54e18233c99f86cb1df202", + "name": "networkx", + "requires": [], + "size": 665242, + "version": "1.8.1" + }, + "networkx-1.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7de5f3e71d5565895814ec22fdd93dc3", + "name": "networkx", + "requires": [], + "size": 720163, + "version": "1.8.1" + }, + "networkx-1.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "2315d7b807a619b655bf7deff5563c79", + "name": "networkx", + "requires": [], + "size": 700457, + "version": "1.8.1" + }, + "networkx-1.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "decorator", + "python 2.6*" + ], + "license": "BSD", + "md5": "14f9953ec05777c46666c56878eabfa0", + "name": "networkx", + "requires": [], + "size": 959345, + "version": "1.9" + }, + "networkx-1.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "decorator", + "python 2.7*" + ], + "license": "BSD", + "md5": "f5394b8608324ab33c18de37c9b18f1f", + "name": "networkx", + "requires": [], + "size": 956500, + "version": "1.9" + }, + "networkx-1.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "decorator", + "python 3.3*" + ], + "license": "BSD", + "md5": "7f46c2d53a602be5d416069dee041d72", + "name": "networkx", + "requires": [], + "size": 1018134, + "version": "1.9" + }, + "networkx-1.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "decorator", + "python 3.4*" + ], + "license": "BSD", + "md5": "aa39e56a59dc047e50933b947449d1bc", + "name": "networkx", + "requires": [], + "size": 999997, + "version": "1.9" + }, + "networkx-1.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "decorator", + "python 2.6*" + ], + "license": "BSD", + "md5": "498c73d24e27be258f005115fa1ee1a5", + "name": "networkx", + "requires": [], + "size": 958441, + "version": "1.9.1" + }, + "networkx-1.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "decorator", + "python 2.7*" + ], + "license": "BSD", + "md5": "b2b93fb36579b8984aa6c999800c3194", + "name": "networkx", + "requires": [], + "size": 956900, + "version": "1.9.1" + }, + "networkx-1.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "decorator", + "python 3.3*" + ], + "license": "BSD", + "md5": "ec003f9c86ed114e81a469736cf3499b", + "name": "networkx", + "requires": [], + "size": 1018259, + "version": "1.9.1" + }, + "networkx-1.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "decorator", + "python 3.4*" + ], + "license": "BSD", + "md5": "faa88b8578986d7cc6fd92768ceec7bf", + "name": "networkx", + "requires": [], + "size": 1000419, + "version": "1.9.1" + }, + "nltk-2.0.3-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "a1145c12d7540d0887c77566bd5f9d4c", + "name": "nltk", + "requires": [], + "size": 1461186, + "version": "2.0.3" + }, + "nltk-2.0.3-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "4faa8a794ecca1a084bb063ac786e0fa", + "name": "nltk", + "requires": [], + "size": 1455900, + "version": "2.0.3" + }, + "nltk-2.0.3-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "6d3980001be5c7f6d3f4e4587f845fcd", + "name": "nltk", + "requires": [], + "size": 1461229, + "version": "2.0.3" + }, + "nltk-2.0.3-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "d397a0c7ca47dc6b5ce30c4fd86a4519", + "name": "nltk", + "requires": [], + "size": 1456565, + "version": "2.0.3" + }, + "nltk-2.0.3-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "777ebc92590839edcad20d796d173be8", + "name": "nltk", + "requires": [], + "size": 1460863, + "version": "2.0.3" + }, + "nltk-2.0.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "bbcd080c88fdbaec6f6c8779afec5084", + "name": "nltk", + "requires": [], + "size": 1456181, + "version": "2.0.3" + }, + "nltk-2.0.4-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "c7571c3791d92cc1cdd24ba677651701", + "name": "nltk", + "requires": [], + "size": 1461540, + "version": "2.0.4" + }, + "nltk-2.0.4-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "00bf4cbeda0ec6cad4262607b8598009", + "name": "nltk", + "requires": [], + "size": 1456245, + "version": "2.0.4" + }, + "nltk-2.0.4-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "39eb358943f4c7404c09f8fd7325688d", + "name": "nltk", + "requires": [], + "size": 1461191, + "version": "2.0.4" + }, + "nltk-2.0.4-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "646bcc3d91029f472ab2c23f05232232", + "name": "nltk", + "requires": [], + "size": 1456304, + "version": "2.0.4" + }, + "nltk-2.0.4-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "d5a85c454c03cee3717320faacacc931", + "name": "nltk", + "requires": [], + "size": 1461251, + "version": "2.0.4" + }, + "nltk-2.0.4-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "b05de4016d6631dbf1477696e7e3fbc9", + "name": "nltk", + "requires": [], + "size": 1456392, + "version": "2.0.4" + }, + "nltk-2.0.4-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "0f55561e08269ef884a5794959641f2c", + "name": "nltk", + "requires": [], + "size": 1461436, + "version": "2.0.4" + }, + "nltk-2.0.4-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "134758a1060d623195f6fe37a7729a1d", + "name": "nltk", + "requires": [], + "size": 1456652, + "version": "2.0.4" + }, + "nltk-3.0.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "6018fac60ff726f0c93a6ca671c0587b", + "name": "nltk", + "requires": [], + "size": 1503433, + "version": "3.0.0" + }, + "nltk-3.0.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "e7ecaebe9f71914ab5d0b6f0f1f2412c", + "name": "nltk", + "requires": [], + "size": 1501394, + "version": "3.0.0" + }, + "nltk-3.0.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "pyyaml" + ], + "license": "Apache", + "md5": "832867821af6651d4d4c1730e95f9195", + "name": "nltk", + "requires": [], + "size": 1629807, + "version": "3.0.0" + }, + "nltk-3.0.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "pyyaml" + ], + "license": "Apache", + "md5": "7d8b06af41d2cc2c65ceb2f4dbd4569c", + "name": "nltk", + "requires": [], + "size": 1604658, + "version": "3.0.0" + }, + "nltk-3.0.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "ee17380749259877ebed5883c0628ceb", + "name": "nltk", + "requires": [], + "size": 1503330, + "version": "3.0.0" + }, + "nltk-3.0.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "64a3a79eea67513e0612614d4cc707c6", + "name": "nltk", + "requires": [], + "size": 1501227, + "version": "3.0.0" + }, + "nltk-3.0.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "pyyaml" + ], + "license": "Apache", + "md5": "c1d632be1fa254d80ad8b066fe4c84aa", + "name": "nltk", + "requires": [], + "size": 1628405, + "version": "3.0.0" + }, + "nltk-3.0.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "pyyaml" + ], + "license": "Apache", + "md5": "511e4de8db2489b1d762d667ce64fb02", + "name": "nltk", + "requires": [], + "size": 1604273, + "version": "3.0.0" + }, + "nltk-3.0.0b1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "c2aa01c8c5219df29640dba3c3e8e952", + "name": "nltk", + "requires": [], + "size": 1491410, + "version": "3.0.0b1" + }, + "nltk-3.0.0b1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "ca49234479b0a43cc7030d0d931054d0", + "name": "nltk", + "requires": [], + "size": 1490627, + "version": "3.0.0b1" + }, + "nltk-3.0.0b1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "pyyaml" + ], + "license": "Apache", + "md5": "2fefbe5fddf99ea72beb1cdb9d07aeb7", + "name": "nltk", + "requires": [], + "size": 1610766, + "version": "3.0.0b1" + }, + "nltk-3.0.0b1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "pyyaml" + ], + "license": "Apache", + "md5": "cd7c85f05473337d9d8b5db0dfe30c26", + "name": "nltk", + "requires": [], + "size": 1581567, + "version": "3.0.0b1" + }, + "nltk-3.0.0b2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "a614a2b1001ca901f69461e331af5435", + "name": "nltk", + "requires": [], + "size": 1498509, + "version": "3.0.0b2" + }, + "nltk-3.0.0b2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "pyyaml" + ], + "license": "Apache", + "md5": "687a7e6b54e34b90a5284409f7bbedb1", + "name": "nltk", + "requires": [], + "size": 1626431, + "version": "3.0.0b2" + }, + "nltk-3.0.0b2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "pyyaml" + ], + "license": "Apache", + "md5": "19b17c659099547e126e5f5d4985c7f4", + "name": "nltk", + "requires": [], + "size": 1598777, + "version": "3.0.0b2" + }, + "nltk-3.0.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "24aa85c2cd7ae0e4a3d08e2a9910a112", + "name": "nltk", + "requires": [], + "size": 1503565, + "version": "3.0.1" + }, + "nltk-3.0.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "e08ce08123c705cea1a96b080d8e1696", + "name": "nltk", + "requires": [], + "size": 1501022, + "version": "3.0.1" + }, + "nltk-3.0.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "pyyaml" + ], + "license": "Apache", + "md5": "6690edb8ba051eea3acd00b4db50adda", + "name": "nltk", + "requires": [], + "size": 1629567, + "version": "3.0.1" + }, + "nltk-3.0.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "pyyaml" + ], + "license": "Apache", + "md5": "f275f7bf77b43d4f84b9d303625fa567", + "name": "nltk", + "requires": [], + "size": 1603851, + "version": "3.0.1" + }, + "nltk-3.0.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "a7d23c7316362a88258b031e94337a5b", + "name": "nltk", + "requires": [], + "size": 1554017, + "version": "3.0.2" + }, + "nltk-3.0.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "79b5390fd4b722af3bc95eac2e3cdba5", + "name": "nltk", + "requires": [], + "size": 1554937, + "version": "3.0.2" + }, + "nltk-3.0.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "pyyaml" + ], + "license": "Apache", + "md5": "53d8a58f5772f5efa1d420ac63b59f85", + "name": "nltk", + "requires": [], + "size": 1666685, + "version": "3.0.2" + }, + "nltk-3.0.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "pyyaml" + ], + "license": "Apache", + "md5": "fdd25cc59802ca8b47c7bec543426cf4", + "name": "nltk", + "requires": [], + "size": 1652756, + "version": "3.0.2" + }, + "nltk-3.0.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "510a5ccfa00b837c3963f4ff701fee89", + "name": "nltk", + "requires": [], + "size": 1584869, + "version": "3.0.3" + }, + "nltk-3.0.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "2f065851f02531d2a18eb0ace194325e", + "name": "nltk", + "requires": [], + "size": 1581026, + "version": "3.0.3" + }, + "nltk-3.0.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "pyyaml" + ], + "license": "Apache", + "md5": "fe810dc654fa7088b23acf0a8cc8345b", + "name": "nltk", + "requires": [], + "size": 1695851, + "version": "3.0.3" + }, + "nltk-3.0.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "pyyaml" + ], + "license": "Apache", + "md5": "5d7fedaee0893c4f6a31690a380f2c40", + "name": "nltk", + "requires": [], + "size": 1707326, + "version": "3.0.3" + }, + "nltk-3.0.4-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "pyyaml" + ], + "license": "Apache", + "md5": "3018ae98106ca20cf5727958151cc0fd", + "name": "nltk", + "requires": [], + "size": 1586742, + "version": "3.0.4" + }, + "nltk-3.0.4-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "pyyaml" + ], + "license": "Apache", + "md5": "ee132bd9966933454ecee427b680d3b4", + "name": "nltk", + "requires": [], + "size": 1583422, + "version": "3.0.4" + }, + "nltk-3.0.4-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "pyyaml" + ], + "license": "Apache", + "md5": "993fb274b5b0cb80c77ef8c300e63bd0", + "name": "nltk", + "requires": [], + "size": 1697929, + "version": "3.0.4" + }, + "nltk-3.0.4-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "pyyaml" + ], + "license": "Apache", + "md5": "72a03d84c6f96e74dff274b882a804d8", + "name": "nltk", + "requires": [], + "size": 1710093, + "version": "3.0.4" + }, + "nltk-3.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-09", + "depends": [ + "numpy", + "python 2.7*", + "pyyaml", + "six" + ], + "license": "Apache", + "md5": "5af60e68b033a943a2e9f26d6ca2bf3b", + "name": "nltk", + "requires": [], + "size": 1655283, + "version": "3.0.5" + }, + "nltk-3.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-09", + "depends": [ + "numpy", + "python 3.4*", + "pyyaml", + "six" + ], + "license": "Apache", + "md5": "c7e4f7dc00a673859c4db32ea98d042c", + "name": "nltk", + "requires": [], + "size": 1766629, + "version": "3.0.5" + }, + "nltk-3.0.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy", + "python 3.5*", + "pyyaml", + "six" + ], + "license": "Apache", + "md5": "e29746f40005caa2008d6735881c099a", + "name": "nltk", + "requires": [], + "size": 1761136, + "version": "3.0.5" + }, + "nltk-3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "numpy", + "python 2.7*", + "pyyaml", + "six" + ], + "license": "Apache", + "md5": "f9e018b5053985e09a1b09976fd1473b", + "name": "nltk", + "requires": [], + "size": 1744385, + "version": "3.1" + }, + "nltk-3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "numpy", + "python 3.4*", + "pyyaml", + "six" + ], + "license": "Apache", + "md5": "4efbfcff653bf62e541849eebb19f7cc", + "name": "nltk", + "requires": [], + "size": 1880676, + "version": "3.1" + }, + "nltk-3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "numpy", + "python 3.5*", + "pyyaml", + "six" + ], + "license": "Apache", + "md5": "f51de45b985c2a7f67fd4e5755a10f3d", + "name": "nltk", + "requires": [], + "size": 1873266, + "version": "3.1" + }, + "nltk-3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-03", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "1d47fc7e515239a8c48abc08f670c7fd", + "name": "nltk", + "requires": [], + "size": 1860979, + "version": "3.2" + }, + "nltk-3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-03", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "9e3c057fa40f004a15108582b1bf14f4", + "name": "nltk", + "requires": [], + "size": 1988666, + "version": "3.2" + }, + "nltk-3.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-03", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "c3df6709a0a5a70f685c9b4ab290504e", + "name": "nltk", + "requires": [], + "size": 1983914, + "version": "3.2" + }, + "node-0.8.7-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD", + "md5": "32a522f809700e4c804c725b92de357e", + "name": "node", + "requires": [], + "size": 4175682, + "version": "0.8.7" + }, + "node-webkit-0.10.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-09-02", + "depends": [], + "license": "MIT", + "md5": "66e84e94a11b5f05ff38b92217415ea8", + "name": "node-webkit", + "requires": [], + "size": 34970180, + "version": "0.10.1" + }, + "nomkl-1.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-20", + "depends": [], + "license": "BSD", + "md5": "333ef8c779974741baef090424fecb75", + "name": "nomkl", + "requires": [], + "size": 402, + "track_features": "nomkl", + "version": "1.0" + }, + "nose-1.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "31ed95366c56c7912af9e5a604acbe58", + "name": "nose", + "requires": [], + "size": 188044, + "version": "1.1.2" + }, + "nose-1.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "399fe653a4f1dcda3387914ec54d9381", + "name": "nose", + "requires": [], + "size": 187844, + "version": "1.1.2" + }, + "nose-1.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "c5c200d8efa79dbbb06ff9a5d2af2f14", + "name": "nose", + "requires": [], + "size": 98580, + "version": "1.1.2" + }, + "nose-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "bc78509b401925671fbde8c8fd3dd0c5", + "name": "nose", + "requires": [], + "size": 188737, + "version": "1.2.1" + }, + "nose-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "667033abfee8dadadda684791a22faea", + "name": "nose", + "requires": [], + "size": 188959, + "version": "1.2.1" + }, + "nose-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "58988c94abbf7d8b2e4bfa3d68dd4a76", + "name": "nose", + "requires": [], + "size": 203192, + "version": "1.2.1" + }, + "nose-1.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "56405db19ce9c3a40fc90de69dc70f54", + "name": "nose", + "requires": [], + "size": 191538, + "version": "1.3.0" + }, + "nose-1.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "bb50b8e5e8e096c826ea8d0faa755c3f", + "name": "nose", + "requires": [], + "size": 191573, + "version": "1.3.0" + }, + "nose-1.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "28b563dd36164523d18446c868a9f9a8", + "name": "nose", + "requires": [], + "size": 206659, + "version": "1.3.0" + }, + "nose-1.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "b2b7df15ca98217963d86aa1145e5412", + "name": "nose", + "requires": [], + "size": 193904, + "version": "1.3.1" + }, + "nose-1.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "0750456ed1e32d9db8e1216b4b3a441e", + "name": "nose", + "requires": [], + "size": 193614, + "version": "1.3.1" + }, + "nose-1.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "190262bcb502297e23a961849806e775", + "name": "nose", + "requires": [], + "size": 243259, + "version": "1.3.1" + }, + "nose-1.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "622e4ba886fcd188b87f184bc107d26b", + "name": "nose", + "requires": [], + "size": 195629, + "version": "1.3.1" + }, + "nose-1.3.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "c33188dddd86fd228a23fb897802ab6e", + "name": "nose", + "requires": [], + "size": 194038, + "version": "1.3.3" + }, + "nose-1.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "2d2a8fcd1bb2a08c75652b3038149db9", + "name": "nose", + "requires": [], + "size": 193695, + "version": "1.3.3" + }, + "nose-1.3.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "b286b38b1226ef8a9e0118fc1f1c4f7d", + "name": "nose", + "requires": [], + "size": 208584, + "version": "1.3.3" + }, + "nose-1.3.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "1af03fc8ff62031ee00e5d2194532e0d", + "name": "nose", + "requires": [], + "size": 195801, + "version": "1.3.3" + }, + "nose-1.3.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "b4da03ce8946fcd58e31bd1b68f05a31", + "name": "nose", + "requires": [], + "size": 194434, + "version": "1.3.4" + }, + "nose-1.3.4-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-03-09", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "89320532948282d7aff284d2b7940eb3", + "name": "nose", + "requires": [], + "size": 194365, + "version": "1.3.4" + }, + "nose-1.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "56a40c01c3cde3f6c05502ae36a83771", + "name": "nose", + "requires": [], + "size": 194023, + "version": "1.3.4" + }, + "nose-1.3.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-03-09", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "1f78e7b58e63349c4016b3b3bba550b9", + "name": "nose", + "requires": [], + "size": 194042, + "version": "1.3.4" + }, + "nose-1.3.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "1792729be721598a48965dba76cd9311", + "name": "nose", + "requires": [], + "size": 208470, + "version": "1.3.4" + }, + "nose-1.3.4-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-03-09", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "b10ee5b4a00aeea16b7900311f8cb5fc", + "name": "nose", + "requires": [], + "size": 212661, + "version": "1.3.4" + }, + "nose-1.3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "ff2fb06d326a5b4ec7352e06ffe5dfc5", + "name": "nose", + "requires": [], + "size": 195887, + "version": "1.3.4" + }, + "nose-1.3.4-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-03-09", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "18fd9d28bdb2310e1c3f4223e274f5d8", + "name": "nose", + "requires": [], + "size": 199961, + "version": "1.3.4" + }, + "nose-1.3.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "4297184a26f76de19a880fec4f105df6", + "name": "nose", + "requires": [], + "size": 198881, + "version": "1.3.6" + }, + "nose-1.3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "0c649d547ecd5dab62a8dbacf887b688", + "name": "nose", + "requires": [], + "size": 198974, + "version": "1.3.6" + }, + "nose-1.3.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "7cdce96097a9dfe96c4f25273c2971b3", + "name": "nose", + "requires": [], + "size": 213298, + "version": "1.3.6" + }, + "nose-1.3.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-10", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "d0ad10038f6f9e3429824074ae7a736b", + "name": "nose", + "requires": [], + "size": 199967, + "version": "1.3.6" + }, + "nose-1.3.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "6d0ce58ff56ef8407a21f7af157cdac2", + "name": "nose", + "requires": [], + "size": 198663, + "version": "1.3.7" + }, + "nose-1.3.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "0db08231928b8f3a129da0abe3add443", + "name": "nose", + "requires": [], + "size": 198741, + "version": "1.3.7" + }, + "nose-1.3.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 3.3*" + ], + "license": "LGPL", + "md5": "f50afc834275e75c736049101976a0c2", + "name": "nose", + "requires": [], + "size": 213005, + "version": "1.3.7" + }, + "nose-1.3.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 3.4*" + ], + "license": "LGPL", + "md5": "9e6c11fc016196e58bfd27ba60fe63c2", + "name": "nose", + "requires": [], + "size": 199563, + "version": "1.3.7" + }, + "nose-1.3.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "LGPL", + "md5": "67bb78bbe165a1374c7a5afc936fa0e6", + "name": "nose", + "requires": [], + "size": 198712, + "version": "1.3.7" + }, + "notebook-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "ipython_genutils 0.1.0", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 2.7*", + "terminado 0.5", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "b2ac4b4edc5dec6cdeafe1e6de96be29", + "name": "notebook", + "requires": [], + "size": 4449244, + "version": "4.0.1" + }, + "notebook-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "ipython_genutils 0.1.0", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.4*", + "terminado 0.5", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "78fd98821d217d823b02b76686e72c3c", + "name": "notebook", + "requires": [], + "size": 4437555, + "version": "4.0.1" + }, + "notebook-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-17", + "depends": [ + "ipykernel", + "ipython_genutils 0.1.0", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 2.7*", + "terminado 0.5", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "e74c47e0ee252814a40f89a53210603b", + "name": "notebook", + "requires": [], + "size": 4453442, + "version": "4.0.2" + }, + "notebook-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-17", + "depends": [ + "ipykernel", + "ipython_genutils 0.1.0", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.4*", + "terminado 0.5", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "a8ef0a75098d280ffae01b8a67e25c4b", + "name": "notebook", + "requires": [], + "size": 4442928, + "version": "4.0.2" + }, + "notebook-4.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-28", + "depends": [ + "ipykernel", + "ipython_genutils 0.1.0", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 2.7*", + "terminado 0.5", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "04e38304548e9a291caed03fcaefb3d2", + "name": "notebook", + "requires": [], + "size": 4456997, + "version": "4.0.4" + }, + "notebook-4.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-28", + "depends": [ + "ipykernel", + "ipython_genutils 0.1.0", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.4*", + "terminado 0.5", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "bb2f37bc651dd92443e0785bf60498a3", + "name": "notebook", + "requires": [], + "size": 4444968, + "version": "4.0.4" + }, + "notebook-4.0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipykernel", + "ipython_genutils 0.1.0", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.5*", + "terminado 0.5", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "ecfadd99f81f444147993d69c90ac0c7", + "name": "notebook", + "requires": [], + "size": 4444004, + "version": "4.0.4" + }, + "notebook-4.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 2.7*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "e16be98f5d8e249c89554bde83725a4b", + "name": "notebook", + "requires": [], + "size": 4457598, + "version": "4.0.5" + }, + "notebook-4.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.4*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "0d76779cbba94a12e46330de6764f5ce", + "name": "notebook", + "requires": [], + "size": 4444712, + "version": "4.0.5" + }, + "notebook-4.0.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.5*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "cda4ca9d1b7b0d64884936faab846b09", + "name": "notebook", + "requires": [], + "size": 4444193, + "version": "4.0.5" + }, + "notebook-4.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 2.7*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "edad180eacaf83bc398d018ae309532f", + "name": "notebook", + "requires": [], + "size": 4476399, + "version": "4.0.6" + }, + "notebook-4.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.4*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "4f239933984ce38225fe09cf2580cd21", + "name": "notebook", + "requires": [], + "size": 4469894, + "version": "4.0.6" + }, + "notebook-4.0.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.5*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "c148a2e0928f0c3709b28840847e068b", + "name": "notebook", + "requires": [], + "size": 4469203, + "version": "4.0.6" + }, + "notebook-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 2.7*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "20a1d66d8766fbcd7fec0f755cbbb8b5", + "name": "notebook", + "requires": [], + "size": 4578500, + "version": "4.1.0" + }, + "notebook-4.1.0-py27_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": "8080", + "name": "port", + "summary": "Server port ..." + } + ], + "app_entry": "jupyter-notebook", + "app_type": "web", + "build": "py27_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 2.7*", + "terminado", + "tornado", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "2cfa49e7bb4b41c4506b7ebeca07bb8f", + "name": "notebook", + "requires": [], + "size": 4602028, + "summary": "Jupyter Notebook", + "type": "app", + "version": "4.1.0" + }, + "notebook-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.4*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "464eb6f2c03b4ad5da01f73486a793c3", + "name": "notebook", + "requires": [], + "size": 4568469, + "version": "4.1.0" + }, + "notebook-4.1.0-py34_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": "8080", + "name": "port", + "summary": "Server port ..." + } + ], + "app_entry": "jupyter-notebook", + "app_type": "web", + "build": "py34_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.4*", + "terminado", + "tornado", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "2065652e42dd8c9c3de78a76a277ba11", + "name": "notebook", + "requires": [], + "size": 4608410, + "summary": "Jupyter Notebook", + "type": "app", + "version": "4.1.0" + }, + "notebook-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.5*", + "terminado", + "tornado", + "traitlets" + ], + "license": "BSD", + "md5": "35a988c211342f70579e61eee3b0cdf0", + "name": "notebook", + "requires": [], + "size": 4566418, + "version": "4.1.0" + }, + "notebook-4.1.0-py35_1.tar.bz2": { + "app_cli_opts": [ + { + "args": "--port %s", + "default": "8080", + "name": "port", + "summary": "Server port ..." + } + ], + "app_entry": "jupyter-notebook", + "app_type": "web", + "build": "py35_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "ipykernel", + "ipython_genutils", + "jinja2", + "jupyter_client", + "jupyter_core", + "nbconvert", + "nbformat", + "python 3.5*", + "terminado", + "tornado", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "43a3b21d3249dc8daf66ded84eb09a18", + "name": "notebook", + "requires": [], + "size": 4606443, + "summary": "Jupyter Notebook", + "type": "app", + "version": "4.1.0" + }, + "numba-0.1.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3.dev", + "meta 0.4.2.dev", + "nose", + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "3e5325b783f56734b3920078e6bfca48", + "name": "numba", + "requires": [], + "size": 305392, + "version": "0.1.1" + }, + "numba-0.1.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3.dev", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "00b3626102e0a556f0f04966b540446b", + "name": "numba", + "requires": [], + "size": 305792, + "version": "0.1.1" + }, + "numba-0.1.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3.dev", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "4e0a08a62d0bb4e1357f21133fa23e9f", + "name": "numba", + "requires": [], + "size": 305641, + "version": "0.1.1" + }, + "numba-0.1.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3.dev", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "6ba459c7f9a53d4fad97fdc00e6e74c3", + "name": "numba", + "requires": [], + "size": 305770, + "version": "0.1.1" + }, + "numba-0.1.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3.dev", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "61773e3f8324b9e25d4a1639af8fbdfd", + "name": "numba", + "requires": [], + "size": 301061, + "version": "0.1.1" + }, + "numba-0.10.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.11.3", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "ebd9088ad00eb73682bac06e32dcdfbd", + "name": "numba", + "requires": [], + "size": 1128284, + "version": "0.10.0" + }, + "numba-0.10.0-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "26ab5475adc8ab610b6637d81f24b4a4", + "name": "numba", + "requires": [], + "size": 1128705, + "version": "0.10.0" + }, + "numba-0.10.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.11.3", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7e7bba60f94a4a57b4bb776382b594e8", + "name": "numba", + "requires": [], + "size": 1125227, + "version": "0.10.0" + }, + "numba-0.10.0-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "24bcd77a78a0237d5237f5b70d4269ce", + "name": "numba", + "requires": [], + "size": 1125221, + "version": "0.10.0" + }, + "numba-0.10.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.11.3", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "54cc9b41cf327d074ad01a3d515ebab9", + "name": "numba", + "requires": [], + "size": 1132037, + "version": "0.10.0" + }, + "numba-0.10.0-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "a99882a640d2823b6b1c19d69b2d8d19", + "name": "numba", + "requires": [], + "size": 1132239, + "version": "0.10.0" + }, + "numba-0.10.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.11.3", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "4238218b3292f9fbcff80e34e4502089", + "name": "numba", + "requires": [], + "size": 1129588, + "version": "0.10.0" + }, + "numba-0.10.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "970e3cba008cf5b3dc7845a0a12e8c51", + "name": "numba", + "requires": [], + "size": 1128881, + "version": "0.10.0" + }, + "numba-0.10.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.11.3", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "5aebc1686cbf56be2dd17b16c26f7f2e", + "name": "numba", + "requires": [], + "size": 1208830, + "version": "0.10.0" + }, + "numba-0.10.0-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "255b41c116a834a96d707c583a4e41a3", + "name": "numba", + "requires": [], + "size": 1209130, + "version": "0.10.0" + }, + "numba-0.10.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "f359bdde4534f639797e9d41911dd88e", + "name": "numba", + "requires": [], + "size": 1244283, + "version": "0.10.1" + }, + "numba-0.10.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "5118f8557a2a5d4a7b2d576e00bd5068", + "name": "numba", + "requires": [], + "size": 1243534, + "version": "0.10.1" + }, + "numba-0.10.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "ee42b65d4dcc9addd24bc96098b162aa", + "name": "numba", + "requires": [], + "size": 1247839, + "version": "0.10.1" + }, + "numba-0.10.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9d4c8811685ee14766228ef66b48373e", + "name": "numba", + "requires": [], + "size": 1246257, + "version": "0.10.1" + }, + "numba-0.10.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "306d21fa54342be63baa34b82993decc", + "name": "numba", + "requires": [], + "size": 1280180, + "version": "0.10.1" + }, + "numba-0.10.2-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "019c190114d162190a203ecccc9f72f8", + "name": "numba", + "requires": [], + "size": 1246961, + "version": "0.10.2" + }, + "numba-0.10.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "61d39db43de72d331d1dbbce2715dd8d", + "name": "numba", + "requires": [], + "size": 1245435, + "version": "0.10.2" + }, + "numba-0.10.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "cc6de82d6279f27818a8763fb1e0b2a4", + "name": "numba", + "requires": [], + "size": 1250012, + "version": "0.10.2" + }, + "numba-0.10.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e2531723c0dbb304195f80bf2cd872cd", + "name": "numba", + "requires": [], + "size": 1247805, + "version": "0.10.2" + }, + "numba-0.10.2-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "cdea166ddc3638c350545eca87e2fc9f", + "name": "numba", + "requires": [], + "size": 1283605, + "version": "0.10.2" + }, + "numba-0.11.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "0af415cf496a15ca6d645ab29214dcf1", + "name": "numba", + "requires": [], + "size": 1297660, + "version": "0.11.0" + }, + "numba-0.11.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "552fe8f5b4bc2536d80e457c31f5f635", + "name": "numba", + "requires": [], + "size": 1296994, + "version": "0.11.0" + }, + "numba-0.11.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "14000def627de3bb7adba6c131a55793", + "name": "numba", + "requires": [], + "size": 1300729, + "version": "0.11.0" + }, + "numba-0.11.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "f0a432b0c81a0e7adc797cbf41c83eb3", + "name": "numba", + "requires": [], + "size": 1300643, + "version": "0.11.0" + }, + "numba-0.11.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.1", + "llvmpy 0.12.0", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "894c5f4bc55fcf8fbed808c21119bce8", + "name": "numba", + "requires": [], + "size": 1332374, + "version": "0.11.0" + }, + "numba-0.11.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.2", + "llvmpy 0.12.1", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "84a25caf9ee519fc0d4ff823bf75b09f", + "name": "numba", + "requires": [], + "size": 1321398, + "version": "0.11.1" + }, + "numba-0.11.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.2", + "llvmpy 0.12.1", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "aa34c1cdc07193a3569d89d049c69bb0", + "name": "numba", + "requires": [], + "size": 1320505, + "version": "0.11.1" + }, + "numba-0.11.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.2", + "llvmpy 0.12.1", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "04bc244353f94f55146f3e9c0f049ca4", + "name": "numba", + "requires": [], + "size": 1323764, + "version": "0.11.1" + }, + "numba-0.11.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.2", + "llvmpy 0.12.1", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d46f0e2125e722d0792474522ae75346", + "name": "numba", + "requires": [], + "size": 1323364, + "version": "0.11.1" + }, + "numba-0.11.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.2", + "llvmpy 0.12.1", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "e1674d9db01b22e1764a33495d64d02d", + "name": "numba", + "requires": [], + "size": 1367671, + "version": "0.11.1" + }, + "numba-0.12.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.2", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "5b6084fd04cd308919d0cd1ebd2526cb", + "name": "numba", + "requires": [], + "size": 363985, + "version": "0.12.0" + }, + "numba-0.12.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.2", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "72ca9e09ca2e5f71b9c42248ba36279d", + "name": "numba", + "requires": [], + "size": 361727, + "version": "0.12.0" + }, + "numba-0.12.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.2", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "0d4da5589f9878c4f1693e453f9d5779", + "name": "numba", + "requires": [], + "size": 378563, + "version": "0.12.0" + }, + "numba-0.12.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.3", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "383f48c7dd8c3a223127c93bb5729648", + "name": "numba", + "requires": [], + "size": 396222, + "version": "0.12.1" + }, + "numba-0.12.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.3", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "52c28db3aaab7558e1692f86ec8b0633", + "name": "numba", + "requires": [], + "size": 393190, + "version": "0.12.1" + }, + "numba-0.12.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.3", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "7847d9e24596a86c7ad9e0147124ce6e", + "name": "numba", + "requires": [], + "size": 408455, + "version": "0.12.1" + }, + "numba-0.12.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.3", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "2e4c0b9ecc23d98b7999983f94ca0754", + "name": "numba", + "requires": [], + "size": 419034, + "version": "0.12.2" + }, + "numba-0.12.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.3", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c2b2c28dfa5c14325e22f3ad8b2f4574", + "name": "numba", + "requires": [], + "size": 416640, + "version": "0.12.2" + }, + "numba-0.12.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.3", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "9df928ed2246ccd989205a6786905c89", + "name": "numba", + "requires": [], + "size": 434680, + "version": "0.12.2" + }, + "numba-0.13.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.4", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "095d2e670630a9ed6e777e7fae3f15f2", + "name": "numba", + "requires": [], + "size": 568644, + "version": "0.13.0" + }, + "numba-0.13.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.4", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "ead3ff5c4c5f39977dd9fa6ce5aa0a8d", + "name": "numba", + "requires": [], + "size": 565082, + "version": "0.13.0" + }, + "numba-0.13.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.4", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "223974e24a8245082ef0a00a8df53167", + "name": "numba", + "requires": [], + "size": 589091, + "version": "0.13.0" + }, + "numba-0.13.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.4", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "3613e63fed8dd88a624f81e6667395a5", + "name": "numba", + "requires": [], + "size": 587727, + "version": "0.13.0" + }, + "numba-0.13.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.4", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "747633f5410c76bee91336fcd1dd09dd", + "name": "numba", + "requires": [], + "size": 580688, + "version": "0.13.1" + }, + "numba-0.13.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.4", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "316fcfa67cefa9c5a11ca1a92766b081", + "name": "numba", + "requires": [], + "size": 578400, + "version": "0.13.1" + }, + "numba-0.13.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.4", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "c09364ba4a1670a6a60d6ff717331450", + "name": "numba", + "requires": [], + "size": 600395, + "version": "0.13.1" + }, + "numba-0.13.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.4", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "0aaf77eadfe373398ca41c53322c8f8c", + "name": "numba", + "requires": [], + "size": 597818, + "version": "0.13.1" + }, + "numba-0.13.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.6", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "17f3980810f83ad6e38b5620ad15f717", + "name": "numba", + "requires": [], + "size": 636226, + "version": "0.13.2" + }, + "numba-0.13.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.6", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "091f82651f3dfd58920a876c3f4a0fe5", + "name": "numba", + "requires": [], + "size": 632730, + "version": "0.13.2" + }, + "numba-0.13.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.6", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "eb07f241de4a69089037efb24cfd5920", + "name": "numba", + "requires": [], + "size": 657846, + "version": "0.13.2" + }, + "numba-0.13.2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.6", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "2868cf2e0b567ff48efa1f70655f5231", + "name": "numba", + "requires": [], + "size": 659697, + "version": "0.13.2" + }, + "numba-0.13.3-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.6", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "3cd45538662f7bcdf06644979f9407f7", + "name": "numba", + "requires": [], + "size": 682201, + "version": "0.13.3" + }, + "numba-0.13.3-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.6", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7e0c9b97981d8d68bac86a72f08df573", + "name": "numba", + "requires": [], + "size": 679240, + "version": "0.13.3" + }, + "numba-0.13.3-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.6", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "ecccdc83b433774a12429d2d985877ca", + "name": "numba", + "requires": [], + "size": 706489, + "version": "0.13.3" + }, + "numba-0.13.3-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.6", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "6f165dfdd1d9e7878763a09875a8cb65", + "name": "numba", + "requires": [], + "size": 704306, + "version": "0.13.3" + }, + "numba-0.13.4-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.8*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "df708a1f53701ccc4d5563488a1fbea9", + "name": "numba", + "requires": [], + "size": 709667, + "version": "0.13.4" + }, + "numba-0.13.4-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d0f3881c1c12fe8a7d75d5da3bf07e20", + "name": "numba", + "requires": [], + "size": 706021, + "version": "0.13.4" + }, + "numba-0.13.4-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "a3cc74f02658c9f7483ecacb8334bb0f", + "name": "numba", + "requires": [], + "size": 740974, + "version": "0.13.4" + }, + "numba-0.13.4-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "6e237ce710fb9132e468cf53c33945ab", + "name": "numba", + "requires": [], + "size": 734477, + "version": "0.13.4" + }, + "numba-0.14.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "58372f6c489485df197e5f69b5c847cf", + "name": "numba", + "requires": [], + "size": 840125, + "version": "0.14.0" + }, + "numba-0.14.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "b96ac7b93b0628f7d1f683d42bf113a1", + "name": "numba", + "requires": [], + "size": 835748, + "version": "0.14.0" + }, + "numba-0.14.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "7e0c1e62cd8c7ba338ad16cfee075130", + "name": "numba", + "requires": [], + "size": 893683, + "version": "0.14.0" + }, + "numba-0.14.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "0e5d59656b9b8950e861effc8b7ff515", + "name": "numba", + "requires": [], + "size": 875350, + "version": "0.14.0" + }, + "numba-0.15.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-10-15", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "9fdfdd2b8d14a2ebae9b2106cd0bccc7", + "name": "numba", + "requires": [], + "size": 888789, + "version": "0.15.1" + }, + "numba-0.15.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-15", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "5c4a7d8ab71f3469ed39040c8db21405", + "name": "numba", + "requires": [], + "size": 883890, + "version": "0.15.1" + }, + "numba-0.15.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-10-15", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "abe10cd1b33d743175a809f3038c2714", + "name": "numba", + "requires": [], + "size": 943588, + "version": "0.15.1" + }, + "numba-0.15.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-10-15", + "depends": [ + "llvmpy 0.12.7", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "e3639b32e6e97ba92e124d2f7861a5ba", + "name": "numba", + "requires": [], + "size": 923747, + "version": "0.15.1" + }, + "numba-0.16.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-12-17", + "depends": [ + "llvmlite 0.2.0", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "5674608c56e9d910d05f6034ecb0218c", + "name": "numba", + "requires": [], + "size": 914344, + "version": "0.16.0" + }, + "numba-0.16.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-17", + "depends": [ + "llvmlite 0.2.0", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "3091be10a97a1da0f23afc79ea30651d", + "name": "numba", + "requires": [], + "size": 908123, + "version": "0.16.0" + }, + "numba-0.16.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-17", + "depends": [ + "llvmlite 0.2.0", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "b848dfad94c6ef7a1d98dee9b1358d90", + "name": "numba", + "requires": [], + "size": 967691, + "version": "0.16.0" + }, + "numba-0.16.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-17", + "depends": [ + "llvmlite 0.2.0", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "7176a5fcac95c88dcfd5a351e3db6863", + "name": "numba", + "requires": [], + "size": 952044, + "version": "0.16.0" + }, + "numba-0.17.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-04", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.2.2", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "ece9225f5d6b58d2d8f8ea913a54ac0c", + "name": "numba", + "requires": [], + "size": 959999, + "version": "0.17.0" + }, + "numba-0.17.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-04", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.2.2", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "04e3260b27001377c29f4f31faed5629", + "name": "numba", + "requires": [], + "size": 955486, + "version": "0.17.0" + }, + "numba-0.17.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-04", + "depends": [ + "llvmlite 0.2.2", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "f7e3473bfdf34c283c373b958b3c3ef1", + "name": "numba", + "requires": [], + "size": 1010312, + "version": "0.17.0" + }, + "numba-0.17.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-04", + "depends": [ + "llvmlite 0.2.2", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "142622153bc95b83d26913d3ea71dbd1", + "name": "numba", + "requires": [], + "size": 993310, + "version": "0.17.0" + }, + "numba-0.18.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.4.0", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "8c535c78357ac9b8d5dd7c3a5a8c1cc0", + "name": "numba", + "requires": [], + "size": 1104011, + "version": "0.18.1" + }, + "numba-0.18.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.4.0", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "49e1e209add6b2b8ffbcabdcdc80de19", + "name": "numba", + "requires": [], + "size": 1097949, + "version": "0.18.1" + }, + "numba-0.18.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "llvmlite 0.4.0", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "a68bdbc4cb9f1ac0cd1eec3e6b165024", + "name": "numba", + "requires": [], + "size": 1177009, + "version": "0.18.1" + }, + "numba-0.18.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-02", + "depends": [ + "llvmlite 0.4.0", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "40f2f09e4727c2ccb5775cfcc1978300", + "name": "numba", + "requires": [], + "size": 1162657, + "version": "0.18.1" + }, + "numba-0.18.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-08", + "depends": [ + "argparse", + "funcsigs", + "llvmlite 0.4.0", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "d715ae43a5af895ef0a7bbb815e66d1f", + "name": "numba", + "requires": [], + "size": 1130882, + "version": "0.18.2" + }, + "numba-0.18.2-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.4.0", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "97aea7a34320d6ab50eab2729c1efbc0", + "name": "numba", + "requires": [], + "size": 1137174, + "version": "0.18.2" + }, + "numba-0.18.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-08", + "depends": [ + "funcsigs", + "llvmlite 0.4.0", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "8feae599dcad984b2fe2a2a0f9691c42", + "name": "numba", + "requires": [], + "size": 1124694, + "version": "0.18.2" + }, + "numba-0.18.2-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.4.0", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9e0471a28c87628476567ddbeaa74199", + "name": "numba", + "requires": [], + "size": 1130952, + "version": "0.18.2" + }, + "numba-0.18.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-08", + "depends": [ + "llvmlite 0.4.0", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "df35f79aa23a10bcf0011c20a14b6414", + "name": "numba", + "requires": [], + "size": 1198715, + "version": "0.18.2" + }, + "numba-0.18.2-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "llvmlite 0.4.0", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "de81d6a4f7f0d2ee920ee3c0ded2aff4", + "name": "numba", + "requires": [], + "size": 1207619, + "version": "0.18.2" + }, + "numba-0.18.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-08", + "depends": [ + "llvmlite 0.4.0", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "8c25a5600d15ba9d534cbfb56a67d7bc", + "name": "numba", + "requires": [], + "size": 1196347, + "version": "0.18.2" + }, + "numba-0.18.2-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "llvmlite 0.4.0", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "4663088b092ecd56ddeb5f1cda6972fe", + "name": "numba", + "requires": [], + "size": 1200559, + "version": "0.18.2" + }, + "numba-0.19.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.5.0", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "cec1f46a35adbbe5d0f9847062b92647", + "name": "numba", + "requires": [], + "size": 1273063, + "version": "0.19.1" + }, + "numba-0.19.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.5.0", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "338b546d894eb5362d3b4fea747c3312", + "name": "numba", + "requires": [], + "size": 1267211, + "version": "0.19.1" + }, + "numba-0.19.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "llvmlite 0.5.0", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "86afb6c384725d595fae72e3fc26b7df", + "name": "numba", + "requires": [], + "size": 1336980, + "version": "0.19.1" + }, + "numba-0.19.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "llvmlite 0.5.0", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "48d8e4e3b98e0a25f96b7d1b7a3c1c10", + "name": "numba", + "requires": [], + "size": 1338132, + "version": "0.19.1" + }, + "numba-0.2-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3", + "meta 0.4.2.dev", + "nose", + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD", + "md5": "c51f724a6b4f6282ce2220c24f9b902b", + "name": "numba", + "requires": [], + "size": 305304, + "version": "0.2" + }, + "numba-0.2-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3", + "meta 0.4.2.dev", + "nose", + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "2c889f9a17d501e3a4fe9e77b37a4440", + "name": "numba", + "requires": [], + "size": 305210, + "version": "0.2" + }, + "numba-0.2-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "6f0015be243b2e14517afa35420ef566", + "name": "numba", + "requires": [], + "size": 305286, + "version": "0.2" + }, + "numba-0.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a4c0fafd78eb51f53731edf000924b64", + "name": "numba", + "requires": [], + "size": 305141, + "version": "0.2" + }, + "numba-0.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "93516bfd4938c137f14231fd27133c98", + "name": "numba", + "requires": [], + "size": 305359, + "version": "0.2" + }, + "numba-0.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.8.3", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "03ab8b2230bbfb4edd488d211d0fe7e6", + "name": "numba", + "requires": [], + "size": 305174, + "version": "0.2" + }, + "numba-0.20.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.6.0", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c651296819e6a4e2f0d16fce14a131ed", + "name": "numba", + "requires": [], + "size": 1257472, + "version": "0.20.0" + }, + "numba-0.20.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.6.0", + "numpy 1.9*", + "python 2.6*", + "unittest2" + ], + "license": "BSD", + "md5": "2eb1393eee6f75abb634d8fca607725b", + "name": "numba", + "requires": [], + "size": 1264516, + "version": "0.20.0" + }, + "numba-0.20.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.6.0", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a3fea579f70d43d71bf57eda2f73811d", + "name": "numba", + "requires": [], + "size": 1257785, + "version": "0.20.0" + }, + "numba-0.20.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "llvmlite 0.6.0", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "a1fa7953024e2de7f7e4e143681e9baf", + "name": "numba", + "requires": [], + "size": 1337622, + "version": "0.20.0" + }, + "numba-0.20.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "llvmlite 0.6.0", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "f97f5705e2786db2e9cc64f1f5d93868", + "name": "numba", + "requires": [], + "size": 1323071, + "version": "0.20.0" + }, + "numba-0.21.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.7.0", + "numpy 1.10*", + "python 2.7*", + "singledispatch 3.4.0.3" + ], + "license": "BSD", + "md5": "33108a3362831dd32bdefbec475c9a4a", + "name": "numba", + "requires": [], + "size": 1473871, + "version": "0.21.0" + }, + "numba-0.21.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "llvmlite 0.7.0", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "a3bbccc5ca787be132be22ee8483aca8", + "name": "numba", + "requires": [], + "size": 1553147, + "version": "0.21.0" + }, + "numba-0.21.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "funcsigs 0.4", + "llvmlite 0.7.0", + "numpy 1.9*", + "python 2.7*", + "singledispatch 3.4.0.3" + ], + "license": "BSD", + "md5": "665885cad0739c00323f8ea673abf54c", + "name": "numba", + "requires": [], + "size": 1431320, + "version": "0.21.0" + }, + "numba-0.21.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "llvmlite 0.7.0", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "18af9c0470915b5343a76f31b9ae9fd9", + "name": "numba", + "requires": [], + "size": 1524808, + "version": "0.21.0" + }, + "numba-0.22.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "funcsigs", + "llvmlite 0.8*", + "numpy 1.10*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "bb7622d79163bf51888b97b59834d4f9", + "name": "numba", + "requires": [], + "size": 1769188, + "version": "0.22.1" + }, + "numba-0.22.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "llvmlite 0.8*", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "bb6069c7cd4224c16b18eafc2255c52f", + "name": "numba", + "requires": [], + "size": 1853152, + "version": "0.22.1" + }, + "numba-0.22.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "llvmlite 0.8*", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "91feb722fca0e5dc48160c7a0cf59fd1", + "name": "numba", + "requires": [], + "size": 1851056, + "version": "0.22.1" + }, + "numba-0.22.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "funcsigs", + "llvmlite 0.8*", + "numpy 1.9*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "1aa446ade5ddd79d0e42a59bf763da92", + "name": "numba", + "requires": [], + "size": 1730362, + "version": "0.22.1" + }, + "numba-0.22.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "llvmlite 0.8*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "e0c91e4c70becdb8a14733cd233a0033", + "name": "numba", + "requires": [], + "size": 1823982, + "version": "0.22.1" + }, + "numba-0.22.1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "llvmlite 0.8*", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "53319777f22b054a14f8fafe590d137a", + "name": "numba", + "requires": [], + "size": 1822762, + "version": "0.22.1" + }, + "numba-0.23.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "funcsigs", + "llvmlite 0.8*", + "numpy 1.10*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "2923cb2c92f4d74dae74376f770253b6", + "name": "numba", + "requires": [], + "size": 1864269, + "version": "0.23.0" + }, + "numba-0.23.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "llvmlite 0.8*", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "1d6d8ebcd0d5396b33f5517b9c72825f", + "name": "numba", + "requires": [], + "size": 1935460, + "version": "0.23.0" + }, + "numba-0.23.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "llvmlite 0.8*", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "6f0aec88fc9b17e09ece5f4fed1f5b73", + "name": "numba", + "requires": [], + "size": 1932874, + "version": "0.23.0" + }, + "numba-0.23.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "funcsigs", + "llvmlite 0.8*", + "numpy 1.9*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "f3e2ea843688fd657fa38c48f541c244", + "name": "numba", + "requires": [], + "size": 1829274, + "version": "0.23.0" + }, + "numba-0.23.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "llvmlite 0.8*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "44d074021338cdb223fbd0cda50bb4a3", + "name": "numba", + "requires": [], + "size": 1906517, + "version": "0.23.0" + }, + "numba-0.23.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "llvmlite 0.8*", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "797ce3a068245e7e1cf7655129e00648", + "name": "numba", + "requires": [], + "size": 1905193, + "version": "0.23.0" + }, + "numba-0.23.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "funcsigs", + "llvmlite 0.8*", + "numpy 1.10*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "f5e29851404ed5fc9514a39266ed9568", + "name": "numba", + "requires": [], + "size": 1867566, + "version": "0.23.1" + }, + "numba-0.23.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "llvmlite 0.8*", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "25bca7fec84ada9db7e699ff1041cdb0", + "name": "numba", + "requires": [], + "size": 1939780, + "version": "0.23.1" + }, + "numba-0.23.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "llvmlite 0.8*", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "5d8fbfeaf8c8cce957139f099d9e7e34", + "name": "numba", + "requires": [], + "size": 1938481, + "version": "0.23.1" + }, + "numba-0.23.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "funcsigs", + "llvmlite 0.8*", + "numpy 1.9*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "17818589c75508a857b3d98d36e55905", + "name": "numba", + "requires": [], + "size": 1834659, + "version": "0.23.1" + }, + "numba-0.23.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "llvmlite 0.8*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "ca37d00394386159e557cc6171d9764b", + "name": "numba", + "requires": [], + "size": 1911071, + "version": "0.23.1" + }, + "numba-0.23.1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2016-01-20", + "depends": [ + "llvmlite 0.8*", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "9b8306644458abc3ae4d0278176c1443", + "name": "numba", + "requires": [], + "size": 1908686, + "version": "0.23.1" + }, + "numba-0.24.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "funcsigs", + "llvmlite 0.9.*", + "numpy 1.10*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "08e5a5ea7087fbc91b38a2bc02c27c8d", + "name": "numba", + "requires": [], + "size": 1919155, + "version": "0.24.0" + }, + "numba-0.24.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "llvmlite 0.9.*", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "9d851a3e294eeb6a10a16d2b95e69fb8", + "name": "numba", + "requires": [], + "size": 1991475, + "version": "0.24.0" + }, + "numba-0.24.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-03-02", + "depends": [ + "llvmlite 0.9.*", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "714e71b96b5660caecb587a87ad8b359", + "name": "numba", + "requires": [], + "size": 1989124, + "version": "0.24.0" + }, + "numba-0.24.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "funcsigs", + "llvmlite 0.9.*", + "numpy 1.9*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "424bf90dada4d6b95e3cda0f6b88d3a4", + "name": "numba", + "requires": [], + "size": 1877970, + "version": "0.24.0" + }, + "numba-0.24.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "llvmlite 0.9.*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "1f6f9887086233bb0b063842701852b1", + "name": "numba", + "requires": [], + "size": 1957598, + "version": "0.24.0" + }, + "numba-0.24.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "llvmlite 0.9.*", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "f50832e55517e141c4466ba923a94c19", + "name": "numba", + "requires": [], + "size": 1954768, + "version": "0.24.0" + }, + "numba-0.25.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "funcsigs", + "llvmlite 0.10.*", + "numpy 1.10*", + "python 2.7*", + "singledispatch" + ], + "license": "BSD", + "md5": "2a7bb58980690cf6e80da81bf57f7506", + "name": "numba", + "requires": [], + "size": 2014335, + "version": "0.25.0" + }, + "numba-0.25.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "llvmlite 0.10.*", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "e7a3cb69de7433c28d232310c77171de", + "name": "numba", + "requires": [], + "size": 2077471, + "version": "0.25.0" + }, + "numba-0.25.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "llvmlite 0.10.*", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "bac2ebd0be13f3fd9c3dd0d48d5e592f", + "name": "numba", + "requires": [], + "size": 2073700, + "version": "0.25.0" + }, + "numba-0.3-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.9", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e4749d8292a76c8e95b8b9f8076e4e73", + "name": "numba", + "requires": [], + "size": 473487, + "version": "0.3" + }, + "numba-0.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.9", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "f551e51a041e3c2e370e1db71a38b072", + "name": "numba", + "requires": [], + "size": 473051, + "version": "0.3" + }, + "numba-0.3.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.9", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "aa07cfa09be424809305be067cbde70c", + "name": "numba", + "requires": [], + "size": 477666, + "version": "0.3.1" + }, + "numba-0.3.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.9", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9741b15511438aa15e493154fa549a31", + "name": "numba", + "requires": [], + "size": 477755, + "version": "0.3.1" + }, + "numba-0.3.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.9", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "bc031d176942b8bbe42d7f76b62dd2ba", + "name": "numba", + "requires": [], + "size": 482495, + "version": "0.3.2" + }, + "numba-0.3.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.9", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6385ed371b577eca55b08cffb744c232", + "name": "numba", + "requires": [], + "size": 482421, + "version": "0.3.2" + }, + "numba-0.5.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.10.0", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "49e41b645090d1cc2f795a17509d0995", + "name": "numba", + "requires": [], + "size": 642648, + "version": "0.5.0" + }, + "numba-0.5.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.10.0", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7dee63814832993ad4e5558181fd826b", + "name": "numba", + "requires": [], + "size": 642080, + "version": "0.5.0" + }, + "numba-0.6.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.10.2", + "nose", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "e87aa3793b43491c2c1b97738fd5ca5f", + "name": "numba", + "requires": [], + "size": 751446, + "version": "0.6.0" + }, + "numba-0.6.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.10.2", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "5a983a5db26f4df3e47635cdbe2ab010", + "name": "numba", + "requires": [], + "size": 750363, + "version": "0.6.0" + }, + "numba-0.6.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.10.2", + "nose", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "7b2e4370a78e3d99319ea46aa7a0d1f9", + "name": "numba", + "requires": [], + "size": 751533, + "version": "0.6.0" + }, + "numba-0.6.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.10.2", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6302ddc952a9dd030800953e69d741bf", + "name": "numba", + "requires": [], + "size": 750623, + "version": "0.6.0" + }, + "numba-0.7.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.0", + "nose", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "4f02ca9622f4309196d4a952a779aed2", + "name": "numba", + "requires": [], + "size": 848212, + "version": "0.7.0" + }, + "numba-0.7.0-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.1", + "nose", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "6bd35150d385f10746c3dc2fd90bc040", + "name": "numba", + "requires": [], + "size": 848454, + "version": "0.7.0" + }, + "numba-0.7.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.0", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9fdc4cc706443adb713287677fb17b2c", + "name": "numba", + "requires": [], + "size": 848457, + "version": "0.7.0" + }, + "numba-0.7.0-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.1", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "43ed19af65763f6f38f7daeb4d0fc106", + "name": "numba", + "requires": [], + "size": 848279, + "version": "0.7.0" + }, + "numba-0.7.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.0", + "nose", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "12554585e357a707041ef27b7ae161ba", + "name": "numba", + "requires": [], + "size": 851045, + "version": "0.7.0" + }, + "numba-0.7.0-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.1", + "nose", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "dccd8be13086abd9b78c707dddd7a06c", + "name": "numba", + "requires": [], + "size": 850772, + "version": "0.7.0" + }, + "numba-0.7.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.0", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e3aa5d1997d936b55bfca3a18ab3c894", + "name": "numba", + "requires": [], + "size": 850778, + "version": "0.7.0" + }, + "numba-0.7.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.1", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "793e024d6c4573158400471e8437c5c5", + "name": "numba", + "requires": [], + "size": 851047, + "version": "0.7.0" + }, + "numba-0.7.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.1", + "nose", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "99fe33ac57d628923693a4f7c71997b9", + "name": "numba", + "requires": [], + "size": 810994, + "version": "0.7.1" + }, + "numba-0.7.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.1", + "meta 0.4.2.dev", + "nose", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "ab5e9362111f4056849a03cf84f8a91d", + "name": "numba", + "requires": [], + "size": 809781, + "version": "0.7.1" + }, + "numba-0.7.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.1", + "nose", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "a3b2c64e7d9a4fedfa65b412dc875da8", + "name": "numba", + "requires": [], + "size": 813138, + "version": "0.7.1" + }, + "numba-0.7.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.1", + "meta 0.4.2.dev", + "nose", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a2f00de7ef656cfc3e96d668ef9ce8c6", + "name": "numba", + "requires": [], + "size": 812306, + "version": "0.7.1" + }, + "numba-0.8.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.1", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "50c276b9f73de2e1c5d6eeff0d9dd19d", + "name": "numba", + "requires": [], + "size": 1027664, + "version": "0.8.0" + }, + "numba-0.8.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.1", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "f86e86ace5bd9dae097cac6643309e7c", + "name": "numba", + "requires": [], + "size": 1026982, + "version": "0.8.0" + }, + "numba-0.8.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.1", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "09e71ca039ccb4eaad1a4d26e86cebd8", + "name": "numba", + "requires": [], + "size": 1030504, + "version": "0.8.0" + }, + "numba-0.8.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.1", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "623d46808d050b5d0ef7537c30d6decf", + "name": "numba", + "requires": [], + "size": 1029467, + "version": "0.8.0" + }, + "numba-0.8.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.2", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "72feb49eda4ccd083178a1981e434882", + "name": "numba", + "requires": [], + "size": 1029658, + "version": "0.8.1" + }, + "numba-0.8.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.2", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e9aa2d29729b3a52713eed9e9eef2289", + "name": "numba", + "requires": [], + "size": 1028541, + "version": "0.8.1" + }, + "numba-0.8.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmpy 0.11.2", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "e6987dcbc7382abae8875f70da5a9702", + "name": "numba", + "requires": [], + "size": 1032215, + "version": "0.8.1" + }, + "numba-0.8.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.2", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "5b3d65a5620b36cb8047058263c572a7", + "name": "numba", + "requires": [], + "size": 1031096, + "version": "0.8.1" + }, + "numba-0.8.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy 0.11.2", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "9592b202322022bce4c4544535ce8efe", + "name": "numba", + "requires": [], + "size": 1066392, + "version": "0.8.1" + }, + "numba-0.9.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.0", + "llvmpy 0.11.3", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "47522d07458712c8c82e43e5da126d82", + "name": "numba", + "requires": [], + "size": 1074915, + "version": "0.9.0" + }, + "numba-0.9.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.0", + "llvmpy 0.11.3", + "meta 0.4.2.dev", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "2434fc2a09bc1b368ca7338f3f179354", + "name": "numba", + "requires": [], + "size": 1073843, + "version": "0.9.0" + }, + "numba-0.9.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "llvmmath 0.1.0", + "llvmpy 0.11.3", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "33e02546c0225e8fabd7a8f97725b3ee", + "name": "numba", + "requires": [], + "size": 1077444, + "version": "0.9.0" + }, + "numba-0.9.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.0", + "llvmpy 0.11.3", + "meta 0.4.2.dev", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6703f2ac60cff8918e7ed6ea23cba8dd", + "name": "numba", + "requires": [], + "size": 1076750, + "version": "0.9.0" + }, + "numba-0.9.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmmath 0.1.0", + "llvmpy 0.11.3", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "df91dd2f1e8b5329ec103e593a4125f1", + "name": "numba", + "requires": [], + "size": 1143519, + "version": "0.9.0" + }, + "numbapro_cudalib-0.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-09-17", + "depends": [], + "license": null, + "license_family": "Proprietary", + "md5": "42c22dbf7692319a797dee9a4c51e8b4", + "name": "numbapro_cudalib", + "requires": [], + "size": 1450969, + "version": "0.1" + }, + "numbapro_cudalib-0.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-12-16", + "depends": [], + "license": null, + "license_family": "Proprietary", + "md5": "e5184407a52a5948076c5f216f81c257", + "name": "numbapro_cudalib", + "requires": [], + "size": 3183202, + "version": "0.2" + }, + "numexpr-2.0.1-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "MIT", + "md5": "74b86e2825fa00f888de0e6612514376", + "name": "numexpr", + "requires": [], + "size": 294793, + "version": "2.0.1" + }, + "numexpr-2.0.1-np16py26_2.tar.bz2": { + "build": "np16py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "MIT", + "md5": "66fd68dc41e33233fd81ff8a5688206a", + "name": "numexpr", + "requires": [], + "size": 294853, + "version": "2.0.1" + }, + "numexpr-2.0.1-np16py26_3.tar.bz2": { + "build": "np16py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "MIT", + "md5": "f1fad1d6088319aed930dfaa9c0e73a8", + "name": "numexpr", + "requires": [], + "size": 294036, + "version": "2.0.1" + }, + "numexpr-2.0.1-np16py26_ce0.tar.bz2": { + "build": "np16py26_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "MIT", + "md5": "4b4cb21a9ccd42a31446805dc1a7f948", + "name": "numexpr", + "requires": [], + "size": 294776, + "version": "2.0.1" + }, + "numexpr-2.0.1-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "MIT", + "md5": "af69534cef2ab9d9c85ee70aca583b7d", + "name": "numexpr", + "requires": [], + "size": 294686, + "version": "2.0.1" + }, + "numexpr-2.0.1-np16py27_2.tar.bz2": { + "build": "np16py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "MIT", + "md5": "2d47d4c5885249b80876f9694ec6321d", + "name": "numexpr", + "requires": [], + "size": 294493, + "version": "2.0.1" + }, + "numexpr-2.0.1-np16py27_3.tar.bz2": { + "build": "np16py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "MIT", + "md5": "d0fe4cf64fadb62d25df7b10deaedf7e", + "name": "numexpr", + "requires": [], + "size": 294422, + "version": "2.0.1" + }, + "numexpr-2.0.1-np16py27_ce0.tar.bz2": { + "build": "np16py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "MIT", + "md5": "9330cb669ebcedcabe3c5d860c3cdad2", + "name": "numexpr", + "requires": [], + "size": 294690, + "version": "2.0.1" + }, + "numexpr-2.0.1-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "MIT", + "md5": "a254b2d28aea9111efa03d8e629d883d", + "name": "numexpr", + "requires": [], + "size": 295000, + "version": "2.0.1" + }, + "numexpr-2.0.1-np17py26_2.tar.bz2": { + "build": "np17py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "MIT", + "md5": "76ff6a2c3d63b5295df304d4fa06f480", + "name": "numexpr", + "requires": [], + "size": 294646, + "version": "2.0.1" + }, + "numexpr-2.0.1-np17py26_3.tar.bz2": { + "build": "np17py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "MIT", + "md5": "6eeb3de7fee447dfdd3ce1052b22ff6e", + "name": "numexpr", + "requires": [], + "size": 294522, + "version": "2.0.1" + }, + "numexpr-2.0.1-np17py26_ce0.tar.bz2": { + "build": "np17py26_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "MIT", + "md5": "54ae1566b976ea2c9506fc6f89e2ebee", + "name": "numexpr", + "requires": [], + "size": 294684, + "version": "2.0.1" + }, + "numexpr-2.0.1-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "MIT", + "md5": "9ab668802b54aec611cdca0cb1b5fd05", + "name": "numexpr", + "requires": [], + "size": 294612, + "version": "2.0.1" + }, + "numexpr-2.0.1-np17py27_2.tar.bz2": { + "build": "np17py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "MIT", + "md5": "c673ce05e39f62c99b435adcddf47e1d", + "name": "numexpr", + "requires": [], + "size": 293814, + "version": "2.0.1" + }, + "numexpr-2.0.1-np17py27_3.tar.bz2": { + "build": "np17py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "MIT", + "md5": "f44b87c6a2e574aeb48de2aa903dd723", + "name": "numexpr", + "requires": [], + "size": 294661, + "version": "2.0.1" + }, + "numexpr-2.0.1-np17py27_ce0.tar.bz2": { + "build": "np17py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "MIT", + "md5": "f131021f4f2baf4627527e675aa28780", + "name": "numexpr", + "requires": [], + "size": 294761, + "version": "2.0.1" + }, + "numexpr-2.0.1-np18py27_3.tar.bz2": { + "build": "np18py27_3", + "build_number": 3, + "date": "2014-12-15", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "MIT", + "md5": "6b8f4f9456c09751fdc3a3378845d11e", + "name": "numexpr", + "requires": [], + "size": 294435, + "version": "2.0.1" + }, + "numexpr-2.0.1-np19py27_3.tar.bz2": { + "build": "np19py27_3", + "build_number": 3, + "date": "2014-12-15", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "bfb41c7a3de1710742ba3396c899ba11", + "name": "numexpr", + "requires": [], + "size": 294362, + "version": "2.0.1" + }, + "numexpr-2.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "MIT", + "md5": "21e634167ca0afe08c5c32e874326919", + "name": "numexpr", + "requires": [], + "size": 310045, + "version": "2.1" + }, + "numexpr-2.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "MIT", + "md5": "ae148c82fdac77264c4117e52721d311", + "name": "numexpr", + "requires": [], + "size": 309430, + "version": "2.1" + }, + "numexpr-2.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "MIT", + "md5": "dca327497cb7ab73eeec9b902b48c664", + "name": "numexpr", + "requires": [], + "size": 310007, + "version": "2.1" + }, + "numexpr-2.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "MIT", + "md5": "48c5fc4616f128b7ab617997d90a12b3", + "name": "numexpr", + "requires": [], + "size": 309776, + "version": "2.1" + }, + "numexpr-2.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "MIT", + "md5": "61bcf5023d8742c8c50437e677340006", + "name": "numexpr", + "requires": [], + "size": 314435, + "version": "2.1" + }, + "numexpr-2.2.2-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "MIT", + "md5": "8d0ed09c6dc4574cde1a1999b8371dc0", + "name": "numexpr", + "requires": [], + "size": 313521, + "version": "2.2.2" + }, + "numexpr-2.2.2-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "MIT", + "md5": "072a8f5059a504614bf1182bd29cfd52", + "name": "numexpr", + "requires": [], + "size": 313555, + "version": "2.2.2" + }, + "numexpr-2.2.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "MIT", + "md5": "660b05c77b00e2ff4f248aec159de7a4", + "name": "numexpr", + "requires": [], + "size": 313476, + "version": "2.2.2" + }, + "numexpr-2.2.2-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "MIT", + "md5": "8b1213dc1a971ef42d652a72fea5fa56", + "name": "numexpr", + "requires": [], + "size": 313405, + "version": "2.2.2" + }, + "numexpr-2.2.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "MIT", + "md5": "8169f27a5c0ae2e32141aee42c2a2758", + "name": "numexpr", + "requires": [], + "size": 313514, + "version": "2.2.2" + }, + "numexpr-2.2.2-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "MIT", + "md5": "86391a4475c9728c49396dd0ce566e1c", + "name": "numexpr", + "requires": [], + "size": 313535, + "version": "2.2.2" + }, + "numexpr-2.2.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "MIT", + "md5": "9dd676be434e4813898106e3e94f0c88", + "name": "numexpr", + "requires": [], + "size": 313474, + "version": "2.2.2" + }, + "numexpr-2.2.2-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "MIT", + "md5": "5f47fc3a48a60966d2458ed72aeac7a0", + "name": "numexpr", + "requires": [], + "size": 313625, + "version": "2.2.2" + }, + "numexpr-2.2.2-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "MIT", + "md5": "1123c4fd19f7fa1caa8025ee99e49e6f", + "name": "numexpr", + "requires": [], + "size": 317892, + "version": "2.2.2" + }, + "numexpr-2.2.2-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "MIT", + "md5": "9f857d2684720e0e7704cd89d992011c", + "name": "numexpr", + "requires": [], + "size": 318124, + "version": "2.2.2" + }, + "numexpr-2.2.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-23", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "c7f65f895e71914c31fb8b64ab8f3871", + "name": "numexpr", + "requires": [], + "size": 319967, + "version": "2.2.2" + }, + "numexpr-2.3.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "MIT", + "md5": "fa4ae71d92edc1ae2aa13bb853b9009e", + "name": "numexpr", + "requires": [], + "size": 315326, + "version": "2.3.0" + }, + "numexpr-2.3.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "MIT", + "md5": "3a34d33542c22849e58f2e6b44b6fe7d", + "name": "numexpr", + "requires": [], + "size": 315170, + "version": "2.3.0" + }, + "numexpr-2.3.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "MIT", + "md5": "80a08777ea5b757516ac0f3222099fcf", + "name": "numexpr", + "requires": [], + "size": 319482, + "version": "2.3.0" + }, + "numexpr-2.3.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "MIT", + "md5": "34d12f15f57b68c953bbf6f38e40c2b7", + "name": "numexpr", + "requires": [], + "size": 315345, + "version": "2.3.0" + }, + "numexpr-2.3.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "MIT", + "md5": "07d05e6ea27cec4e1723f4c03f3bc765", + "name": "numexpr", + "requires": [], + "size": 315260, + "version": "2.3.0" + }, + "numexpr-2.3.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "MIT", + "md5": "3e76f0db7b898bae234aae37a84bbc5d", + "name": "numexpr", + "requires": [], + "size": 319547, + "version": "2.3.0" + }, + "numexpr-2.3.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "MIT", + "md5": "bacf70cf7ea386c315a945a9f879a19b", + "name": "numexpr", + "requires": [], + "size": 315893, + "version": "2.3.1" + }, + "numexpr-2.3.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "MIT", + "md5": "c2f5905357981229b885388dff2720d1", + "name": "numexpr", + "requires": [], + "size": 316046, + "version": "2.3.1" + }, + "numexpr-2.3.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "MIT", + "md5": "7ee87d574f5c178c4206e9224a895b06", + "name": "numexpr", + "requires": [], + "size": 318619, + "version": "2.3.1" + }, + "numexpr-2.3.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "MIT", + "md5": "52f7979977e0d24929a2183216d53aa5", + "name": "numexpr", + "requires": [], + "size": 322455, + "version": "2.3.1" + }, + "numexpr-2.3.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "cda7121a9c63acd0713773f2d5a12445", + "name": "numexpr", + "requires": [], + "size": 326777, + "version": "2.3.1" + }, + "numexpr-2.3.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "21f0dcfd7958c06ce9d02badcb2b039e", + "name": "numexpr", + "requires": [], + "size": 326608, + "version": "2.3.1" + }, + "numexpr-2.3.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "1b866b57b90f9b9dc2fbd5ab51280460", + "name": "numexpr", + "requires": [], + "size": 329540, + "version": "2.3.1" + }, + "numexpr-2.3.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "4304d833a623db43f5d5f63daedb9a7e", + "name": "numexpr", + "requires": [], + "size": 330668, + "version": "2.3.1" + }, + "numexpr-2.4.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "MIT", + "md5": "b415e972707a0a3426343b5d227e5396", + "name": "numexpr", + "requires": [], + "size": 337039, + "version": "2.4.3" + }, + "numexpr-2.4.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "5d5e6777253e947c67440de7bac92e74", + "name": "numexpr", + "requires": [], + "size": 336796, + "version": "2.4.3" + }, + "numexpr-2.4.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "MIT", + "md5": "3cabd4c7c8929c8c2e60cb67a855b0ca", + "name": "numexpr", + "requires": [], + "size": 340365, + "version": "2.4.3" + }, + "numexpr-2.4.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "f8be70b76a4ecee0acaa07a1838c11ca", + "name": "numexpr", + "requires": [], + "size": 341897, + "version": "2.4.3" + }, + "numexpr-2.4.3-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*" + ], + "license": "MIT", + "md5": "30d6d67e613044dd4668753756ab8520", + "name": "numexpr", + "requires": [], + "size": 341930, + "version": "2.4.3" + }, + "numexpr-2.4.4-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "MIT", + "md5": "9dad94ad9ff8a99c5f39ae6a53b03de5", + "name": "numexpr", + "requires": [], + "size": 337314, + "version": "2.4.4" + }, + "numexpr-2.4.4-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "MIT", + "md5": "6a5e42d09046d2b3018b8b710f2aa986", + "name": "numexpr", + "requires": [], + "size": 342327, + "version": "2.4.4" + }, + "numexpr-2.4.4-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "MIT", + "md5": "f89da95d3fbe3458dfa063b8b9b5ae10", + "name": "numexpr", + "requires": [], + "size": 342497, + "version": "2.4.4" + }, + "numexpr-2.4.4-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "MIT", + "md5": "392ca28209452b08717cf38ea54b5f33", + "name": "numexpr", + "requires": [], + "size": 337280, + "version": "2.4.4" + }, + "numexpr-2.4.4-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "MIT", + "md5": "b9682328c6f49241bcf37f99ae062726", + "name": "numexpr", + "requires": [], + "size": 342440, + "version": "2.4.4" + }, + "numexpr-2.4.4-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "numpy 1.9*", + "python 3.5*" + ], + "license": "MIT", + "md5": "95a2e4ac4e419febbba2749d817461e7", + "name": "numexpr", + "requires": [], + "size": 342453, + "version": "2.4.4" + }, + "numexpr-2.4.6-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "license": "MIT", + "md5": "91090666dd7339b4de8ecd3ff5b28bc3", + "name": "numexpr", + "requires": [], + "size": 337513, + "version": "2.4.6" + }, + "numexpr-2.4.6-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2016-01-15", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*" + ], + "license": "MIT", + "md5": "ecfea51a134566191a4ca742de015a57", + "name": "numexpr", + "requires": [], + "size": 335656, + "version": "2.4.6" + }, + "numexpr-2.4.6-np110py27_nomkl_1.tar.bz2": { + "build": "np110py27_nomkl_1", + "build_number": 1, + "date": "2016-01-20", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "1afc8c462c5a6836280afb3af5fe34b2", + "name": "numexpr", + "requires": [], + "size": 338133, + "version": "2.4.6" + }, + "numexpr-2.4.6-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "license": "MIT", + "md5": "989fd33f03026d1ee403f33ff21dda2c", + "name": "numexpr", + "requires": [], + "size": 342502, + "version": "2.4.6" + }, + "numexpr-2.4.6-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2016-01-15", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*" + ], + "license": "MIT", + "md5": "13ea02e82ae4462b865935457730e2ce", + "name": "numexpr", + "requires": [], + "size": 342034, + "version": "2.4.6" + }, + "numexpr-2.4.6-np110py34_nomkl_1.tar.bz2": { + "build": "np110py34_nomkl_1", + "build_number": 1, + "date": "2016-01-20", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "4e46cd4ae8c20684b2c379363c94f88a", + "name": "numexpr", + "requires": [], + "size": 343298, + "version": "2.4.6" + }, + "numexpr-2.4.6-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "license": "MIT", + "md5": "a5e422e6d23bca6f9dc6ca6d473c03c8", + "name": "numexpr", + "requires": [], + "size": 342575, + "version": "2.4.6" + }, + "numexpr-2.4.6-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2016-01-15", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*" + ], + "license": "MIT", + "md5": "d28a7197fc075004b1de5931685de3e7", + "name": "numexpr", + "requires": [], + "size": 342160, + "version": "2.4.6" + }, + "numexpr-2.4.6-np110py35_nomkl_1.tar.bz2": { + "build": "np110py35_nomkl_1", + "build_number": 1, + "date": "2016-01-21", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "47e35df77408748c64868dce059ca7bb", + "name": "numexpr", + "requires": [], + "size": 343340, + "version": "2.4.6" + }, + "numexpr-2.5-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*" + ], + "license": "MIT", + "md5": "397203a2cb4afd7b7dcdb8f6b216babe", + "name": "numexpr", + "requires": [], + "size": 353382, + "version": "2.5" + }, + "numexpr-2.5-np110py27_nomkl_0.tar.bz2": { + "build": "np110py27_nomkl_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "9173ba26156e699e2c1daa54cc90c4df", + "name": "numexpr", + "requires": [], + "size": 354375, + "version": "2.5" + }, + "numexpr-2.5-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*" + ], + "license": "MIT", + "md5": "049abb0e7e6b1ac5de7bff999068dee3", + "name": "numexpr", + "requires": [], + "size": 360222, + "version": "2.5" + }, + "numexpr-2.5-np110py34_nomkl_0.tar.bz2": { + "build": "np110py34_nomkl_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "a21eff038797de7864d0cc95fbb65552", + "name": "numexpr", + "requires": [], + "size": 359733, + "version": "2.5" + }, + "numexpr-2.5-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*" + ], + "license": "MIT", + "md5": "baab404e51f0ea75cbbcfa58b6ea9648", + "name": "numexpr", + "requires": [], + "size": 360239, + "version": "2.5" + }, + "numexpr-2.5-np110py35_nomkl_0.tar.bz2": { + "build": "np110py35_nomkl_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "1d3b971a79e730cf3b7a82c9dca9922d", + "name": "numexpr", + "requires": [], + "size": 359934, + "version": "2.5" + }, + "numexpr-2.5.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*" + ], + "license": "MIT", + "md5": "2e64a219547394406e532458111330a7", + "name": "numexpr", + "requires": [], + "size": 353881, + "version": "2.5.1" + }, + "numexpr-2.5.1-np110py27_nomkl_0.tar.bz2": { + "build": "np110py27_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.10*", + "python 2.7*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "b187cea448ccf43e93bda4033e056141", + "name": "numexpr", + "requires": [], + "size": 354900, + "version": "2.5.1" + }, + "numexpr-2.5.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*" + ], + "license": "MIT", + "md5": "7c376093fc1c2c89fe0ece90005694e4", + "name": "numexpr", + "requires": [], + "size": 360823, + "version": "2.5.1" + }, + "numexpr-2.5.1-np110py34_nomkl_0.tar.bz2": { + "build": "np110py34_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.10*", + "python 3.4*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "fe409d1e45fd2bcf35d0bf492566b8f5", + "name": "numexpr", + "requires": [], + "size": 360220, + "version": "2.5.1" + }, + "numexpr-2.5.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*" + ], + "license": "MIT", + "md5": "500fc4d0e73ace50c885e43b9e061a48", + "name": "numexpr", + "requires": [], + "size": 360556, + "version": "2.5.1" + }, + "numexpr-2.5.1-np110py35_nomkl_0.tar.bz2": { + "build": "np110py35_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.10*", + "python 3.5*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "8e42431826e0fc7b8f25eabc6ea49f34", + "name": "numexpr", + "requires": [], + "size": 360201, + "version": "2.5.1" + }, + "numexpr-2.5.1-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.11*", + "python 2.7*" + ], + "license": "MIT", + "md5": "f8232942f43e036fbe6ed7a484d61dd8", + "name": "numexpr", + "requires": [], + "size": 353862, + "version": "2.5.1" + }, + "numexpr-2.5.1-np111py27_nomkl_0.tar.bz2": { + "build": "np111py27_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 2.7*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "9a53741aa9faf044e65f8396bb8e796d", + "name": "numexpr", + "requires": [], + "size": 354774, + "version": "2.5.1" + }, + "numexpr-2.5.1-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.11*", + "python 3.4*" + ], + "license": "MIT", + "md5": "e86cf9abcffe15509c99715c31bd580f", + "name": "numexpr", + "requires": [], + "size": 360776, + "version": "2.5.1" + }, + "numexpr-2.5.1-np111py34_nomkl_0.tar.bz2": { + "build": "np111py34_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 3.4*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "17f5f6b12ee5cd0fefecdd70a0413557", + "name": "numexpr", + "requires": [], + "size": 360159, + "version": "2.5.1" + }, + "numexpr-2.5.1-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.11*", + "python 3.5*" + ], + "license": "MIT", + "md5": "e6d9e33a98ad8b46d41ba56212d56420", + "name": "numexpr", + "requires": [], + "size": 360596, + "version": "2.5.1" + }, + "numexpr-2.5.1-np111py35_nomkl_0.tar.bz2": { + "build": "np111py35_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 3.5*" + ], + "features": "nomkl", + "license": "MIT", + "md5": "99048559b63dc7e0c3b6bd1280f5f5de", + "name": "numexpr", + "requires": [], + "size": 360222, + "version": "2.5.1" + }, + "numpy-1.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "75672b0b38c02a1b5e26a40fc3deeed9", + "name": "numpy", + "requires": [], + "size": 6170787, + "version": "1.10.0" + }, + "numpy-1.10.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "license": "BSD", + "md5": "7a62241de7045e289995f564be2238db", + "name": "numpy", + "requires": [], + "size": 6071321, + "version": "1.10.0" + }, + "numpy-1.10.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "license": "BSD", + "md5": "e4cd154bd874cb8a79b95e66da42e8a2", + "name": "numpy", + "requires": [], + "size": 6072036, + "version": "1.10.0" + }, + "numpy-1.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "101d61810065a0bef0ebdf11b6b3d48a", + "name": "numpy", + "requires": [], + "size": 6176324, + "version": "1.10.1" + }, + "numpy-1.10.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "license": "BSD", + "md5": "9cc96185c92e0cabfbf61ced205b176d", + "name": "numpy", + "requires": [], + "size": 6078579, + "version": "1.10.1" + }, + "numpy-1.10.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "license": "BSD", + "md5": "0327c9b0a7e369f53d501bc956991163", + "name": "numpy", + "requires": [], + "size": 6080526, + "version": "1.10.1" + }, + "numpy-1.10.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "eac3688d3f05e5eb098b55c68892444e", + "name": "numpy", + "requires": [], + "size": 6179603, + "version": "1.10.2" + }, + "numpy-1.10.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "license": "BSD", + "md5": "4ed00e3f706730b486460b5a40813295", + "name": "numpy", + "requires": [], + "size": 6075608, + "version": "1.10.2" + }, + "numpy-1.10.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "license": "BSD", + "md5": "f9c511a6bdc5022db16f725b61d73ed6", + "name": "numpy", + "requires": [], + "size": 6049129, + "version": "1.10.2" + }, + "numpy-1.10.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "mkl 11.3.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "e6a41e68feea111863ceaca566ccd501", + "name": "numpy", + "requires": [], + "size": 6256027, + "version": "1.10.4" + }, + "numpy-1.10.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-03-04", + "depends": [ + "mkl 11.3.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "1a7b6b707903a6a1139007834ef646a7", + "name": "numpy", + "requires": [], + "size": 6254939, + "version": "1.10.4" + }, + "numpy-1.10.4-py27_nomkl_0.tar.bz2": { + "build": "py27_nomkl_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "5315c8f205af86be5a84eda25bf1b0ec", + "name": "numpy", + "requires": [], + "size": 6254546, + "version": "1.10.4" + }, + "numpy-1.10.4-py27_nomkl_1.tar.bz2": { + "build": "py27_nomkl_1", + "build_number": 1, + "date": "2016-03-04", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "79e0be4cc8b91bf42e7d4d82449030ae", + "name": "numpy", + "requires": [], + "size": 6253295, + "version": "1.10.4" + }, + "numpy-1.10.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "mkl 11.3.1", + "python 3.4*" + ], + "license": "BSD", + "md5": "77c576104017969aed22d7343b26571f", + "name": "numpy", + "requires": [], + "size": 6176379, + "version": "1.10.4" + }, + "numpy-1.10.4-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-03-04", + "depends": [ + "mkl 11.3.1", + "python 3.4*" + ], + "license": "BSD", + "md5": "f7e393210ca70d09b1cf5be940ec95f7", + "name": "numpy", + "requires": [], + "size": 6175454, + "version": "1.10.4" + }, + "numpy-1.10.4-py34_nomkl_0.tar.bz2": { + "build": "py34_nomkl_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "046add5e5636a8dfd453de354f528c19", + "name": "numpy", + "requires": [], + "size": 6174801, + "version": "1.10.4" + }, + "numpy-1.10.4-py34_nomkl_1.tar.bz2": { + "build": "py34_nomkl_1", + "build_number": 1, + "date": "2016-03-04", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "3ece8d5c10c266f88141c14338383f30", + "name": "numpy", + "requires": [], + "size": 6177180, + "version": "1.10.4" + }, + "numpy-1.10.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "mkl 11.3.1", + "python 3.5*" + ], + "license": "BSD", + "md5": "94f864b090d3aed8a87c8dbeee27de60", + "name": "numpy", + "requires": [], + "size": 6148092, + "version": "1.10.4" + }, + "numpy-1.10.4-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-03-04", + "depends": [ + "mkl 11.3.1", + "python 3.5*" + ], + "license": "BSD", + "md5": "9a67085d51bb150184c7ebdc64da7a84", + "name": "numpy", + "requires": [], + "size": 6147505, + "version": "1.10.4" + }, + "numpy-1.10.4-py35_nomkl_0.tar.bz2": { + "build": "py35_nomkl_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "34426a995d5be2520d899ebefefb4206", + "name": "numpy", + "requires": [], + "size": 6145735, + "version": "1.10.4" + }, + "numpy-1.10.4-py35_nomkl_1.tar.bz2": { + "build": "py35_nomkl_1", + "build_number": 1, + "date": "2016-03-04", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "97151ab7f894afaf49e286e27a22da48", + "name": "numpy", + "requires": [], + "size": 6146036, + "version": "1.10.4" + }, + "numpy-1.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "mkl 11.3.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "3a09441bdb9d26c6a67572ee9de72a2a", + "name": "numpy", + "requires": [], + "size": 6531519, + "version": "1.11.0" + }, + "numpy-1.11.0-py27_nomkl_0.tar.bz2": { + "build": "py27_nomkl_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "c8c22be68379103e4347bbf53dc896fd", + "name": "numpy", + "requires": [], + "size": 6529809, + "version": "1.11.0" + }, + "numpy-1.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "mkl 11.3.1", + "python 3.4*" + ], + "license": "BSD", + "md5": "d2e71b9556b7326a4ec3186575e5ead1", + "name": "numpy", + "requires": [], + "size": 6416368, + "version": "1.11.0" + }, + "numpy-1.11.0-py34_nomkl_0.tar.bz2": { + "build": "py34_nomkl_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "eaf150e5c1a3d593c33fe3ecf1fec8fd", + "name": "numpy", + "requires": [], + "size": 6415799, + "version": "1.11.0" + }, + "numpy-1.11.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "mkl 11.3.1", + "python 3.5*" + ], + "license": "BSD", + "md5": "1900998c19c5e310687013f95374bba2", + "name": "numpy", + "requires": [], + "size": 6385012, + "version": "1.11.0" + }, + "numpy-1.11.0-py35_nomkl_0.tar.bz2": { + "build": "py35_nomkl_0", + "build_number": 0, + "date": "2016-03-28", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "802de65cbe931339b91468162e5fc1e5", + "name": "numpy", + "requires": [], + "size": 6385454, + "version": "1.11.0" + }, + "numpy-1.5.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "1a624d3584afa472422df33f7e545e4a", + "name": "numpy", + "requires": [], + "size": 4798863, + "version": "1.5.1" + }, + "numpy-1.5.1-py26_3.tar.bz2": { + "build": "py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "7ec30dfd6fa9f1e9092543386152cebe", + "name": "numpy", + "requires": [], + "size": 4800145, + "version": "1.5.1" + }, + "numpy-1.5.1-py26_4.tar.bz2": { + "build": "py26_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a3a345a89b501b9919ef8f07b5681af9", + "name": "numpy", + "requires": [], + "size": 4800031, + "version": "1.5.1" + }, + "numpy-1.5.1-py26_6.tar.bz2": { + "build": "py26_6", + "build_number": 6, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 2.6*" + ], + "license": "BSD", + "md5": "38c3c25f64baa44ade0e23c377a2ad38", + "name": "numpy", + "requires": [], + "size": 5139909, + "version": "1.5.1" + }, + "numpy-1.5.1-py26_ce0.tar.bz2": { + "build": "py26_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "7a465919fe605a91410859761dac96c1", + "name": "numpy", + "requires": [], + "size": 4799200, + "version": "1.5.1" + }, + "numpy-1.5.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "9e88977c75bd08553adee548f4095f66", + "name": "numpy", + "requires": [], + "size": 4800304, + "version": "1.5.1" + }, + "numpy-1.5.1-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "87f54c3336f684e79d26ee410dbbd399", + "name": "numpy", + "requires": [], + "size": 4799234, + "version": "1.5.1" + }, + "numpy-1.5.1-py27_4.tar.bz2": { + "build": "py27_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4bfe5c61f443152f950cfd33781fa2ab", + "name": "numpy", + "requires": [], + "size": 4800656, + "version": "1.5.1" + }, + "numpy-1.5.1-py27_6.tar.bz2": { + "build": "py27_6", + "build_number": 6, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "f370a7a8655cfc068f4a64efd52d0ee3", + "name": "numpy", + "requires": [], + "size": 5141482, + "version": "1.5.1" + }, + "numpy-1.5.1-py27_ce0.tar.bz2": { + "build": "py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "f53b0807eac1e45910dd2ef5e1da4b97", + "name": "numpy", + "requires": [], + "size": 4800086, + "version": "1.5.1" + }, + "numpy-1.6.2-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "ef34c1290ad0c4ce7bf9fbcc17e3449d", + "name": "numpy", + "requires": [], + "size": 5559401, + "version": "1.6.2" + }, + "numpy-1.6.2-py26_3.tar.bz2": { + "build": "py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "55eec32f8379a897cfce656fd92cf475", + "name": "numpy", + "requires": [], + "size": 5559384, + "version": "1.6.2" + }, + "numpy-1.6.2-py26_4.tar.bz2": { + "build": "py26_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "45d2b5eaf470cd31df0024bedff4a303", + "name": "numpy", + "requires": [], + "size": 5559053, + "version": "1.6.2" + }, + "numpy-1.6.2-py26_5.tar.bz2": { + "build": "py26_5", + "build_number": 5, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 2.6*" + ], + "license": "BSD", + "md5": "2e3be730917cf7fc3ce52e9d354089b0", + "name": "numpy", + "requires": [], + "size": 5948040, + "version": "1.6.2" + }, + "numpy-1.6.2-py26_ce0.tar.bz2": { + "build": "py26_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "6b2c5b4bdc39da9487676b70b5b892b0", + "name": "numpy", + "requires": [], + "size": 5559631, + "version": "1.6.2" + }, + "numpy-1.6.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "d182f5abc5142010c6c95aed56b64d76", + "name": "numpy", + "requires": [], + "size": 5568840, + "version": "1.6.2" + }, + "numpy-1.6.2-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "ff972242433a43ef489f17ea2e65c89b", + "name": "numpy", + "requires": [], + "size": 5570498, + "version": "1.6.2" + }, + "numpy-1.6.2-py27_4.tar.bz2": { + "build": "py27_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4aa14f9a8e19f7c51bbeb639e91f5bde", + "name": "numpy", + "requires": [], + "size": 5568720, + "version": "1.6.2" + }, + "numpy-1.6.2-py27_5.tar.bz2": { + "build": "py27_5", + "build_number": 5, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "fcc2e1d61bd6475eaeae1a976b981d48", + "name": "numpy", + "requires": [], + "size": 5946524, + "version": "1.6.2" + }, + "numpy-1.6.2-py27_ce0.tar.bz2": { + "build": "py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "0a62a7479d7e8faa811e66cd9ca22005", + "name": "numpy", + "requires": [], + "size": 5568993, + "version": "1.6.2" + }, + "numpy-1.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "7bbfca5372270601ce0c8f16c6673747", + "name": "numpy", + "requires": [], + "size": 5987991, + "version": "1.7.0" + }, + "numpy-1.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "f157bfbebc5f1b983303f333ccc2f588", + "name": "numpy", + "requires": [], + "size": 5985976, + "version": "1.7.0" + }, + "numpy-1.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 3.3*" + ], + "license": "BSD", + "md5": "52c03eaf73e248ed0da495168604eeaa", + "name": "numpy", + "requires": [], + "size": 5735367, + "version": "1.7.0" + }, + "numpy-1.7.0b2-py26_ce0.tar.bz2": { + "build": "py26_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "6db091b1c2807898a5d3abb40731111e", + "name": "numpy", + "requires": [], + "size": 5966111, + "version": "1.7.0b2" + }, + "numpy-1.7.0b2-py27_ce0.tar.bz2": { + "build": "py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "1329cf0b7d76cc2dfaf0f0d0d4d65cba", + "name": "numpy", + "requires": [], + "size": 5976603, + "version": "1.7.0b2" + }, + "numpy-1.7.0rc1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "BSD", + "md5": "483290b280d91da2035f3212fb414238", + "name": "numpy", + "requires": [], + "size": 5985644, + "version": "1.7.0rc1" + }, + "numpy-1.7.0rc1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "BSD", + "md5": "882d6e6d8d0f19127e21d087ece08b52", + "name": "numpy", + "requires": [], + "size": 5986865, + "version": "1.7.0rc1" + }, + "numpy-1.7.0rc1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 3.3*" + ], + "license": "BSD", + "md5": "3ed2c2b87bf5d52f968b4ffe4a49607e", + "name": "numpy", + "requires": [], + "size": 5736640, + "version": "1.7.0rc1" + }, + "numpy-1.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "89addeb241459edcf5142ca954478157", + "name": "numpy", + "requires": [], + "size": 6005124, + "version": "1.7.1" + }, + "numpy-1.7.1-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "81451cc1bc00e109acf2e01df9cc233b", + "name": "numpy", + "requires": [], + "size": 6004016, + "version": "1.7.1" + }, + "numpy-1.7.1-py26_3.tar.bz2": { + "build": "py26_3", + "build_number": 3, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 2.6*" + ], + "license": "BSD", + "md5": "5da8caadf0e886dec4213c02bfa0da02", + "name": "numpy", + "requires": [], + "size": 6460627, + "version": "1.7.1" + }, + "numpy-1.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e3bbe76363d16cf22ed4bd3c141944cc", + "name": "numpy", + "requires": [], + "size": 5994338, + "version": "1.7.1" + }, + "numpy-1.7.1-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4522f1aeb80172f53d8968a98929accd", + "name": "numpy", + "requires": [], + "size": 5993420, + "version": "1.7.1" + }, + "numpy-1.7.1-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "4ef92d5e5d3a7cf9c5f2b385a80b137f", + "name": "numpy", + "requires": [], + "size": 6459338, + "version": "1.7.1" + }, + "numpy-1.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "04b88261644c1fa211690ac26a5f5b3c", + "name": "numpy", + "requires": [], + "size": 5753058, + "version": "1.7.1" + }, + "numpy-1.7.1-py33_2.tar.bz2": { + "build": "py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "95846d810ce140e1b7c1777fd63aaa2e", + "name": "numpy", + "requires": [], + "size": 5753922, + "version": "1.7.1" + }, + "numpy-1.7.1-py33_3.tar.bz2": { + "build": "py33_3", + "build_number": 3, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 3.3*" + ], + "license": "BSD", + "md5": "ae162fd26b4ff9ed8ee6f12ae7f78949", + "name": "numpy", + "requires": [], + "size": 6255480, + "version": "1.7.1" + }, + "numpy-1.7.1-py34_3.tar.bz2": { + "build": "py34_3", + "build_number": 3, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 3.4*" + ], + "license": "BSD", + "md5": "ea383c9fbdbcd7690b22f2caaf334858", + "name": "numpy", + "requires": [], + "size": 6413840, + "version": "1.7.1" + }, + "numpy-1.8.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "08b7c977992f3bb0d3525d9c6c11f368", + "name": "numpy", + "requires": [], + "size": 7664689, + "version": "1.8.0" + }, + "numpy-1.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0d1b4c9e14c1efa1620a504994bb6a9e", + "name": "numpy", + "requires": [], + "size": 7669605, + "version": "1.8.0" + }, + "numpy-1.8.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "891c039f1b51305f6cdfe19f9e4d0de2", + "name": "numpy", + "requires": [], + "size": 7355151, + "version": "1.8.0" + }, + "numpy-1.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "20b11c1824cfc08f023e82dd9cb23577", + "name": "numpy", + "requires": [], + "size": 7688263, + "version": "1.8.1" + }, + "numpy-1.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b51f2d03f4e25081fe026829609eae74", + "name": "numpy", + "requires": [], + "size": 7690128, + "version": "1.8.1" + }, + "numpy-1.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "5aad31973fded1292be70eca736ed8a8", + "name": "numpy", + "requires": [], + "size": 7355931, + "version": "1.8.1" + }, + "numpy-1.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "4b88028115f56532232b429515ce26ce", + "name": "numpy", + "requires": [], + "size": 7500127, + "version": "1.8.1" + }, + "numpy-1.8.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "7a841950372cf4026e0ba74f6f6eb75d", + "name": "numpy", + "requires": [], + "size": 7695477, + "version": "1.8.2" + }, + "numpy-1.8.2-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 2.6*" + ], + "license": "BSD", + "md5": "b6eeeb876ebe18c1d9d62439e51f9f1a", + "name": "numpy", + "requires": [], + "size": 8261300, + "version": "1.8.2" + }, + "numpy-1.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d42d202ecdb27f2c2ba95f3e7c31a3b3", + "name": "numpy", + "requires": [], + "size": 7692859, + "version": "1.8.2" + }, + "numpy-1.8.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "6c5014465e79edcc0830654fd52bd68f", + "name": "numpy", + "requires": [], + "size": 8257694, + "version": "1.8.2" + }, + "numpy-1.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "5148faf977f707d6806bc8b4d731167a", + "name": "numpy", + "requires": [], + "size": 7356469, + "version": "1.8.2" + }, + "numpy-1.8.2-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 3.3*" + ], + "license": "BSD", + "md5": "422f8587967eee16875e979747afbc02", + "name": "numpy", + "requires": [], + "size": 7963764, + "version": "1.8.2" + }, + "numpy-1.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ad68b7854f79aa79ee9d21d99e97b647", + "name": "numpy", + "requires": [], + "size": 7501338, + "version": "1.8.2" + }, + "numpy-1.8.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-09-16", + "depends": [ + "libgfortran 1.0", + "python 3.4*" + ], + "license": "BSD", + "md5": "00f2e0e847ae08827589c37e1340a294", + "name": "numpy", + "requires": [], + "size": 8173249, + "version": "1.8.2" + }, + "numpy-1.9.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "f804bd218b4a4f4b9833204a54baa3c5", + "name": "numpy", + "requires": [], + "size": 8112280, + "version": "1.9.0" + }, + "numpy-1.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "71104053ff93bfec0a37e9c98f2ef27d", + "name": "numpy", + "requires": [], + "size": 8110201, + "version": "1.9.0" + }, + "numpy-1.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "5196c77b114f7bfe9c517c0adc64910a", + "name": "numpy", + "requires": [], + "size": 7846227, + "version": "1.9.0" + }, + "numpy-1.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1574c392249a821c5b030ea7149caa53", + "name": "numpy", + "requires": [], + "size": 8040204, + "version": "1.9.0" + }, + "numpy-1.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-03", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "ebf9113a911c27bbc2ce933b2b3f7520", + "name": "numpy", + "requires": [], + "size": 8122123, + "version": "1.9.1" + }, + "numpy-1.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bc13a4fcbeaa3e8558a4820a5ba9b2ab", + "name": "numpy", + "requires": [], + "size": 8118677, + "version": "1.9.1" + }, + "numpy-1.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "576281ef657af51779ad8d200f198979", + "name": "numpy", + "requires": [], + "size": 7850065, + "version": "1.9.1" + }, + "numpy-1.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8354a52ea11107fc722af0d47e520fb8", + "name": "numpy", + "requires": [], + "size": 8042206, + "version": "1.9.1" + }, + "numpy-1.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a99262491a74a42f803ef350ca420f28", + "name": "numpy", + "requires": [], + "size": 8149136, + "version": "1.9.2" + }, + "numpy-1.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d455a84f90d63dee87bcf0fde6dc5a8f", + "name": "numpy", + "requires": [], + "size": 8141825, + "version": "1.9.2" + }, + "numpy-1.9.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-08-18", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "0925ad43d5c8fac3135fd3af622f024c", + "name": "numpy", + "requires": [], + "size": 5927424, + "version": "1.9.2" + }, + "numpy-1.9.2-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2015-09-18", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "61d837a7fe676f0da1af3161c9c64e7c", + "name": "numpy", + "requires": [], + "size": 8340013, + "version": "1.9.2" + }, + "numpy-1.9.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "9f17d81ba7fe5dbed5817a5bc0ed455c", + "name": "numpy", + "requires": [], + "size": 7877610, + "version": "1.9.2" + }, + "numpy-1.9.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "c57ce57644d901773496de41028493eb", + "name": "numpy", + "requires": [], + "size": 8068388, + "version": "1.9.2" + }, + "numpy-1.9.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-08-18", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "license": "BSD", + "md5": "405b8ed744c0c62609e55ff154b96be4", + "name": "numpy", + "requires": [], + "size": 5848758, + "version": "1.9.2" + }, + "numpy-1.9.2-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2015-09-18", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "license": "BSD", + "md5": "abc891f05c6f08eec7a578a511a0dda2", + "name": "numpy", + "requires": [], + "size": 8236634, + "version": "1.9.2" + }, + "numpy-1.9.2-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "license": "BSD", + "md5": "125ae3861c7f3c71307f090ce5ba40bd", + "name": "numpy", + "requires": [], + "size": 5848772, + "version": "1.9.2" + }, + "numpy-1.9.2-py35_2.tar.bz2": { + "build": "py35_2", + "build_number": 2, + "date": "2015-09-18", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "license": "BSD", + "md5": "8f49c5bbd9f10d33b4454154d89cb3c3", + "name": "numpy", + "requires": [], + "size": 8236920, + "version": "1.9.2" + }, + "numpy-1.9.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "b0c7de562c2c11216f9a7e9621e27808", + "name": "numpy", + "requires": [], + "size": 5995245, + "version": "1.9.3" + }, + "numpy-1.9.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-02-11", + "depends": [ + "mkl 11.3.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "e68fb6c6a5d82b5cc50d0ca2dd387d03", + "name": "numpy", + "requires": [], + "size": 5989589, + "version": "1.9.3" + }, + "numpy-1.9.3-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "mkl 11.3.1", + "python 2.7*" + ], + "license": "BSD", + "md5": "2f5710e8f1e281c2235aa1e365fb9748", + "name": "numpy", + "requires": [], + "size": 5990082, + "version": "1.9.3" + }, + "numpy-1.9.3-py27_nomkl_1.tar.bz2": { + "build": "py27_nomkl_1", + "build_number": 1, + "date": "2016-02-13", + "depends": [ + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "06405a006d637ecf9e8885803cd6892a", + "name": "numpy", + "requires": [], + "size": 5991602, + "version": "1.9.3" + }, + "numpy-1.9.3-py27_nomkl_2.tar.bz2": { + "build": "py27_nomkl_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "dd24372e3695226b748b9c4853712e42", + "name": "numpy", + "requires": [], + "size": 5991065, + "version": "1.9.3" + }, + "numpy-1.9.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "license": "BSD", + "md5": "6bf8a625c93245041dd7da04a6b32693", + "name": "numpy", + "requires": [], + "size": 5939191, + "version": "1.9.3" + }, + "numpy-1.9.3-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-02-11", + "depends": [ + "mkl 11.3.1", + "python 3.4*" + ], + "license": "BSD", + "md5": "aab5281bd9b92dd5f5e4ca7f984e53b2", + "name": "numpy", + "requires": [], + "size": 5939219, + "version": "1.9.3" + }, + "numpy-1.9.3-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "mkl 11.3.1", + "python 3.4*" + ], + "license": "BSD", + "md5": "b47e319d1cf51f205517bb313de0a60a", + "name": "numpy", + "requires": [], + "size": 5937788, + "version": "1.9.3" + }, + "numpy-1.9.3-py34_nomkl_1.tar.bz2": { + "build": "py34_nomkl_1", + "build_number": 1, + "date": "2016-02-13", + "depends": [ + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "789e35ab3baec9a31734ad197acc8dfc", + "name": "numpy", + "requires": [], + "size": 5938603, + "version": "1.9.3" + }, + "numpy-1.9.3-py34_nomkl_2.tar.bz2": { + "build": "py34_nomkl_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "5ff72392242b657e16feb0c3954fd889", + "name": "numpy", + "requires": [], + "size": 5938382, + "version": "1.9.3" + }, + "numpy-1.9.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "license": "BSD", + "md5": "ec33dc5a45d35a67f110e7e81a393a73", + "name": "numpy", + "requires": [], + "size": 5941091, + "version": "1.9.3" + }, + "numpy-1.9.3-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-02-11", + "depends": [ + "mkl 11.3.1", + "python 3.5*" + ], + "license": "BSD", + "md5": "66fbbeec26d50d701848a14baa2de165", + "name": "numpy", + "requires": [], + "size": 5903643, + "version": "1.9.3" + }, + "numpy-1.9.3-py35_2.tar.bz2": { + "build": "py35_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "mkl 11.3.1", + "python 3.5*" + ], + "license": "BSD", + "md5": "358de5c43429b1e61362092b8f7a8b1a", + "name": "numpy", + "requires": [], + "size": 5903041, + "version": "1.9.3" + }, + "numpy-1.9.3-py35_nomkl_1.tar.bz2": { + "build": "py35_nomkl_1", + "build_number": 1, + "date": "2016-02-13", + "depends": [ + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "545d96ef29db1d9c30f699175f15ad85", + "name": "numpy", + "requires": [], + "size": 5904015, + "version": "1.9.3" + }, + "numpy-1.9.3-py35_nomkl_2.tar.bz2": { + "build": "py35_nomkl_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "3524a5d44aa5845bab869d67f475391f", + "name": "numpy", + "requires": [], + "size": 5903460, + "version": "1.9.3" + }, + "numpydoc-0.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "sphinx" + ], + "license": "BSD", + "md5": "3c930b7bcd4a3c3071cd301093aaa28a", + "name": "numpydoc", + "requires": [], + "size": 42364, + "version": "0.4" + }, + "numpydoc-0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "sphinx" + ], + "license": "BSD", + "md5": "84c8cb7e12419e9d8d91e6b261c39eba", + "name": "numpydoc", + "requires": [], + "size": 42368, + "version": "0.4" + }, + "numpydoc-0.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-10", + "depends": [ + "python 2.6*", + "sphinx" + ], + "license": "BSD", + "md5": "435e0855209dc628d6f148c6723867ae", + "name": "numpydoc", + "requires": [], + "size": 1073486, + "version": "0.5" + }, + "numpydoc-0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-10", + "depends": [ + "python 2.7*", + "sphinx" + ], + "license": "BSD", + "md5": "dadb44b3df855df09d4c20c618be9aa0", + "name": "numpydoc", + "requires": [], + "size": 1074515, + "version": "0.5" + }, + "numpydoc-0.5-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-09-08", + "depends": [ + "python 2.7*", + "sphinx" + ], + "license": "BSD", + "md5": "6b4248a6a4ebbfc25e4aff4529878999", + "name": "numpydoc", + "requires": [], + "size": 54287, + "version": "0.5" + }, + "numpydoc-0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-10", + "depends": [ + "python 3.3*", + "sphinx" + ], + "license": "BSD", + "md5": "83346f997c4236eadf7c326e16ff9111", + "name": "numpydoc", + "requires": [], + "size": 1091741, + "version": "0.5" + }, + "numpydoc-0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-10", + "depends": [ + "python 3.4*", + "sphinx" + ], + "license": "BSD", + "md5": "3483c92035d4b813d1f84524fa6c27e9", + "name": "numpydoc", + "requires": [], + "size": 1093534, + "version": "0.5" + }, + "numpydoc-0.5-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-09-08", + "depends": [ + "python 3.4*", + "sphinx" + ], + "license": "BSD", + "md5": "f942f7b45a6f23ab2ffc0217a8270819", + "name": "numpydoc", + "requires": [], + "size": 56262, + "version": "0.5" + }, + "numpydoc-0.5-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "sphinx" + ], + "license": "BSD", + "md5": "bed87c30a4529c165e9f7954694e50ff", + "name": "numpydoc", + "requires": [], + "size": 56050, + "version": "0.5" + }, + "odo-0.2.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "c2c789d5f320e65da399a8e6903253e9", + "name": "odo", + "requires": [], + "size": 134429, + "version": "0.2.2" + }, + "odo-0.2.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "2c59b2dfa2dfeff74062d3914e93e980", + "name": "odo", + "requires": [], + "size": 133544, + "version": "0.2.2" + }, + "odo-0.2.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "25d5b2defcdf746b1c78bf35a4e23f2d", + "name": "odo", + "requires": [], + "size": 137048, + "version": "0.2.2" + }, + "odo-0.2.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "9fade175b15febf20c6bd63122b929c5", + "name": "odo", + "requires": [], + "size": 136395, + "version": "0.2.2" + }, + "odo-0.3.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-11", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "a16441e47a8d41b90caf71a3e1f07850", + "name": "odo", + "requires": [], + "size": 134431, + "version": "0.3.0" + }, + "odo-0.3.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-11", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "93c52d7fe858b6b9dec66f9318eca7af", + "name": "odo", + "requires": [], + "size": 133580, + "version": "0.3.0" + }, + "odo-0.3.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-11", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "023017fba3abc96795eeead0ddb3c02b", + "name": "odo", + "requires": [], + "size": 137226, + "version": "0.3.0" + }, + "odo-0.3.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-11", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "f9fe272a601bbb35484f76388364b099", + "name": "odo", + "requires": [], + "size": 136575, + "version": "0.3.0" + }, + "odo-0.3.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "b6063bf82732a1944657784cd256c5ea", + "name": "odo", + "requires": [], + "size": 142071, + "version": "0.3.1" + }, + "odo-0.3.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "a4bac3cd15eb717518ac719e44fad4aa", + "name": "odo", + "requires": [], + "size": 141091, + "version": "0.3.1" + }, + "odo-0.3.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "5b19c32a0d5ed83d1b8babbb5544683c", + "name": "odo", + "requires": [], + "size": 144869, + "version": "0.3.1" + }, + "odo-0.3.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-12", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "b8d22dbae110a4fe03a977a25a997fa0", + "name": "odo", + "requires": [], + "size": 144653, + "version": "0.3.1" + }, + "odo-0.3.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "49c1ca13c15653727988bdfa89d277b6", + "name": "odo", + "requires": [], + "size": 148569, + "version": "0.3.2" + }, + "odo-0.3.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "ad9d980bec0f6db3fc87d72e3c3a3845", + "name": "odo", + "requires": [], + "size": 147612, + "version": "0.3.2" + }, + "odo-0.3.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "13792c581731a0b1407b42ff500615fc", + "name": "odo", + "requires": [], + "size": 151634, + "version": "0.3.2" + }, + "odo-0.3.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-27", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "6e464febb981679c3019af0bb3234ea2", + "name": "odo", + "requires": [], + "size": 151312, + "version": "0.3.2" + }, + "odo-0.3.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "62731dfee586f7dd3d2114751c4e6ccb", + "name": "odo", + "requires": [], + "size": 157727, + "version": "0.3.3" + }, + "odo-0.3.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "4b2ce66c1fc1c2f8242d60de99cf5bb5", + "name": "odo", + "requires": [], + "size": 156827, + "version": "0.3.3" + }, + "odo-0.3.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "6e3fe99694164798af689567b51b9625", + "name": "odo", + "requires": [], + "size": 165147, + "version": "0.3.3" + }, + "odo-0.3.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "6eb4159feecc4878b99e96987ba8ab7c", + "name": "odo", + "requires": [], + "size": 160514, + "version": "0.3.3" + }, + "odo-0.3.3-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "datashape", + "multipledispatch 0.4*", + "networkx", + "numpy 1.9*", + "pandas", + "python 3.5*", + "toolz" + ], + "license": "BSD", + "md5": "257a54d02c3c53ffdde896de838388ba", + "name": "odo", + "requires": [], + "size": 160148, + "version": "0.3.3" + }, + "odo-0.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-17", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "9d820a4863842d008fd81385bde46015", + "name": "odo", + "requires": [], + "size": 163168, + "version": "0.3.4" + }, + "odo-0.3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-17", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "d820e7df5226cb17b06bd1269dd9c727", + "name": "odo", + "requires": [], + "size": 167672, + "version": "0.3.4" + }, + "odo-0.3.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-17", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 3.5*", + "toolz" + ], + "license": "BSD", + "md5": "1f87c5e357f4982e5df435c1e0111453", + "name": "odo", + "requires": [], + "size": 167098, + "version": "0.3.4" + }, + "odo-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "284c4ba7dbb706eac77626b9bb2759f9", + "name": "odo", + "requires": [], + "size": 174904, + "version": "0.4.0" + }, + "odo-0.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "fc2829e1e45152b164a4c5b913c553c2", + "name": "odo", + "requires": [], + "size": 175692, + "version": "0.4.0" + }, + "odo-0.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 3.5*", + "toolz" + ], + "license": "BSD", + "md5": "72d38be0ae42284e865f8e5920a898a3", + "name": "odo", + "requires": [], + "size": 174818, + "version": "0.4.0" + }, + "odo-0.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "5cbf267ed3819bc3761dbfdbd2d21957", + "name": "odo", + "requires": [], + "size": 180895, + "version": "0.4.2" + }, + "odo-0.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "67e659f3ba3668d63c2ab3914b611909", + "name": "odo", + "requires": [], + "size": 181045, + "version": "0.4.2" + }, + "odo-0.4.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "datashape", + "multipledispatch", + "networkx", + "numpy", + "pandas", + "python 3.5*", + "toolz" + ], + "license": "BSD", + "md5": "732e4e0c59312f61572c25c18c034ad6", + "name": "odo", + "requires": [], + "size": 179892, + "version": "0.4.2" + }, + "openblas-0.2.14-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "system 5.8" + ], + "license": "BSD", + "md5": "e8fc97f3590d7c68029d25f030aa6252", + "name": "openblas", + "requires": [], + "size": 6868268, + "version": "0.2.14" + }, + "openblas-0.2.14-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-08-20", + "depends": [ + "libgfortran 1.0" + ], + "license": "BSD", + "md5": "a7cb64160f22089fd2ec01e0b2c4aab8", + "name": "openblas", + "requires": [], + "size": 6868422, + "version": "0.2.14" + }, + "openblas-0.2.14-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-09-18", + "depends": [ + "libgfortran 1.0" + ], + "license": "BSD", + "md5": "eaa4785d3e477216b5408ac1c4f6ac65", + "name": "openblas", + "requires": [], + "size": 7293582, + "version": "0.2.14" + }, + "openblas-0.2.14-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2015-09-22", + "depends": [ + "libgfortran 1.0" + ], + "license": "BSD", + "md5": "dc4fa7a9bafafa1fcff0f8f67c6aeaa5", + "name": "openblas", + "requires": [], + "size": 3620525, + "version": "0.2.14" + }, + "openblas-0.2.14-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0" + ], + "license": "BSD", + "md5": "e14c4d2a6f882d7bdae2fcb5e24f96b1", + "name": "openblas", + "requires": [], + "size": 3764588, + "version": "0.2.14" + }, + "opencv-2.4.10-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2015-10-06", + "depends": [ + "jpeg 8d", + "libpng 1.6.17", + "numpy 1.10*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "6b4bb1b8a55a735d68c554aebf0d9970", + "name": "opencv", + "requires": [], + "size": 9670688, + "version": "2.4.10" + }, + "opencv-2.4.10-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.9*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "49d0a0811ace5cb01bd7040863a1a4ec", + "name": "opencv", + "requires": [], + "size": 9513805, + "version": "2.4.10" + }, + "opencv-2.4.10-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-05-27", + "depends": [ + "jpeg 8d", + "libpng 1.6.17", + "numpy 1.9*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "e4b190bada3d7e908dbfb209adb5eed7", + "name": "opencv", + "requires": [], + "size": 9516823, + "version": "2.4.10" + }, + "opencv-2.4.10-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.9*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "2621baf0ba75a9e9fb55aede2bddd160", + "name": "opencv", + "requires": [], + "size": 9670586, + "version": "2.4.10" + }, + "opencv-2.4.10-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-05-26", + "depends": [ + "jpeg 8d", + "libpng 1.6.17", + "numpy 1.9*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "82e1145622e1ba343528def4cd3d6460", + "name": "opencv", + "requires": [], + "size": 9672118, + "version": "2.4.10" + }, + "opencv-2.4.2-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.2.50", + "numpy 1.5*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "6ba2f7a73021563160d615543f765df8", + "name": "opencv", + "requires": [], + "size": 5315281, + "version": "2.4.2" + }, + "opencv-2.4.2-np15py26_1.tar.bz2": { + "build": "np15py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.5*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "391b4da9b980471902cf95e50675550f", + "name": "opencv", + "requires": [], + "size": 7431517, + "version": "2.4.2" + }, + "opencv-2.4.2-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.2.50", + "numpy 1.5*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "6ea8901b05d76de35411bca7a6ef5c6b", + "name": "opencv", + "requires": [], + "size": 7556021, + "version": "2.4.2" + }, + "opencv-2.4.2-np15py27_1.tar.bz2": { + "build": "np15py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.5*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "0a63d8b4ec24cac9a978b7b37aed5be0", + "name": "opencv", + "requires": [], + "size": 7554295, + "version": "2.4.2" + }, + "opencv-2.4.2-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.2.50", + "numpy 1.6*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "6c6c4022c5e22a4088db8b5c6e643194", + "name": "opencv", + "requires": [], + "size": 5315402, + "version": "2.4.2" + }, + "opencv-2.4.2-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.6*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "63d84690e690f95c2377797e348721d8", + "name": "opencv", + "requires": [], + "size": 7431316, + "version": "2.4.2" + }, + "opencv-2.4.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.2.50", + "numpy 1.6*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "54da26bff89162b5c462adbf06287a42", + "name": "opencv", + "requires": [], + "size": 7557321, + "version": "2.4.2" + }, + "opencv-2.4.2-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.6*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "58591009277de22f24561c793205d35b", + "name": "opencv", + "requires": [], + "size": 7554891, + "version": "2.4.2" + }, + "opencv-2.4.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.2.50", + "numpy 1.7*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "93a64269e9ad972783166fe49bc86778", + "name": "opencv", + "requires": [], + "size": 5315325, + "version": "2.4.2" + }, + "opencv-2.4.2-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.7*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "3ac0ff557dbb7fcc2b4094321cbc83e6", + "name": "opencv", + "requires": [], + "size": 7431686, + "version": "2.4.2" + }, + "opencv-2.4.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.2.50", + "numpy 1.7*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "9de6ae743eaf2a501e60a1193a4e68c0", + "name": "opencv", + "requires": [], + "size": 7556357, + "version": "2.4.2" + }, + "opencv-2.4.2-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.7*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "4d914d8054ac19f669dec739b1670d4f", + "name": "opencv", + "requires": [], + "size": 7552999, + "version": "2.4.2" + }, + "opencv-2.4.6-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.6*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "c78d9319c4f0775e1519d301b4d89ef9", + "name": "opencv", + "requires": [], + "size": 8450592, + "version": "2.4.6" + }, + "opencv-2.4.6-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.6*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "e88ab3ad4ef1b8d29c12c87fedf7646a", + "name": "opencv", + "requires": [], + "size": 8574066, + "version": "2.4.6" + }, + "opencv-2.4.6-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.7*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "954932a2f1eb0a227da5238b667a47ac", + "name": "opencv", + "requires": [], + "size": 8449882, + "version": "2.4.6" + }, + "opencv-2.4.6-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.7*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "784dabb616f3f6d3e49b29d77d34e72b", + "name": "opencv", + "requires": [], + "size": 8573296, + "version": "2.4.6" + }, + "opencv-2.4.6-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.8*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "28746d6b87e8452d5b9b145d37e85595", + "name": "opencv", + "requires": [], + "size": 8449543, + "version": "2.4.6" + }, + "opencv-2.4.6-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.8*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "d96c92d9071d5ba206e24ec3cd3ca3fd", + "name": "opencv", + "requires": [], + "size": 8579688, + "version": "2.4.6" + }, + "opencv-2.4.9-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jpeg 8d", + "libpng 1.5.13", + "numpy 1.8*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "6a6ae5e829fe8dfd399d01707f986a53", + "name": "opencv", + "requires": [], + "size": 9308714, + "version": "2.4.9" + }, + "openldap-2.4.36-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*" + ], + "license": "BSD-style (http://www.openldap.org/software/release/license.html)", + "license_family": "BSD", + "md5": "e338bdf0ecf52a0abf85092186bc2786", + "name": "openldap", + "requires": [], + "size": 3541334, + "version": "2.4.36" + }, + "openldap-2.4.36-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2016-02-12", + "depends": [ + "openssl 1.0.2*" + ], + "license": "BSD-style (http://www.openldap.org/software/release/license.html)", + "license_family": "BSD", + "md5": "9aac3853a7e1c8aad1b6dbe7b5e30678", + "name": "openldap", + "requires": [], + "size": 3720158, + "version": "2.4.36" + }, + "openpyxl-1.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "1097fed2783b2ee4dfa36fb20c05b557", + "name": "openpyxl", + "requires": [], + "size": 109852, + "version": "1.6.2" + }, + "openpyxl-1.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "e86677730bcb254fcd91c8a6dcd72280", + "name": "openpyxl", + "requires": [], + "size": 112776, + "version": "1.6.2" + }, + "openpyxl-1.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "112dc0ecdfae213838f15b81a3dd891e", + "name": "openpyxl", + "requires": [], + "size": 131381, + "version": "1.8.2" + }, + "openpyxl-1.8.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "lxml", + "python 2.7*" + ], + "license": "MIT", + "md5": "6acb6ed41d25e6637ee6fedef01a63e4", + "name": "openpyxl", + "requires": [], + "size": 131387, + "version": "1.8.2" + }, + "openpyxl-1.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "ac9061b8b4c5ee069de5d9b100d8dd9f", + "name": "openpyxl", + "requires": [], + "size": 164393, + "version": "1.8.2" + }, + "openpyxl-1.8.2-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "lxml", + "python 3.3*" + ], + "license": "MIT", + "md5": "7c2587b9f6bd26fb6fe837faa271740c", + "name": "openpyxl", + "requires": [], + "size": 164552, + "version": "1.8.2" + }, + "openpyxl-1.8.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "lxml", + "python 3.4*" + ], + "license": "MIT", + "md5": "262cdc8c4528a4a3f0c0c30330b89f1e", + "name": "openpyxl", + "requires": [], + "size": 135167, + "version": "1.8.2" + }, + "openpyxl-1.8.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "lxml", + "python 2.7*" + ], + "license": "MIT", + "md5": "5591bbdf884e1eed7c1b38cd07614099", + "name": "openpyxl", + "requires": [], + "size": 130846, + "version": "1.8.5" + }, + "openpyxl-1.8.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "lxml", + "python 3.3*" + ], + "license": "MIT", + "md5": "62210875d98845878fd1da0e9ab7de7f", + "name": "openpyxl", + "requires": [], + "size": 164056, + "version": "1.8.5" + }, + "openpyxl-1.8.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "lxml", + "python 3.4*" + ], + "license": "MIT", + "md5": "434a13dbcd98ada6955f49c29b78a074", + "name": "openpyxl", + "requires": [], + "size": 134293, + "version": "1.8.5" + }, + "openpyxl-1.8.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "lxml", + "python 3.5*" + ], + "license": "MIT", + "md5": "2fa43e362505798274954385d5047b03", + "name": "openpyxl", + "requires": [], + "size": 133523, + "version": "1.8.5" + }, + "openpyxl-2.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jdcal 1.0", + "lxml", + "python 2.7*" + ], + "license": "MIT", + "md5": "9b89808f485f5eb871c69f2820582907", + "name": "openpyxl", + "requires": [], + "size": 211592, + "version": "2.0.2" + }, + "openpyxl-2.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jdcal 1.0", + "lxml", + "python 3.3*" + ], + "license": "MIT", + "md5": "be73b23aca52b7bbfb734bfb21ee4caf", + "name": "openpyxl", + "requires": [], + "size": 218042, + "version": "2.0.2" + }, + "openpyxl-2.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "jdcal 1.0", + "lxml", + "python 3.4*" + ], + "license": "MIT", + "md5": "981d684c6ae730169d05d65a66f11663", + "name": "openpyxl", + "requires": [], + "size": 213960, + "version": "2.0.2" + }, + "openpyxl-2.2.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-19", + "depends": [ + "jdcal 1.0", + "lxml", + "python 2.7*" + ], + "license": "MIT", + "md5": "0aaca9317b6f51fc65d6536de66ce364", + "name": "openpyxl", + "requires": [], + "size": 192986, + "version": "2.2.6" + }, + "openpyxl-2.2.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "jdcal 1.0", + "lxml", + "python 3.4*" + ], + "license": "MIT", + "md5": "f4ce0652af154367ec4fcbd5930a9f46", + "name": "openpyxl", + "requires": [], + "size": 190693, + "version": "2.2.6" + }, + "openpyxl-2.2.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "jdcal 1.0", + "lxml", + "python 3.5*" + ], + "license": "MIT", + "md5": "94c939008573c8b5c8a1b80ca99944c7", + "name": "openpyxl", + "requires": [], + "size": 189859, + "version": "2.2.6" + }, + "openpyxl-2.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "et_xmlfile", + "jdcal", + "python 2.7*" + ], + "license": "MIT", + "md5": "35e3d3a2fc58bc0b3c7f9e57591702c8", + "name": "openpyxl", + "requires": [], + "size": 254132, + "version": "2.3.2" + }, + "openpyxl-2.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "et_xmlfile", + "jdcal", + "python 3.4*" + ], + "license": "MIT", + "md5": "f2d162f908f013e9ba38eee048241e66", + "name": "openpyxl", + "requires": [], + "size": 260414, + "version": "2.3.2" + }, + "openpyxl-2.3.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "et_xmlfile", + "jdcal", + "python 3.5*" + ], + "license": "MIT", + "md5": "d85fba93d37dfc27ae4df613fd72220c", + "name": "openpyxl", + "requires": [], + "size": 259276, + "version": "2.3.2" + }, + "openssl-1.0.1c-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "26bbfbe31c920237f7ac71e9c736607f", + "name": "openssl", + "requires": [], + "size": 2198023, + "version": "1.0.1c" + }, + "openssl-1.0.1g-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "d921018f39c861b78b38b1ae9b2634f5", + "name": "openssl", + "requires": [], + "size": 2209349, + "version": "1.0.1g" + }, + "openssl-1.0.1h-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "9474f91263e44ed3d4058c3d42c1d335", + "name": "openssl", + "requires": [], + "size": 2209603, + "version": "1.0.1h" + }, + "openssl-1.0.1h-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-09-15", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "d3d4d0c0dc1bc1a3aa3d139eb960a397", + "name": "openssl", + "requires": [], + "size": 2574474, + "version": "1.0.1h" + }, + "openssl-1.0.1j-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-12-12", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "1aab7631aaf4742feceec120e5274bf7", + "name": "openssl", + "requires": [], + "size": 2579402, + "version": "1.0.1j" + }, + "openssl-1.0.1j-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-12-15", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "be17fa85588e8b113f06a40dcaa3341d", + "name": "openssl", + "requires": [], + "size": 2744192, + "version": "1.0.1j" + }, + "openssl-1.0.1j-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-12-15", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "8fff6ec53dc75aee4106d8e50074cec1", + "name": "openssl", + "requires": [], + "size": 2745477, + "version": "1.0.1j" + }, + "openssl-1.0.1j-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2014-12-15", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "e2ae72b96cd4350d8ef5b642e635e2a6", + "name": "openssl", + "requires": [], + "size": 2745195, + "version": "1.0.1j" + }, + "openssl-1.0.1j-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2014-12-17", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "bd67cc44e34c5bc0d9468e90f50b3f7b", + "name": "openssl", + "requires": [], + "size": 2746228, + "version": "1.0.1j" + }, + "openssl-1.0.1j-5.tar.bz2": { + "build": "5", + "build_number": 5, + "date": "2015-01-08", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "957107b951f611301ac11c5b0ea7b4a3", + "name": "openssl", + "requires": [], + "size": 2745788, + "version": "1.0.1j" + }, + "openssl-1.0.1k-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-01-10", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "aa671fc4dffa78b940a159fb3b454b5a", + "name": "openssl", + "requires": [], + "size": 2751975, + "version": "1.0.1k" + }, + "openssl-1.0.1k-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-03-11", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "0216d3b6bd5ece689476167806d37c51", + "name": "openssl", + "requires": [], + "size": 2752020, + "version": "1.0.1k" + }, + "openssl-1.0.2d-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-19", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "64ed901cc841b5d1790a04cdbc408cc0", + "name": "openssl", + "requires": [], + "size": 3318611, + "version": "1.0.2d" + }, + "openssl-1.0.2e-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-12", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "8a39304d7ccf5a4284243c2526714e68", + "name": "openssl", + "requires": [], + "size": 3319839, + "version": "1.0.2e" + }, + "openssl-1.0.2f-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-29", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "6ab3f6f12bcb45916eeb79f27c76a0e1", + "name": "openssl", + "requires": [], + "size": 3318392, + "version": "1.0.2f" + }, + "openssl-1.0.2g-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-03-01", + "depends": [], + "license": "Apache-style (http://www.openssl.org/source/license.html)", + "license_family": "Apache", + "md5": "d692484d115db242af6a8b75dd796fb2", + "name": "openssl", + "requires": [], + "size": 3319259, + "version": "1.0.2g" + }, + "oracle-instantclient-11.2.0.4.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-10-29", + "depends": [], + "license_family": "Proprietary", + "md5": "08eaff60b388ba680e2536950632f535", + "name": "oracle-instantclient", + "requires": [], + "size": 56614260, + "version": "11.2.0.4.0" + }, + "orange-2.7.8-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2016-02-03", + "depends": [ + "pyqt", + "python 2.7*", + "scipy", + "setuptools" + ], + "license": "GPL3", + "md5": "5e4ae8090e673f569310bb2bd1feeb88", + "name": "orange", + "requires": [], + "size": 38147436, + "version": "2.7.8" + }, + "orange-app-1.0-py27_0.tar.bz2": { + "app_entry": "orange-canvas", + "build": "py27_0", + "build_number": 0, + "date": "2016-02-03", + "depends": [ + "orange", + "python 2.7*" + ], + "icon": "4bdb18d35809c09e4c47b552fb27cf74.png", + "license": "GPL3", + "md5": "93d713f2fc885ebfdb31d3eec3310072", + "name": "orange-app", + "requires": [], + "size": 12719, + "summary": "data visualization and data analysis tool", + "type": "app", + "version": "1.0" + }, + "orange-app-1.0-py35_0.tar.bz2": { + "app_entry": "orange-canvas", + "build": "py35_0", + "build_number": 0, + "date": "2016-02-03", + "depends": [ + "orange3", + "python 3.5*" + ], + "icon": "4bdb18d35809c09e4c47b552fb27cf74.png", + "license": "GPL3", + "md5": "4c490839e1a66c1fbd9fd4b8da5744dc", + "name": "orange-app", + "requires": [], + "size": 12719, + "summary": "data visualization and data analysis tool", + "type": "app", + "version": "1.0" + }, + "orange3-3.2a1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-03", + "depends": [ + "bottlechest", + "chardet", + "docutils", + "pyqt", + "pyqtgraph", + "python 3.5*", + "scikit-learn", + "scipy", + "setuptools", + "xlrd >=0.9.2" + ], + "license": "GPL3", + "md5": "d45118b7a3f3688ac5546c2ce7a9e172", + "name": "orange3", + "requires": [], + "size": 3941077, + "version": "3.2a1" + }, + "ordereddict-1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "66d47acfc9de79393fbfeaedf7166acd", + "name": "ordereddict", + "requires": [], + "size": 3833, + "version": "1.1" + }, + "pandas-0.10.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "3b3c73388f2c214e6d0aa1a428a7609f", + "name": "pandas", + "requires": [], + "size": 5626409, + "version": "0.10.0" + }, + "pandas-0.10.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6d1556bb6c6d395a67271eada419ab8d", + "name": "pandas", + "requires": [], + "size": 5631766, + "version": "0.10.0" + }, + "pandas-0.10.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "db8a2b5d28c4fe6bacf6f4ab0a6b0db7", + "name": "pandas", + "requires": [], + "size": 5626761, + "version": "0.10.0" + }, + "pandas-0.10.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "855d7551d752bdf1ee29c18a26d3230b", + "name": "pandas", + "requires": [], + "size": 5630465, + "version": "0.10.0" + }, + "pandas-0.10.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "f9bd247925559f5ce9e38b68f3c86563", + "name": "pandas", + "requires": [], + "size": 5729205, + "version": "0.10.1" + }, + "pandas-0.10.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "944eb537f6fc8e42db78d63dc27f0ae1", + "name": "pandas", + "requires": [], + "size": 5727438, + "version": "0.10.1" + }, + "pandas-0.10.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "51dec90f1d61ba6270e6110e61085558", + "name": "pandas", + "requires": [], + "size": 5732325, + "version": "0.10.1" + }, + "pandas-0.10.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6a7b9ce85321b8c056a78b2406550184", + "name": "pandas", + "requires": [], + "size": 5732994, + "version": "0.10.1" + }, + "pandas-0.10.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "9a1489adeb1eee825aa74718926c1dc6", + "name": "pandas", + "requires": [], + "size": 5682987, + "version": "0.10.1" + }, + "pandas-0.11.0-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.6*", + "pytz" + ], + "license": "BSD", + "md5": "509c62e2c2a82eed1407b3550ed8805d", + "name": "pandas", + "requires": [], + "size": 6698730, + "version": "0.11.0" + }, + "pandas-0.11.0-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "8c3ee9cafe988d56baef3780297e1a1e", + "name": "pandas", + "requires": [], + "size": 6695273, + "version": "0.11.0" + }, + "pandas-0.11.0-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.6*", + "pytz" + ], + "license": "BSD", + "md5": "68234da2dcb99d0605d93aa7245efe49", + "name": "pandas", + "requires": [], + "size": 6700892, + "version": "0.11.0" + }, + "pandas-0.11.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "74d9eef68e8b5912d3ceeca1b6b92768", + "name": "pandas", + "requires": [], + "size": 6695398, + "version": "0.11.0" + }, + "pandas-0.11.0-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 3.3*", + "pytz" + ], + "license": "BSD", + "md5": "be600d1f925774a31736dd8ff8b43c4c", + "name": "pandas", + "requires": [], + "size": 6614539, + "version": "0.11.0" + }, + "pandas-0.12.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.6*", + "pytz" + ], + "license": "BSD", + "md5": "d35b69f7235518170de1f8402961f20a", + "name": "pandas", + "requires": [], + "size": 7256109, + "version": "0.12.0" + }, + "pandas-0.12.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "475b58d0ba26ebf94ecf86c1df6d950a", + "name": "pandas", + "requires": [], + "size": 7253077, + "version": "0.12.0" + }, + "pandas-0.12.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.6*", + "pytz" + ], + "license": "BSD", + "md5": "6d992e3f02327cb62daf651768ebf8c7", + "name": "pandas", + "requires": [], + "size": 7255661, + "version": "0.12.0" + }, + "pandas-0.12.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "8f657fb14a3cdfd59ff26e7c6b572a53", + "name": "pandas", + "requires": [], + "size": 7255294, + "version": "0.12.0" + }, + "pandas-0.12.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 3.3*", + "pytz" + ], + "license": "BSD", + "md5": "15efd17072b559faf8ec829658a2c799", + "name": "pandas", + "requires": [], + "size": 7183936, + "version": "0.12.0" + }, + "pandas-0.12.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "d4208ebb4c44c9afe9a9571b9d2f2a38", + "name": "pandas", + "requires": [], + "size": 7254574, + "version": "0.12.0" + }, + "pandas-0.13.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.6*", + "pytz" + ], + "license": "BSD", + "md5": "d01bc60b333996b4bfcc2d6ebc05faff", + "name": "pandas", + "requires": [], + "size": 8086330, + "version": "0.13.0" + }, + "pandas-0.13.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "fea4cc3845fe58d81a9838331a7f6d26", + "name": "pandas", + "requires": [], + "size": 8077711, + "version": "0.13.0" + }, + "pandas-0.13.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 3.3*", + "pytz" + ], + "license": "BSD", + "md5": "ef76e64517bf691f8d018c21d5c467ca", + "name": "pandas", + "requires": [], + "size": 8043940, + "version": "0.13.0" + }, + "pandas-0.13.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.6*", + "pytz" + ], + "license": "BSD", + "md5": "1f1d8e4788140a608adc5a4ac5cf3807", + "name": "pandas", + "requires": [], + "size": 8144929, + "version": "0.13.0" + }, + "pandas-0.13.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.7*", + "pytz" + ], + "license": "BSD", + "md5": "35f58f89be180968cb6a38991f1bc2b6", + "name": "pandas", + "requires": [], + "size": 8132967, + "version": "0.13.0" + }, + "pandas-0.13.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 3.3*", + "pytz" + ], + "license": "BSD", + "md5": "f0e9e095a06807b0b4dbe98978e5bd6e", + "name": "pandas", + "requires": [], + "size": 8142082, + "version": "0.13.0" + }, + "pandas-0.13.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.6*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "356ee41d76997988297c4c7e6e1684a5", + "name": "pandas", + "requires": [], + "size": 8243510, + "version": "0.13.1" + }, + "pandas-0.13.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.7*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "fab9ac1ffa08112a141f5552780e0245", + "name": "pandas", + "requires": [], + "size": 8244672, + "version": "0.13.1" + }, + "pandas-0.13.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 3.3*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "2e39cf795199e18066ae022c2f31b4be", + "name": "pandas", + "requires": [], + "size": 8202680, + "version": "0.13.1" + }, + "pandas-0.13.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 3.4*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "1a9e6ec8f26e4dac131582fc237e23c9", + "name": "pandas", + "requires": [], + "size": 9078330, + "version": "0.13.1" + }, + "pandas-0.14.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.6*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "276f272c6996adcd8d213e2be03307b0", + "name": "pandas", + "requires": [], + "size": 9327352, + "version": "0.14.0" + }, + "pandas-0.14.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.7*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "f3ced95e8fd90a7a0b3fe8367e21777b", + "name": "pandas", + "requires": [], + "size": 9324981, + "version": "0.14.0" + }, + "pandas-0.14.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 3.3*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "4a64b4beb300e6e3deef235508cbe9af", + "name": "pandas", + "requires": [], + "size": 9473842, + "version": "0.14.0" + }, + "pandas-0.14.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 3.4*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "41db730a1d0d02bba23cb2b02a163975", + "name": "pandas", + "requires": [], + "size": 10053186, + "version": "0.14.0" + }, + "pandas-0.14.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "python-dateutil", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "0fa82c6bd3c548ddf7da8b261527f209", + "name": "pandas", + "requires": [], + "size": 9735054, + "version": "0.14.1" + }, + "pandas-0.14.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "python-dateutil", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "5ab380255247d8e35a4418bcd04de2a6", + "name": "pandas", + "requires": [], + "size": 10784983, + "version": "0.14.1" + }, + "pandas-0.14.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.6*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "f358abef3c32f2bb3d21a9e14acba4b7", + "name": "pandas", + "requires": [], + "size": 9478141, + "version": "0.14.1" + }, + "pandas-0.14.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 2.7*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "94306759338980914008e81fc5f6fb2f", + "name": "pandas", + "requires": [], + "size": 9464755, + "version": "0.14.1" + }, + "pandas-0.14.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 3.3*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "7e096c916a340ac334acf2d5956d62e5", + "name": "pandas", + "requires": [], + "size": 9675650, + "version": "0.14.1" + }, + "pandas-0.14.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.8*", + "python 3.4*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "8cf29844ce11da71ca6b18c524f55c78", + "name": "pandas", + "requires": [], + "size": 10238082, + "version": "0.14.1" + }, + "pandas-0.14.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 2.6*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "32cbd957bf7dc5a1d33c9603a639ceae", + "name": "pandas", + "requires": [], + "size": 9406468, + "version": "0.14.1" + }, + "pandas-0.14.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 2.7*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "ce9d7f84341177e70ef17471b35049e9", + "name": "pandas", + "requires": [], + "size": 9407446, + "version": "0.14.1" + }, + "pandas-0.14.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 3.3*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "e0d86d17799b9e27285a803a0343beaa", + "name": "pandas", + "requires": [], + "size": 9668043, + "version": "0.14.1" + }, + "pandas-0.14.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 3.4*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "e5b588c3fddde7886e7379690c891111", + "name": "pandas", + "requires": [], + "size": 10385068, + "version": "0.14.1" + }, + "pandas-0.15.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 2.6*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "3b43fbc8c62e43bbd54de6524fc9cfca", + "name": "pandas", + "requires": [], + "size": 10221907, + "version": "0.15.0" + }, + "pandas-0.15.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 2.7*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "2b2ac5bb207e6ca2c1470e3c5a340f6b", + "name": "pandas", + "requires": [], + "size": 10222131, + "version": "0.15.0" + }, + "pandas-0.15.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 3.3*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "d60c3aad91574c7f8bdfa306b12562b8", + "name": "pandas", + "requires": [], + "size": 10411703, + "version": "0.15.0" + }, + "pandas-0.15.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 3.4*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "0bb69f183a35c45c585e68aa4c323259", + "name": "pandas", + "requires": [], + "size": 11252191, + "version": "0.15.0" + }, + "pandas-0.15.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 2.6*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "d7f975afa5cd64c8e26a2a5bab7f7e3b", + "name": "pandas", + "requires": [], + "size": 10257533, + "version": "0.15.1" + }, + "pandas-0.15.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 2.7*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "eaa94bf29876e9472c34ee6bf2f92f24", + "name": "pandas", + "requires": [], + "size": 10256905, + "version": "0.15.1" + }, + "pandas-0.15.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 3.3*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "b9f1dbb0e22c15ebabc80d3952132297", + "name": "pandas", + "requires": [], + "size": 10459031, + "version": "0.15.1" + }, + "pandas-0.15.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 3.4*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "3300ff809d8b6e58d4c8fecc34842669", + "name": "pandas", + "requires": [], + "size": 11275621, + "version": "0.15.1" + }, + "pandas-0.15.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-12-12", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 2.6*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "8d5d56a448323e6f74e2b20e4acc24bb", + "name": "pandas", + "requires": [], + "size": 10417014, + "version": "0.15.2" + }, + "pandas-0.15.2-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "d6c59866cfb3a820ffd82851f41ffa69", + "name": "pandas", + "requires": [], + "size": 10418170, + "version": "0.15.2" + }, + "pandas-0.15.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-12", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 2.7*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "6d475db5c81c79bb4c886bea421c5b49", + "name": "pandas", + "requires": [], + "size": 10415965, + "version": "0.15.2" + }, + "pandas-0.15.2-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "b5d47ebcb9f7ba651e887408aff79e2b", + "name": "pandas", + "requires": [], + "size": 10411628, + "version": "0.15.2" + }, + "pandas-0.15.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-12", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 3.3*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "2561b0ec59d8637915080016730f623b", + "name": "pandas", + "requires": [], + "size": 10564094, + "version": "0.15.2" + }, + "pandas-0.15.2-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "023334d9cbce4685640f3abe6cb79bc5", + "name": "pandas", + "requires": [], + "size": 10567548, + "version": "0.15.2" + }, + "pandas-0.15.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-12", + "depends": [ + "dateutil", + "numpy 1.9*", + "python 3.4*", + "pytz", + "scipy", + "setuptools" + ], + "license": "BSD", + "md5": "7d64838777c025b802f9a487ec363b42", + "name": "pandas", + "requires": [], + "size": 11414415, + "version": "0.15.2" + }, + "pandas-0.15.2-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "7dab9632917f7226e8c25613707edc97", + "name": "pandas", + "requires": [], + "size": 11415815, + "version": "0.15.2" + }, + "pandas-0.16.0-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-03-30", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "0644ddeed0189a72ff8193d14475d905", + "name": "pandas", + "requires": [], + "size": 11018849, + "version": "0.16.0" + }, + "pandas-0.16.0-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-03-30", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "27aa72745d882ae978fe971d54ddda38", + "name": "pandas", + "requires": [], + "size": 11003256, + "version": "0.16.0" + }, + "pandas-0.16.0-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-03-30", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "59ad8435436aa64618df357c3faf1526", + "name": "pandas", + "requires": [], + "size": 11210488, + "version": "0.16.0" + }, + "pandas-0.16.0-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-03-30", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "a337ddc7403770ef5915870dbc0a8ea5", + "name": "pandas", + "requires": [], + "size": 12123790, + "version": "0.16.0" + }, + "pandas-0.16.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "4e65d92bb676548e38aa61f49d116929", + "name": "pandas", + "requires": [], + "size": 11254288, + "version": "0.16.1" + }, + "pandas-0.16.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "eefd4562045c4ddb069fbe5183fc10c5", + "name": "pandas", + "requires": [], + "size": 11227824, + "version": "0.16.1" + }, + "pandas-0.16.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "5d5f39b8f3c89f02a629b1e65c9d31df", + "name": "pandas", + "requires": [], + "size": 11412898, + "version": "0.16.1" + }, + "pandas-0.16.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "24846f03002f0368ff4cb68a29474f25", + "name": "pandas", + "requires": [], + "size": 12377332, + "version": "0.16.1" + }, + "pandas-0.16.2-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "29a3dbac1a0368fa005a09e7471ea0a2", + "name": "pandas", + "requires": [], + "size": 11387955, + "version": "0.16.2" + }, + "pandas-0.16.2-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "155f4090ec530d7ff8e96df3be2b222a", + "name": "pandas", + "requires": [], + "size": 12509788, + "version": "0.16.2" + }, + "pandas-0.16.2-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "36d956466288536169f2a70bfc8dcdb4", + "name": "pandas", + "requires": [], + "size": 12507480, + "version": "0.16.2" + }, + "pandas-0.16.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-15", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "9c70b589da84c400a2c383deaea885bc", + "name": "pandas", + "requires": [], + "size": 11295657, + "version": "0.16.2" + }, + "pandas-0.16.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-15", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "d8b15382bdf85ebaf50e0e69f509bd61", + "name": "pandas", + "requires": [], + "size": 11276514, + "version": "0.16.2" + }, + "pandas-0.16.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-15", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "bf8d4e09679f1b66356d722798101e1f", + "name": "pandas", + "requires": [], + "size": 11460342, + "version": "0.16.2" + }, + "pandas-0.16.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-15", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "558c4e7404d85de5a5e1860785ff71c5", + "name": "pandas", + "requires": [], + "size": 12433774, + "version": "0.16.2" + }, + "pandas-0.16.2-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "11bac120ef1c212e732d7a689a915f65", + "name": "pandas", + "requires": [], + "size": 12502223, + "version": "0.16.2" + }, + "pandas-0.17.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "8b7d2813715f14288481b82b3c4588fc", + "name": "pandas", + "requires": [], + "size": 12823112, + "version": "0.17.0" + }, + "pandas-0.17.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "52b6dfaa91d039d9c6caf058525d9c9c", + "name": "pandas", + "requires": [], + "size": 13752141, + "version": "0.17.0" + }, + "pandas-0.17.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "ee270ad022af2578754eb298c1d88c10", + "name": "pandas", + "requires": [], + "size": 13749096, + "version": "0.17.0" + }, + "pandas-0.17.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-20", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "94c180e9188dfca1b84bc624a6a9ae00", + "name": "pandas", + "requires": [], + "size": 13006868, + "version": "0.17.1" + }, + "pandas-0.17.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-20", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "864e97f552a3a2c52e569e23ee1e28ce", + "name": "pandas", + "requires": [], + "size": 13914728, + "version": "0.17.1" + }, + "pandas-0.17.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-20", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "842d9fe007890aca021b1a387443867b", + "name": "pandas", + "requires": [], + "size": 13895400, + "version": "0.17.1" + }, + "pandas-0.17.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2016-03-05", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "1cd99572e681eb02acfb3b904813674b", + "name": "pandas", + "requires": [], + "size": 12833792, + "version": "0.17.1" + }, + "pandas-0.17.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2016-03-05", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "a2cec01167328b389a3e8b9b3042d4e5", + "name": "pandas", + "requires": [], + "size": 14027930, + "version": "0.17.1" + }, + "pandas-0.17.1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2016-03-05", + "depends": [ + "numpy 1.9*", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "ee3937279f6c9ec94e83d3e654cc3d67", + "name": "pandas", + "requires": [], + "size": 13778374, + "version": "0.17.1" + }, + "pandas-0.18.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-03-11", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "aff4f9b98014a6d99f886608385990a4", + "name": "pandas", + "requires": [], + "size": 12577764, + "version": "0.18.0" + }, + "pandas-0.18.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-03-11", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "e1a81e883d6e62749f8a5c3a3a0ff4d6", + "name": "pandas", + "requires": [], + "size": 13790303, + "version": "0.18.0" + }, + "pandas-0.18.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-03-11", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "ec436d6414ce0c51496e06635d5d2085", + "name": "pandas", + "requires": [], + "size": 13559823, + "version": "0.18.0" + }, + "pandas-0.18.0-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "python 2.7*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "48cc6a6dc4bbafab177acc566e11ecb0", + "name": "pandas", + "requires": [], + "size": 12574733, + "version": "0.18.0" + }, + "pandas-0.18.0-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "numpy 1.11*", + "python 3.4*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "ff80e49dc81bf3c90984a007e059c2e2", + "name": "pandas", + "requires": [], + "size": 13783065, + "version": "0.18.0" + }, + "pandas-0.18.0-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "numpy 1.11*", + "python 3.5*", + "python-dateutil", + "pytz" + ], + "license": "BSD", + "md5": "d88fd862125761499bc9be0e49472c7b", + "name": "pandas", + "requires": [], + "size": 13552150, + "version": "0.18.0" + }, + "pandas-0.8.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "9eb3218ab9598dfb746f08196b836f67", + "name": "pandas", + "requires": [], + "size": 4314323, + "version": "0.8.1" + }, + "pandas-0.8.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "74159c68ffab13094ef0308378184532", + "name": "pandas", + "requires": [], + "size": 4316694, + "version": "0.8.1" + }, + "pandas-0.8.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "121f1ff08717cb586ff630cf6af20de1", + "name": "pandas", + "requires": [], + "size": 4311490, + "version": "0.8.1" + }, + "pandas-0.8.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "4d08f4a6d2d5eec6648e9fbd4f939c30", + "name": "pandas", + "requires": [], + "size": 4316202, + "version": "0.8.1" + }, + "pandas-0.9.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "e12117125e79f4de8c373f463f362b46", + "name": "pandas", + "requires": [], + "size": 4795098, + "version": "0.9.0" + }, + "pandas-0.9.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "445a3ec56b91dd8f2aeffd85132e4876", + "name": "pandas", + "requires": [], + "size": 4797731, + "version": "0.9.0" + }, + "pandas-0.9.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "f8026e875631955df4e2b7c1a00d4cf3", + "name": "pandas", + "requires": [], + "size": 4795536, + "version": "0.9.0" + }, + "pandas-0.9.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "3fdce545700377a0911fb0be77df0643", + "name": "pandas", + "requires": [], + "size": 4795624, + "version": "0.9.0" + }, + "pandas-0.9.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "06f1ff4effe4d7be6be176d1d8452a1c", + "name": "pandas", + "requires": [], + "size": 4837717, + "version": "0.9.1" + }, + "pandas-0.9.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "c96a19f69e3dfa6667a9df1a771e20e0", + "name": "pandas", + "requires": [], + "size": 4840548, + "version": "0.9.1" + }, + "pandas-0.9.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "d56f512178a525667c22ddf9cddd0ef7", + "name": "pandas", + "requires": [], + "size": 4837672, + "version": "0.9.1" + }, + "pandas-0.9.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "469a08165d2cfc8123cce89c3257f901", + "name": "pandas", + "requires": [], + "size": 4839643, + "version": "0.9.1" + }, + "pandas-datareader-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "pandas", + "python 2.7*" + ], + "license": "BSD", + "md5": "c583ba4700ab6eca5b2e2f4105ad6d3f", + "name": "pandas-datareader", + "requires": [], + "size": 39941, + "version": "0.2.0" + }, + "pandas-datareader-0.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "pandas", + "python 3.4*" + ], + "license": "BSD", + "md5": "9714d56baef34ae0dd964490ce71708f", + "name": "pandas-datareader", + "requires": [], + "size": 40677, + "version": "0.2.0" + }, + "pandas-datareader-0.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-02", + "depends": [ + "pandas", + "python 3.5*" + ], + "license": "BSD", + "md5": "dd1b8b90ef281065642989fa70ad3b29", + "name": "pandas-datareader", + "requires": [], + "size": 40527, + "version": "0.2.0" + }, + "pandasql-0.3.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "pandas", + "python 2.6*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "5579c89c39034dcdb4a5c9b705124a26", + "name": "pandasql", + "requires": [], + "size": 20507, + "version": "0.3.1" + }, + "pandasql-0.3.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "pandas", + "python 2.7*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "4c7d6de1def1c336bd65e2420138202f", + "name": "pandasql", + "requires": [], + "size": 20480, + "version": "0.3.1" + }, + "pandasql-0.3.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "python 2.6*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "c8c09d649c1d0f0c2a8fe3e1313ed8d0", + "name": "pandasql", + "requires": [], + "size": 20474, + "version": "0.3.1" + }, + "pandasql-0.3.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "python 2.7*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "464d63ac104c91c641d64bc352509a97", + "name": "pandasql", + "requires": [], + "size": 20461, + "version": "0.3.1" + }, + "pandasql-0.3.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "python 2.6*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "139d700b29fdfb6a35ccfba84963bed2", + "name": "pandasql", + "requires": [], + "size": 20801, + "version": "0.3.1" + }, + "pandasql-0.3.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "python 2.7*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "9da641f642f4da230ea21a6eb0004444", + "name": "pandasql", + "requires": [], + "size": 20774, + "version": "0.3.1" + }, + "pandasql-0.4.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "python 2.6*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "d57124566077b6612280eba940aeae18", + "name": "pandasql", + "requires": [], + "size": 21605, + "version": "0.4.2" + }, + "pandasql-0.4.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "python 2.7*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "2794eb0402f8b3e8e1a24fac0bc0deb4", + "name": "pandasql", + "requires": [], + "size": 21517, + "version": "0.4.2" + }, + "pandasql-0.4.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "python 3.3*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "55d7d3712f9b3cd573250b0d17ae3eb5", + "name": "pandasql", + "requires": [], + "size": 52053, + "version": "0.4.2" + }, + "pandasql-0.4.2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "python 3.4*", + "sqlparse 0.1.7" + ], + "license": "BSD", + "md5": "1ae0c7a13758dfc31a6013e5f43f002d", + "name": "pandasql", + "requires": [], + "size": 21796, + "version": "0.4.2" + }, + "pandasql-0.6.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "numpy 1.8*", + "pandas", + "python 2.6*", + "sqlparse 0.1.11" + ], + "license": "BSD", + "md5": "9426e950ce3a2f794e29a3d755990f70", + "name": "pandasql", + "requires": [], + "size": 22615, + "version": "0.6.1" + }, + "pandasql-0.6.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "numpy 1.8*", + "pandas", + "python 2.7*", + "sqlparse 0.1.11" + ], + "license": "BSD", + "md5": "35e199deb74942ce14ae8250a856756b", + "name": "pandasql", + "requires": [], + "size": 22482, + "version": "0.6.1" + }, + "pandasql-0.6.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.6*", + "sqlparse 0.1.11" + ], + "license": "BSD", + "md5": "820c9f462649dc02886fffebdcf0554b", + "name": "pandasql", + "requires": [], + "size": 22610, + "version": "0.6.1" + }, + "pandasql-0.6.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*", + "sqlparse 0.1.11" + ], + "license": "BSD", + "md5": "670221cd67499aba5dcd51523524d6c9", + "name": "pandasql", + "requires": [], + "size": 22485, + "version": "0.6.1" + }, + "pandasql-0.6.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.6*", + "sqlparse 0.1.14" + ], + "license": "BSD", + "md5": "a6df76f77782d832dd262612ac06f42d", + "name": "pandasql", + "requires": [], + "size": 22513, + "version": "0.6.2" + }, + "pandasql-0.6.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*", + "sqlparse 0.1.14" + ], + "license": "BSD", + "md5": "ebdecabaa4484e259f4accd173e5e078", + "name": "pandasql", + "requires": [], + "size": 22408, + "version": "0.6.2" + }, + "pandasql-0.6.3-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "pandas", + "python 2.7*", + "sqlparse 0.1.16" + ], + "license": "BSD", + "md5": "23004b1195e9df3f1e7e0639dbe2485d", + "name": "pandasql", + "requires": [], + "size": 22436, + "version": "0.6.3" + }, + "pandasql-0.6.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-13", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.6*", + "sqlparse 0.1.15" + ], + "license": "BSD", + "md5": "1d304416355c6beb72efe125e8f58eaa", + "name": "pandasql", + "requires": [], + "size": 22529, + "version": "0.6.3" + }, + "pandasql-0.6.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-13", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*", + "sqlparse 0.1.15" + ], + "license": "BSD", + "md5": "9e910b6add196047cd32df983f98a81b", + "name": "pandasql", + "requires": [], + "size": 22382, + "version": "0.6.3" + }, + "pango-1.39.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "cairo 1.12.*", + "fontconfig 2.11.*", + "freetype 2.5.*", + "glib", + "harfbuzz" + ], + "license": "LGPL", + "md5": "1614c596b4f5f22822300c53b5463056", + "name": "pango", + "requires": [], + "size": 796153, + "version": "1.39.0" + }, + "param-1.3.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a74e7bab61d085f80cc810a0cdd17f91", + "name": "param", + "requires": [], + "size": 73310, + "version": "1.3.2" + }, + "param-1.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "24fd447e24c98f22f9a5ae1958ef33a3", + "name": "param", + "requires": [], + "size": 73289, + "version": "1.3.2" + }, + "param-1.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f072f3b5b43785495af3fa6a7a49bfe5", + "name": "param", + "requires": [], + "size": 75847, + "version": "1.3.2" + }, + "param-1.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "2e754e6bc5f6217d4d9bef875965791a", + "name": "param", + "requires": [], + "size": 75562, + "version": "1.3.2" + }, + "param-1.3.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "0ae363a34e346e52c2c8c96b3de15436", + "name": "param", + "requires": [], + "size": 75500, + "version": "1.3.2" + }, + "paramiko-1.12.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.10", + "pycrypto 2.6.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "c2ee070adc42fc269fcd025f5077f57a", + "name": "paramiko", + "requires": [], + "size": 174857, + "version": "1.12.1" + }, + "paramiko-1.12.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.10", + "pycrypto 2.6.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "22dd718436f31c29a43603e23d63fd25", + "name": "paramiko", + "requires": [], + "size": 174704, + "version": "1.12.1" + }, + "paramiko-1.12.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.10", + "pycrypto 2.6.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "f1f86871538ae0c13966ebf7e7c4c5d8", + "name": "paramiko", + "requires": [], + "size": 176058, + "version": "1.12.2" + }, + "paramiko-1.12.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.10", + "pycrypto 2.6.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "44e65fb6586c3007318d9a3954a649b6", + "name": "paramiko", + "requires": [], + "size": 175900, + "version": "1.12.2" + }, + "paramiko-1.13.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "e00f4a5d49c3f35871f590572e851afa", + "name": "paramiko", + "requires": [], + "size": 179657, + "version": "1.13.0" + }, + "paramiko-1.13.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "385066bc70b1bad82f02336d086ae504", + "name": "paramiko", + "requires": [], + "size": 179521, + "version": "1.13.0" + }, + "paramiko-1.14.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "077efa43be69217a1125d5f923a22b89", + "name": "paramiko", + "requires": [], + "size": 179165, + "version": "1.14.0" + }, + "paramiko-1.14.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "0856ea1935fab603d1235236d0227a4c", + "name": "paramiko", + "requires": [], + "size": 178937, + "version": "1.14.0" + }, + "paramiko-1.14.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 3.3*" + ], + "license": "LGPL", + "md5": "60903ebbda3f7d337de495c7fbbaf350", + "name": "paramiko", + "requires": [], + "size": 193257, + "version": "1.14.0" + }, + "paramiko-1.14.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 3.4*" + ], + "license": "LGPL", + "md5": "af324a1638d89209970115a66874ad5d", + "name": "paramiko", + "requires": [], + "size": 178958, + "version": "1.14.0" + }, + "paramiko-1.14.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-15", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "84d934898d2f37e68f69b26967d35889", + "name": "paramiko", + "requires": [], + "size": 179250, + "version": "1.14.1" + }, + "paramiko-1.14.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-15", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "c101d7989c22aa0a1de1f30350fc718a", + "name": "paramiko", + "requires": [], + "size": 179204, + "version": "1.14.1" + }, + "paramiko-1.14.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-15", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 3.3*" + ], + "license": "LGPL", + "md5": "726912de4fb1c85c8bc9959617296c00", + "name": "paramiko", + "requires": [], + "size": 193448, + "version": "1.14.1" + }, + "paramiko-1.14.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-15", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 3.4*" + ], + "license": "LGPL", + "md5": "3872605527ba4573f85f4c63867aebf1", + "name": "paramiko", + "requires": [], + "size": 179238, + "version": "1.14.1" + }, + "paramiko-1.15.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-30", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "67d213e2013959641af42c705599c885", + "name": "paramiko", + "requires": [], + "size": 201625, + "version": "1.15.1" + }, + "paramiko-1.15.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-30", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "6182eb05a98a7520f6c5d16f056fc4c0", + "name": "paramiko", + "requires": [], + "size": 201966, + "version": "1.15.1" + }, + "paramiko-1.15.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-30", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 3.3*" + ], + "license": "LGPL", + "md5": "3c11835389f076bf0d08e7b5bdbbcb34", + "name": "paramiko", + "requires": [], + "size": 222286, + "version": "1.15.1" + }, + "paramiko-1.15.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-30", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 3.4*" + ], + "license": "LGPL", + "md5": "6cbf867148b9932c3f0434107b8171bc", + "name": "paramiko", + "requires": [], + "size": 212576, + "version": "1.15.1" + }, + "paramiko-1.15.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.6*" + ], + "license": "LGPL", + "md5": "237e9c43592da5e2eaf9f4490be05c90", + "name": "paramiko", + "requires": [], + "size": 201568, + "version": "1.15.2" + }, + "paramiko-1.15.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "2726585dbce1f317c27b3443bfe35441", + "name": "paramiko", + "requires": [], + "size": 201790, + "version": "1.15.2" + }, + "paramiko-1.15.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 3.3*" + ], + "license": "LGPL", + "md5": "e7720af1f4fde09202ca773e929fe896", + "name": "paramiko", + "requires": [], + "size": 222234, + "version": "1.15.2" + }, + "paramiko-1.15.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "ecdsa 0.11", + "pycrypto 2.6.1", + "python 3.4*" + ], + "license": "LGPL", + "md5": "fb814a44f5668e92df4d868538eb94e8", + "name": "paramiko", + "requires": [], + "size": 212481, + "version": "1.15.2" + }, + "paramiko-1.15.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ecdsa 0.13", + "pycrypto 2.6.1", + "python 3.5*" + ], + "license": "LGPL", + "md5": "24aa64239d6f933461a28d1ce43dd422", + "name": "paramiko", + "requires": [], + "size": 211130, + "version": "1.15.2" + }, + "paramiko-1.15.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "ecdsa", + "pycrypto", + "python 2.7*" + ], + "license": "LGPL", + "md5": "c868edf84ca187293267735260962ed5", + "name": "paramiko", + "requires": [], + "size": 202766, + "version": "1.15.3" + }, + "paramiko-1.15.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "ecdsa", + "pycrypto", + "python 3.4*" + ], + "license": "LGPL", + "md5": "8df5ee5804d021c0a6003e6f212dd371", + "name": "paramiko", + "requires": [], + "size": 213797, + "version": "1.15.3" + }, + "paramiko-1.15.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "ecdsa", + "pycrypto", + "python 3.5*" + ], + "license": "LGPL", + "md5": "d7c4c59b0ff51b14f2c70dc45260c1c6", + "name": "paramiko", + "requires": [], + "size": 212622, + "version": "1.15.3" + }, + "partd-0.3.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "locket 0.2.0", + "pandas", + "python 2.6*", + "toolz" + ], + "license": "BSD", + "md5": "d85543174b07764ff7377958bb407e38", + "name": "partd", + "requires": [], + "size": 24869, + "version": "0.3.2" + }, + "partd-0.3.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "locket 0.2.0", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "f640f316a0981ca26abb2a19f8f4eee5", + "name": "partd", + "requires": [], + "size": 24546, + "version": "0.3.2" + }, + "partd-0.3.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "locket 0.2.0", + "pandas", + "python 3.3*", + "toolz" + ], + "license": "BSD", + "md5": "642bd26802974201acc06dd924b4d6de", + "name": "partd", + "requires": [], + "size": 25319, + "version": "0.3.2" + }, + "partd-0.3.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-30", + "depends": [ + "locket 0.2.0", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "1f809293ffc9207509afad61e8e04324", + "name": "partd", + "requires": [], + "size": 25599, + "version": "0.3.2" + }, + "partd-0.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-27", + "depends": [ + "locket 0.2.0", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "0849b18cd8908e7e892ddf6d08a3f9cb", + "name": "partd", + "requires": [], + "size": 24585, + "version": "0.3.2" + }, + "partd-0.3.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-09-04", + "depends": [ + "locket", + "pandas", + "python 2.7*", + "toolz" + ], + "license": "BSD", + "md5": "102020be5bd55572ef90a3a38fd9820d", + "name": "partd", + "requires": [], + "size": 23947, + "version": "0.3.2" + }, + "partd-0.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-27", + "depends": [ + "locket 0.2.0", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "c71bd8e5e11bd4694b3e9c318852fa86", + "name": "partd", + "requires": [], + "size": 25612, + "version": "0.3.2" + }, + "partd-0.3.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-09-04", + "depends": [ + "locket", + "pandas", + "python 3.4*", + "toolz" + ], + "license": "BSD", + "md5": "692ac6e3a3a826cd0d57563c06c7856c", + "name": "partd", + "requires": [], + "size": 25041, + "version": "0.3.2" + }, + "partd-0.3.2-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "locket", + "pandas", + "python 3.5*", + "toolz" + ], + "license": "BSD", + "md5": "aa4337446db8ce7b0ccea6b7dcbd47ed", + "name": "partd", + "requires": [], + "size": 24986, + "version": "0.3.2" + }, + "passlib-1.6.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "266f6a496883dc59cfe28f8d46832fab", + "name": "passlib", + "requires": [], + "size": 420158, + "version": "1.6.2" + }, + "passlib-1.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "c062181af5f5cdc1b2c2a8629cd16ce5", + "name": "passlib", + "requires": [], + "size": 420341, + "version": "1.6.2" + }, + "passlib-1.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f752c56e387cb1522b70d2a9109f8ecb", + "name": "passlib", + "requires": [], + "size": 428460, + "version": "1.6.2" + }, + "passlib-1.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "d2412bc50f880ed7113130321ec0f2dd", + "name": "passlib", + "requires": [], + "size": 439534, + "version": "1.6.2" + }, + "passlib-1.6.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "1b4e4e147ba453ffabaab35a29e237f2", + "name": "passlib", + "requires": [], + "size": 425564, + "version": "1.6.4" + }, + "passlib-1.6.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "45ea2c31c28130ae249f2e101d4c4acf", + "name": "passlib", + "requires": [], + "size": 426351, + "version": "1.6.4" + }, + "passlib-1.6.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "bcba3f535b1c0eb0b463ed916a347c9d", + "name": "passlib", + "requires": [], + "size": 434856, + "version": "1.6.4" + }, + "passlib-1.6.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7ed5e4ed600358ce6e9337d99721a2b6", + "name": "passlib", + "requires": [], + "size": 442842, + "version": "1.6.4" + }, + "passlib-1.6.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "70ce7dbe47032eccd806245f814acd38", + "name": "passlib", + "requires": [], + "size": 426537, + "version": "1.6.5" + }, + "passlib-1.6.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "6e155d79c103980ff3df79c4761fc897", + "name": "passlib", + "requires": [], + "size": 443157, + "version": "1.6.5" + }, + "passlib-1.6.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "eba9c83ff0e2691469b27f381d716987", + "name": "passlib", + "requires": [], + "size": 442464, + "version": "1.6.5" + }, + "paste-1.7.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "f5d39604365975c761212c2c2694c0e5", + "name": "paste", + "requires": [], + "size": 501558, + "version": "1.7.5.1" + }, + "paste-1.7.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "dc8bba617bc6c13ab40db8862d3e197d", + "name": "paste", + "requires": [], + "size": 502262, + "version": "1.7.5.1" + }, + "pastedeploy-1.5.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "4b2e437033f35b104597341efaffa8bd", + "name": "pastedeploy", + "requires": [], + "size": 23662, + "version": "1.5.2" + }, + "pastedeploy-1.5.2-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "c9db07bac72eae8037fb4bb8d5670a4d", + "name": "pastedeploy", + "requires": [], + "size": 23607, + "version": "1.5.2" + }, + "pastedeploy-1.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "993611108732fa5574e39c84e7ad1b27", + "name": "pastedeploy", + "requires": [], + "size": 23571, + "version": "1.5.2" + }, + "pastedeploy-1.5.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "0a93250391dca3c44cbf816b784d6bbc", + "name": "pastedeploy", + "requires": [], + "size": 23519, + "version": "1.5.2" + }, + "pastedeploy-1.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "4335b3c88dc95dc464614a7c96ab376b", + "name": "pastedeploy", + "requires": [], + "size": 24374, + "version": "1.5.2" + }, + "pastedeploy-1.5.2-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "c313451ce96f5439d5358d22a13c6f9a", + "name": "pastedeploy", + "requires": [], + "size": 24329, + "version": "1.5.2" + }, + "pastedeploy-1.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "3b02baf6eafa22db05704db4f7538581", + "name": "pastedeploy", + "requires": [], + "size": 24289, + "version": "1.5.2" + }, + "pastedeploy-1.5.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "75d7ed352aa4b8bcaf975d00451356fb", + "name": "pastedeploy", + "requires": [], + "size": 24273, + "version": "1.5.2" + }, + "pastedeploy-1.5.2-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "MIT", + "md5": "421be000866451269085ecd98bf9a951", + "name": "pastedeploy", + "requires": [], + "size": 24251, + "version": "1.5.2" + }, + "patchelf-0.6-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "GPL3", + "md5": "fecf05b1427de36d6a716e7e85fc8178", + "name": "patchelf", + "requires": [], + "size": 182916, + "version": "0.6" + }, + "patchelf-0.8-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-12-21", + "depends": [], + "license": "GPL3", + "md5": "66d5849a6e2cfb103162540589e87c64", + "name": "patchelf", + "requires": [], + "size": 264427, + "version": "0.8" + }, + "path.py-7.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "cec6c88b682ca3d94053a99d6c1fcd84", + "name": "path.py", + "requires": [], + "size": 42483, + "version": "7.6" + }, + "path.py-7.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "e5ebd38333e21ba73893d22be5c78f08", + "name": "path.py", + "requires": [], + "size": 21942, + "version": "7.6" + }, + "path.py-7.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-20", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ed4ff4a677d240435eb637fb45c7d566", + "name": "path.py", + "requires": [], + "size": 45777, + "version": "7.6.1" + }, + "path.py-7.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-20", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "0dd871a48f47be98017ff0cf5a4e34d0", + "name": "path.py", + "requires": [], + "size": 47531, + "version": "7.6.1" + }, + "path.py-7.6.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "b8f6ecb6a1c31b6b6b70aac10d29fa76", + "name": "path.py", + "requires": [], + "size": 47467, + "version": "7.6.1" + }, + "path.py-8.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "43cb08f004a067402a67beb683988592", + "name": "path.py", + "requires": [], + "size": 45558, + "version": "8.1.1" + }, + "path.py-8.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "5a08d36e081f7dc1173f2e4085493740", + "name": "path.py", + "requires": [], + "size": 47322, + "version": "8.1.1" + }, + "path.py-8.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "c243589be6dc7acf12891559d0a15406", + "name": "path.py", + "requires": [], + "size": 47259, + "version": "8.1.1" + }, + "path.py-8.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "193b1b2f8eed64341a658388be8af580", + "name": "path.py", + "requires": [], + "size": 45596, + "version": "8.1.2" + }, + "path.py-8.1.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-11-24", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9ca6a7df5f9c30f210e931ac9ea6dd20", + "name": "path.py", + "requires": [], + "size": 45596, + "version": "8.1.2" + }, + "path.py-8.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "72069f58a65e6772df28002720f6c973", + "name": "path.py", + "requires": [], + "size": 47283, + "version": "8.1.2" + }, + "path.py-8.1.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-11-24", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "27aa8f839de78aa0e888ef7dc1c0c759", + "name": "path.py", + "requires": [], + "size": 47155, + "version": "8.1.2" + }, + "path.py-8.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "87a75fe9a1dbf527093ba0bbb14c60cd", + "name": "path.py", + "requires": [], + "size": 47167, + "version": "8.1.2" + }, + "path.py-8.1.2-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-11-24", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "6d3f1c991b8f51cb51c23a1ea6559d62", + "name": "path.py", + "requires": [], + "size": 47092, + "version": "8.1.2" + }, + "patsy-0.2.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "51c3f3277c08b697dd004868c51ad6df", + "name": "patsy", + "requires": [], + "size": 223726, + "version": "0.2.0" + }, + "patsy-0.2.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "8d587132e51f4cfa958a367a4ace4d06", + "name": "patsy", + "requires": [], + "size": 224971, + "version": "0.2.0" + }, + "patsy-0.2.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "ec8847e905e6e6355fde988c135b81d1", + "name": "patsy", + "requires": [], + "size": 223766, + "version": "0.2.0" + }, + "patsy-0.2.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "af923219747cda6a886561dd1da11fff", + "name": "patsy", + "requires": [], + "size": 225001, + "version": "0.2.0" + }, + "patsy-0.2.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "8e9017787d29ec5c8383c9654766aac0", + "name": "patsy", + "requires": [], + "size": 246093, + "version": "0.2.0" + }, + "patsy-0.2.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "797ab36b5cd4d35825dac8e68e4f6d26", + "name": "patsy", + "requires": [], + "size": 224249, + "version": "0.2.1" + }, + "patsy-0.2.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "63d3c6efadf051ecc3b2fd4251fce197", + "name": "patsy", + "requires": [], + "size": 225592, + "version": "0.2.1" + }, + "patsy-0.2.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "4b0d7e2d6dbff0e844d4d125c671bf78", + "name": "patsy", + "requires": [], + "size": 224290, + "version": "0.2.1" + }, + "patsy-0.2.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0e24e212cfe4b8235859499eec192006", + "name": "patsy", + "requires": [], + "size": 225599, + "version": "0.2.1" + }, + "patsy-0.2.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "d75b62b0ba590f33895cbbef612b5343", + "name": "patsy", + "requires": [], + "size": 246580, + "version": "0.2.1" + }, + "patsy-0.2.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "dc922c6f98242f108a6bc2cf6dc55c9b", + "name": "patsy", + "requires": [], + "size": 224709, + "version": "0.2.1" + }, + "patsy-0.2.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "964c39043807b61422ebda3d9067bf03", + "name": "patsy", + "requires": [], + "size": 225975, + "version": "0.2.1" + }, + "patsy-0.2.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "4e89c06573d0a227d2351d9fab29be28", + "name": "patsy", + "requires": [], + "size": 280641, + "version": "0.2.1" + }, + "patsy-0.2.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "15d84eb44643d3ee81c2ee5a303a7003", + "name": "patsy", + "requires": [], + "size": 227380, + "version": "0.2.1" + }, + "patsy-0.2.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "227503e07a0d8cc5e05054582ca3de65", + "name": "patsy", + "requires": [], + "size": 224963, + "version": "0.2.1" + }, + "patsy-0.2.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "60649f765d383dab4b5e23ebfafcfee7", + "name": "patsy", + "requires": [], + "size": 226078, + "version": "0.2.1" + }, + "patsy-0.2.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "ee171760e255bf03b1c3ec20a30b0876", + "name": "patsy", + "requires": [], + "size": 247487, + "version": "0.2.1" + }, + "patsy-0.2.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "f7b658b7b16d6c6dde7c2aae87683310", + "name": "patsy", + "requires": [], + "size": 228699, + "version": "0.2.1" + }, + "patsy-0.3.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "26b1ec7a8074b9d9ed4641a9c1c1503b", + "name": "patsy", + "requires": [], + "size": 317742, + "version": "0.3.0" + }, + "patsy-0.3.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "7d9d2a9cbbf7e4e519c095173f3dbc5b", + "name": "patsy", + "requires": [], + "size": 319458, + "version": "0.3.0" + }, + "patsy-0.3.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "81f279b5e5150d970218c3311769ce4a", + "name": "patsy", + "requires": [], + "size": 367781, + "version": "0.3.0" + }, + "patsy-0.3.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "49b9d52e3235b1f39e81ef4dd0a88b9b", + "name": "patsy", + "requires": [], + "size": 363430, + "version": "0.3.0" + }, + "patsy-0.4.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "0ea68f0400c2ebb66ff66badcfee1e44", + "name": "patsy", + "requires": [], + "size": 333316, + "version": "0.4.0" + }, + "patsy-0.4.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "54482380c2b1ad5cb0fd27fd4b4e823b", + "name": "patsy", + "requires": [], + "size": 376518, + "version": "0.4.0" + }, + "patsy-0.4.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "85a5091f47de7aa7340e477d9c540657", + "name": "patsy", + "requires": [], + "size": 375808, + "version": "0.4.0" + }, + "patsy-0.4.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "6028b9827028e2b36b327aea67229ca4", + "name": "patsy", + "requires": [], + "size": 330519, + "version": "0.4.0" + }, + "patsy-0.4.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "37ad0b2a5d2bfe46400df6bf517ea266", + "name": "patsy", + "requires": [], + "size": 333213, + "version": "0.4.0" + }, + "patsy-0.4.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "564ee73422277d4149a2aa92b32c1ead", + "name": "patsy", + "requires": [], + "size": 380790, + "version": "0.4.0" + }, + "patsy-0.4.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "1fe70d5948a0ce8c10d38b14e88be472", + "name": "patsy", + "requires": [], + "size": 376441, + "version": "0.4.0" + }, + "patsy-0.4.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "127d283129eb81dd906f562e8ecd892e", + "name": "patsy", + "requires": [], + "size": 375815, + "version": "0.4.0" + }, + "patsy-0.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "numpy", + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "b78c3447b7cfab154b81571d2b011879", + "name": "patsy", + "requires": [], + "size": 333301, + "version": "0.4.1" + }, + "patsy-0.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "numpy", + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "a4c5e896228826bfb6c064d7755820d1", + "name": "patsy", + "requires": [], + "size": 380443, + "version": "0.4.1" + }, + "patsy-0.4.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "numpy", + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "fa6337cfd033ca7a91721a813df9d083", + "name": "patsy", + "requires": [], + "size": 379092, + "version": "0.4.1" + }, + "pbkdf2-1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-06", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d30a43719ce1eb36adabee0cda6fc961", + "name": "pbkdf2", + "requires": [], + "size": 7628, + "version": "1.3" + }, + "pbkdf2-1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-06", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6b9fafe7cf4b672a9d168ec4b72b8bab", + "name": "pbkdf2", + "requires": [], + "size": 7781, + "version": "1.3" + }, + "pbkdf2-1.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "2dfb18939989c61cefcab9b11fd25678", + "name": "pbkdf2", + "requires": [], + "size": 7781, + "version": "1.3" + }, + "pbr-0.11.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "argparse", + "pip", + "python 2.6*" + ], + "license": "Apache", + "md5": "2440783257f599b2f673759334d030eb", + "name": "pbr", + "requires": [], + "size": 78884, + "version": "0.11.0" + }, + "pbr-0.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "pip", + "python 2.7*" + ], + "license": "Apache", + "md5": "9c31c293c443503ff3ebaed9cc993e7a", + "name": "pbr", + "requires": [], + "size": 78413, + "version": "0.11.0" + }, + "pbr-0.11.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "pip", + "python 3.3*" + ], + "license": "Apache", + "md5": "346a5a6ad4fce6267da4d130098bd159", + "name": "pbr", + "requires": [], + "size": 80678, + "version": "0.11.0" + }, + "pbr-0.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "pip", + "python 3.4*" + ], + "license": "Apache", + "md5": "eda3939ff31ef6d55a7e5aa8b2906372", + "name": "pbr", + "requires": [], + "size": 80826, + "version": "0.11.0" + }, + "pbr-1.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "argparse", + "pip", + "python 2.6*" + ], + "license": "Apache", + "md5": "48bce81338d649547a0b0e1ef710c854", + "name": "pbr", + "requires": [], + "size": 83965, + "version": "1.3.0" + }, + "pbr-1.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "pip", + "python 2.7*" + ], + "license": "Apache", + "md5": "9d0fe5a4b53eaac90901d32f250b42a6", + "name": "pbr", + "requires": [], + "size": 83404, + "version": "1.3.0" + }, + "pbr-1.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "pip", + "python 3.3*" + ], + "license": "Apache", + "md5": "4739061d2dce42d1098c98ae714572c3", + "name": "pbr", + "requires": [], + "size": 85719, + "version": "1.3.0" + }, + "pbr-1.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-14", + "depends": [ + "pip", + "python 3.4*" + ], + "license": "Apache", + "md5": "f29096c9358dff3fc24db5308861854e", + "name": "pbr", + "requires": [], + "size": 86234, + "version": "1.3.0" + }, + "pbr-1.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pip", + "python 3.5*" + ], + "license": "Apache", + "md5": "d9a332bc698b222fc6ae032c55acf211", + "name": "pbr", + "requires": [], + "size": 85783, + "version": "1.3.0" + }, + "pbr-1.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "pip", + "python 2.7*" + ], + "license": "Apache", + "md5": "5a2ef959e0a96ae6962d4a0206039365", + "name": "pbr", + "requires": [], + "size": 87739, + "version": "1.8.0" + }, + "pbr-1.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "pip", + "python 3.4*" + ], + "license": "Apache", + "md5": "a31efbb1b11458b559aa169022b16a24", + "name": "pbr", + "requires": [], + "size": 90425, + "version": "1.8.0" + }, + "pbr-1.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "pip", + "python 3.5*" + ], + "license": "Apache", + "md5": "08ddba3c37db1f928860803c3df20792", + "name": "pbr", + "requires": [], + "size": 90162, + "version": "1.8.0" + }, + "pcre-8.31-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "248f455ca2086a7acebdcc63176d5a0d", + "name": "pcre", + "requires": [], + "size": 547282, + "version": "8.31" + }, + "peace-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4cb222bd89ac75c45cfcb93f4fe5efb9", + "name": "peace", + "requires": [], + "size": 636, + "version": "1.0" + }, + "peace-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "925863410d9d526c6979c9ed091bc5d7", + "name": "peace", + "requires": [], + "size": 627, + "version": "1.0" + }, + "peace-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "b76f121ca41f3a5b51b05305df80fe53", + "name": "peace", + "requires": [], + "size": 632, + "version": "1.0" + }, + "pep381client-1.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "c73f5152226ec21ecfe5862c7d77ad62", + "name": "pep381client", + "requires": [], + "size": 16457, + "version": "1.5" + }, + "pep381client-1.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "5b18537136a70d670c3cedfa61b06827", + "name": "pep381client", + "requires": [], + "size": 16384, + "version": "1.5" + }, + "pep8-1.4.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "928a27a060ef11800c7471e719c8385e", + "name": "pep8", + "requires": [], + "size": 40127, + "version": "1.4.5" + }, + "pep8-1.4.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9a74cbcc9d2346f1853b42066090f9d3", + "name": "pep8", + "requires": [], + "size": 40139, + "version": "1.4.5" + }, + "pep8-1.4.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "fc42542e3c966828f0888b156aafb7ca", + "name": "pep8", + "requires": [], + "size": 40964, + "version": "1.4.6" + }, + "pep8-1.4.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "90be8eb1f13bf49ae7a9af6756d676e0", + "name": "pep8", + "requires": [], + "size": 40943, + "version": "1.4.6" + }, + "pep8-1.4.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "d1cc75025c06d7d60b5273396609add8", + "name": "pep8", + "requires": [], + "size": 53953, + "version": "1.4.6" + }, + "pep8-1.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "fa116948212d0e6a73d2ac1ad587f8ee", + "name": "pep8", + "requires": [], + "size": 43911, + "version": "1.5.1" + }, + "pep8-1.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "7d734599ebf2601041b69d5a2b2bef78", + "name": "pep8", + "requires": [], + "size": 44025, + "version": "1.5.1" + }, + "pep8-1.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "b992438358d0b1f0ee087fe284e81d49", + "name": "pep8", + "requires": [], + "size": 55678, + "version": "1.5.1" + }, + "pep8-1.5.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "7f7eb3f3b001d9ca1fdbbbbb2933fa62", + "name": "pep8", + "requires": [], + "size": 44032, + "version": "1.5.6" + }, + "pep8-1.5.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "468a213360ec464a0ef8a18a2e981890", + "name": "pep8", + "requires": [], + "size": 44018, + "version": "1.5.6" + }, + "pep8-1.5.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "df5e43a64b3060d0b4b622e645c97362", + "name": "pep8", + "requires": [], + "size": 55707, + "version": "1.5.6" + }, + "pep8-1.5.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "e81dfa1c18707d809d99c524b5b62827", + "name": "pep8", + "requires": [], + "size": 25086, + "version": "1.5.6" + }, + "pep8-1.5.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "de299cb048f9aac6fc0f66c7c0d5ca92", + "name": "pep8", + "requires": [], + "size": 44182, + "version": "1.5.7" + }, + "pep8-1.5.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "7368e68698b93a36b0e4d7c7f06dd9a9", + "name": "pep8", + "requires": [], + "size": 44221, + "version": "1.5.7" + }, + "pep8-1.5.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "0778fb908f1240b2bf8ff752d4c05be2", + "name": "pep8", + "requires": [], + "size": 25238, + "version": "1.5.7" + }, + "pep8-1.5.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "ad69e17db3e320fdcda5e2a1f1d8b0f0", + "name": "pep8", + "requires": [], + "size": 25239, + "version": "1.5.7" + }, + "pep8-1.6.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "da6bab3689bdeda22274df589e787439", + "name": "pep8", + "requires": [], + "size": 46916, + "version": "1.6.1" + }, + "pep8-1.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "f466c90f4554ac702a5b11210bbd01a4", + "name": "pep8", + "requires": [], + "size": 46959, + "version": "1.6.1" + }, + "pep8-1.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "ac62d1f618a94667f92bbcbf718868a9", + "name": "pep8", + "requires": [], + "size": 26917, + "version": "1.6.1" + }, + "pep8-1.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "1f7e1624312e4a274a46394948397fbf", + "name": "pep8", + "requires": [], + "size": 26931, + "version": "1.6.1" + }, + "pep8-1.6.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e4b8b9377f652075dbd90cdaa81ea4c5", + "name": "pep8", + "requires": [], + "size": 47665, + "version": "1.6.2" + }, + "pep8-1.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "999e2510d08926175a861bfa18891299", + "name": "pep8", + "requires": [], + "size": 47678, + "version": "1.6.2" + }, + "pep8-1.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "c48a39cb72e1c3df84eed98d6b4df51f", + "name": "pep8", + "requires": [], + "size": 27340, + "version": "1.6.2" + }, + "pep8-1.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "7f1f2757f06d8b5b27bec20145a6a9fd", + "name": "pep8", + "requires": [], + "size": 27335, + "version": "1.6.2" + }, + "pep8-1.6.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "5fedc48d50503acf8fd38592957f688e", + "name": "pep8", + "requires": [], + "size": 27617, + "version": "1.6.2" + }, + "pep8-1.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "f05d5198f0cc6830b624a732094ed965", + "name": "pep8", + "requires": [], + "size": 48353, + "version": "1.7.0" + }, + "pep8-1.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "24a4bb172f2996c6d8c136cc5616ac63", + "name": "pep8", + "requires": [], + "size": 27780, + "version": "1.7.0" + }, + "pep8-1.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "205855807bcd706fb0274a7ab365a1da", + "name": "pep8", + "requires": [], + "size": 27771, + "version": "1.7.0" + }, + "persistent-4.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "python 2.6*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "b897ed71ee56c60644ac0dcb9751351c", + "name": "persistent", + "requires": [], + "size": 190109, + "version": "4.1.0" + }, + "persistent-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "python 2.7*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "256a56582339d6b943824b0fa6d8713a", + "name": "persistent", + "requires": [], + "size": 189972, + "version": "4.1.0" + }, + "persistent-4.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "python 3.3*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "049b27d995b589e63f55be1e188025cb", + "name": "persistent", + "requires": [], + "size": 198000, + "version": "4.1.0" + }, + "persistent-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "python 3.4*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "2300a6425a56724ba8b28df2a812f4da", + "name": "persistent", + "requires": [], + "size": 197117, + "version": "4.1.0" + }, + "persistent-4.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 2.6*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "eb91713b4cc91ffae123a11f885764a7", + "name": "persistent", + "requires": [], + "size": 162999, + "version": "4.1.1" + }, + "persistent-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 2.7*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "c5d5047a5753523bf484e2be400c7b1c", + "name": "persistent", + "requires": [], + "size": 163194, + "version": "4.1.1" + }, + "persistent-4.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 3.3*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "708293351f70be6755f487245f6800bf", + "name": "persistent", + "requires": [], + "size": 171419, + "version": "4.1.1" + }, + "persistent-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-05", + "depends": [ + "python 3.4*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "15e0702c7530a74ae6c7941ed02feef5", + "name": "persistent", + "requires": [], + "size": 171556, + "version": "4.1.1" + }, + "persistent-4.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "76a11639ad67412d18096ded14e8d323", + "name": "persistent", + "requires": [], + "size": 171845, + "version": "4.1.1" + }, + "petl-1.0.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "3cd03a99be96e18b3186826727c02407", + "name": "petl", + "requires": [], + "size": 260899, + "version": "1.0.11" + }, + "petl-1.0.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "8e4be81aa36abacd9cd0e0a6592e26de", + "name": "petl", + "requires": [], + "size": 272177, + "version": "1.0.11" + }, + "petl-1.0.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "20e62b062db67e7a0e49c5aeeac6f8c7", + "name": "petl", + "requires": [], + "size": 271543, + "version": "1.0.11" + }, + "petlx-1.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "petl >=1.0", + "python 2.7*" + ], + "license": "MIT", + "md5": "a114430cee1cf05edfc09a954143bce8", + "name": "petlx", + "requires": [], + "size": 20391, + "version": "1.0.3" + }, + "petlx-1.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "petl >=1.0", + "python 3.4*" + ], + "license": "MIT", + "md5": "20282c93e882a9a67bbb0dd4f5db716a", + "name": "petlx", + "requires": [], + "size": 21446, + "version": "1.0.3" + }, + "petlx-1.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "petl >=1.0", + "python 3.5*" + ], + "license": "MIT", + "md5": "af34641a4e0fa836e6935e89654e79fb", + "name": "petlx", + "requires": [], + "size": 21385, + "version": "1.0.3" + }, + "pexpect-3.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.6*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "aa95330eba3eca5b93fd74cdc330b811", + "name": "pexpect", + "requires": [], + "size": 61503, + "version": "3.3" + }, + "pexpect-3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.7*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "f64c187ef5cf2d8e9cc5d2f6b996cdcd", + "name": "pexpect", + "requires": [], + "size": 61600, + "version": "3.3" + }, + "pexpect-3.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 3.3*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "549297a4add968ce857208f745b79e70", + "name": "pexpect", + "requires": [], + "size": 63119, + "version": "3.3" + }, + "pexpect-3.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 3.4*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "ec312acc7d8ad286985276177d9a6ca7", + "name": "pexpect", + "requires": [], + "size": 63455, + "version": "3.3" + }, + "pexpect-3.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "c29627083773f02cf49bf9f16b7cfd74", + "name": "pexpect", + "requires": [], + "size": 63039, + "version": "3.3" + }, + "pexpect-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-13", + "depends": [ + "ptyprocess >=0.5", + "python 2.7*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "a4199a8c031e00cbaf9a4a57f1b86b59", + "name": "pexpect", + "requires": [], + "size": 64721, + "version": "4.0.1" + }, + "pexpect-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-13", + "depends": [ + "ptyprocess >=0.5", + "python 3.4*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "4a7e883f5ca29a6961e67a243b82ec40", + "name": "pexpect", + "requires": [], + "size": 67838, + "version": "4.0.1" + }, + "pexpect-4.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-13", + "depends": [ + "ptyprocess >=0.5", + "python 3.5*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "d5a49268c642b0914f281c2dd916c881", + "name": "pexpect", + "requires": [], + "size": 67702, + "version": "4.0.1" + }, + "pickleshare-0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "path.py", + "python 2.7*" + ], + "license": "MIT", + "md5": "a70d529b1bb7d068c4226f4a60b45d2c", + "name": "pickleshare", + "requires": [], + "size": 7943, + "version": "0.5" + }, + "pickleshare-0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "path.py", + "python 3.4*" + ], + "license": "MIT", + "md5": "40be33a781a87f6cf591045c7c848510", + "name": "pickleshare", + "requires": [], + "size": 8230, + "version": "0.5" + }, + "pickleshare-0.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "path.py", + "python 3.5*" + ], + "license": "MIT", + "md5": "6a8b8f12833c9dd543e289e4e7a6f5e3", + "name": "pickleshare", + "requires": [], + "size": 8216, + "version": "0.5" + }, + "pigz-2.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "system 5.8", + "zlib 1.2*" + ], + "license": "zlib", + "license_family": "Other", + "md5": "e6e38fed44b7d70fa94c58782734d4de", + "name": "pigz", + "requires": [], + "size": 65150, + "version": "2.3" + }, + "pil-1.1.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license (http://www.pythonware.com/products/pil/license.htm)", + "license_family": "Other", + "md5": "9672631d76191531ccf580a036fde620", + "name": "pil", + "requires": [], + "size": 586939, + "version": "1.1.7" + }, + "pil-1.1.7-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "lcms 1.19", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license (http://www.pythonware.com/products/pil/license.htm)", + "license_family": "Other", + "md5": "070a10ad6bc2389f66b9adefa20c309c", + "name": "pil", + "requires": [], + "size": 600012, + "version": "1.1.7" + }, + "pil-1.1.7-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "lcms 1.19", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license (http://www.pythonware.com/products/pil/license.htm)", + "license_family": "Other", + "md5": "b1cc7712ef11f547ad238d81a49d3a0a", + "name": "pil", + "requires": [], + "size": 664461, + "version": "1.1.7" + }, + "pil-1.1.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license (http://www.pythonware.com/products/pil/license.htm)", + "license_family": "Other", + "md5": "d86383dc76c3b838f82dfb85ce99a633", + "name": "pil", + "requires": [], + "size": 587834, + "version": "1.1.7" + }, + "pil-1.1.7-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "lcms 1.19", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license (http://www.pythonware.com/products/pil/license.htm)", + "license_family": "Other", + "md5": "4b431d6161cbe4ff4d9907f937b3cd38", + "name": "pil", + "requires": [], + "size": 600809, + "version": "1.1.7" + }, + "pil-1.1.7-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "lcms 1.19", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license (http://www.pythonware.com/products/pil/license.htm)", + "license_family": "Other", + "md5": "5b1cd382d9448ca332e04060d25e8256", + "name": "pil", + "requires": [], + "size": 665549, + "version": "1.1.7" + }, + "pillow-2.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "05b9311a621b6f688008a9582110d674", + "name": "pillow", + "requires": [], + "size": 650160, + "version": "2.1.0" + }, + "pillow-2.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "29a3834907111e61afd3f91dc76dc3c7", + "name": "pillow", + "requires": [], + "size": 650860, + "version": "2.1.0" + }, + "pillow-2.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "46fd51a1b8f882d81d1be30049bcb03d", + "name": "pillow", + "requires": [], + "size": 654038, + "version": "2.1.0" + }, + "pillow-2.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "cc38af312eb7ddd56d80222115d7d25f", + "name": "pillow", + "requires": [], + "size": 658065, + "version": "2.3.1" + }, + "pillow-2.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "97eec8eaeb6268520dc269a11a59b058", + "name": "pillow", + "requires": [], + "size": 659101, + "version": "2.3.1" + }, + "pillow-2.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "345bff0eb66ec4dd511aedfbc5361c96", + "name": "pillow", + "requires": [], + "size": 700406, + "version": "2.3.1" + }, + "pillow-2.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "fcf956e67d34597241c153932eddfcaa", + "name": "pillow", + "requires": [], + "size": 669737, + "version": "2.3.1" + }, + "pillow-2.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "f0c65de175459879a658fb7132297ab4", + "name": "pillow", + "requires": [], + "size": 710349, + "version": "2.4.0" + }, + "pillow-2.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "466dfe3638169a7b3a0dcf632070a475", + "name": "pillow", + "requires": [], + "size": 710250, + "version": "2.4.0" + }, + "pillow-2.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "634f67cd4d3c5647da9350e1c4b2c275", + "name": "pillow", + "requires": [], + "size": 758271, + "version": "2.4.0" + }, + "pillow-2.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "7f932905cdf4e0536e0ae81fad26676f", + "name": "pillow", + "requires": [], + "size": 719023, + "version": "2.4.0" + }, + "pillow-2.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "0e996546b2ae86b8defd14d4325ae581", + "name": "pillow", + "requires": [], + "size": 723775, + "version": "2.5.1" + }, + "pillow-2.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "0b75d91cb16ebb9145e0b679139e3580", + "name": "pillow", + "requires": [], + "size": 724241, + "version": "2.5.1" + }, + "pillow-2.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "96e44dcaf705443c6b26f2257acae5c8", + "name": "pillow", + "requires": [], + "size": 737827, + "version": "2.5.1" + }, + "pillow-2.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "e1fbb5d7f4fa2d794f7bd8f1b6f7ff28", + "name": "pillow", + "requires": [], + "size": 736519, + "version": "2.5.1" + }, + "pillow-2.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "f14e8afeb7ccf16a37dcdb74c73378b0", + "name": "pillow", + "requires": [], + "size": 787684, + "version": "2.7.0" + }, + "pillow-2.7.0-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "522c3234263383b7cc97467618000821", + "name": "pillow", + "requires": [], + "size": 786967, + "version": "2.7.0" + }, + "pillow-2.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "aef7ec35619a6e16e86dbfa31371fe98", + "name": "pillow", + "requires": [], + "size": 789245, + "version": "2.7.0" + }, + "pillow-2.7.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "c163a476b60d25721f42a5d7bf79f395", + "name": "pillow", + "requires": [], + "size": 789353, + "version": "2.7.0" + }, + "pillow-2.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "64af1f84357d113044583d6cdd48ad8a", + "name": "pillow", + "requires": [], + "size": 809441, + "version": "2.7.0" + }, + "pillow-2.7.0-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "644ef6831804f297b93cb7fb04686a82", + "name": "pillow", + "requires": [], + "size": 809627, + "version": "2.7.0" + }, + "pillow-2.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "freetype 2.4*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "a826a351a0c54ac740bb8f44126a2f6f", + "name": "pillow", + "requires": [], + "size": 806417, + "version": "2.7.0" + }, + "pillow-2.7.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-03-19", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "2180642b038c4d8bbbd8c41d3510c451", + "name": "pillow", + "requires": [], + "size": 806013, + "version": "2.7.0" + }, + "pillow-2.8.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-04-03", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "73ad2e8f33766db1e765ad0dffd1f31a", + "name": "pillow", + "requires": [], + "size": 789163, + "version": "2.8.1" + }, + "pillow-2.8.1-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "7be68de644762f299481dfe786ec516b", + "name": "pillow", + "requires": [], + "size": 788736, + "version": "2.8.1" + }, + "pillow-2.8.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-04-03", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "f7c14383e3912be0c67465e2dccde6c1", + "name": "pillow", + "requires": [], + "size": 790273, + "version": "2.8.1" + }, + "pillow-2.8.1-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2015-05-26", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "6dfd49e1ba2ca7b868c42da1d1db589e", + "name": "pillow", + "requires": [], + "size": 790213, + "version": "2.8.1" + }, + "pillow-2.8.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-04-03", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "d15de23c5f19a9735e8a4afe3a34e5ba", + "name": "pillow", + "requires": [], + "size": 811556, + "version": "2.8.1" + }, + "pillow-2.8.1-py33_2.tar.bz2": { + "build": "py33_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "1a4327f7d7deaad403ceb365f891d67a", + "name": "pillow", + "requires": [], + "size": 811444, + "version": "2.8.1" + }, + "pillow-2.8.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-04-03", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "eebd8ca26686c099b8f9ccbcfd20e6ff", + "name": "pillow", + "requires": [], + "size": 809927, + "version": "2.8.1" + }, + "pillow-2.8.1-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2015-05-27", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "68615da8d2738c45cd61c3142c641951", + "name": "pillow", + "requires": [], + "size": 809578, + "version": "2.8.1" + }, + "pillow-2.8.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "e90cf2f2ba236917df10b0684f160397", + "name": "pillow", + "requires": [], + "size": 789308, + "version": "2.8.2" + }, + "pillow-2.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "c1a9e883aba236fff862b5bbb05397f0", + "name": "pillow", + "requires": [], + "size": 790987, + "version": "2.8.2" + }, + "pillow-2.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "af55af3cc46ce24ad3f0c21613a3c5ae", + "name": "pillow", + "requires": [], + "size": 811545, + "version": "2.8.2" + }, + "pillow-2.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "d40759cbb8539fbed12b116ac0b065ee", + "name": "pillow", + "requires": [], + "size": 809707, + "version": "2.8.2" + }, + "pillow-2.9.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.6*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "29c2ac13b6fb9d84786a2f3417ad175d", + "name": "pillow", + "requires": [], + "size": 799144, + "version": "2.9.0" + }, + "pillow-2.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "63f0e900b37831358556eb7dd9ced0b7", + "name": "pillow", + "requires": [], + "size": 799652, + "version": "2.9.0" + }, + "pillow-2.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "41fc24637cf7ae3bd658098ea82b19fc", + "name": "pillow", + "requires": [], + "size": 821105, + "version": "2.9.0" + }, + "pillow-2.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "ec74c16f08efaaeb09da82a0aa474f94", + "name": "pillow", + "requires": [], + "size": 823989, + "version": "2.9.0" + }, + "pillow-2.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "b88edc7abd8546e9eb90dad7a6afe770", + "name": "pillow", + "requires": [], + "size": 822326, + "version": "2.9.0" + }, + "pillow-3.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "ccc93b483379232a1f3fa8dea65a82ec", + "name": "pillow", + "requires": [], + "size": 807410, + "version": "3.0.0" + }, + "pillow-3.0.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "963aeb160c61283242d2cf0d381770aa", + "name": "pillow", + "requires": [], + "size": 807427, + "version": "3.0.0" + }, + "pillow-3.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "8989e76dda93eed076e3de56bc7a4ca7", + "name": "pillow", + "requires": [], + "size": 826058, + "version": "3.0.0" + }, + "pillow-3.0.0-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.3*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "5639da93948cbe6c980986c2f3691849", + "name": "pillow", + "requires": [], + "size": 826135, + "version": "3.0.0" + }, + "pillow-3.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "e3319dea9967d431b502125cdd9a718d", + "name": "pillow", + "requires": [], + "size": 831759, + "version": "3.0.0" + }, + "pillow-3.0.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "70e3725edefb5b4ac7dea6f772a29650", + "name": "pillow", + "requires": [], + "size": 831737, + "version": "3.0.0" + }, + "pillow-3.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "4221335b86b8a205de1e36da14deab71", + "name": "pillow", + "requires": [], + "size": 830095, + "version": "3.0.0" + }, + "pillow-3.0.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "5dda50a2ef2b05ab364e5f0d8aa0030f", + "name": "pillow", + "requires": [], + "size": 829893, + "version": "3.0.0" + }, + "pillow-3.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-15", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "d09744333409cd73b4ee021dafcb202f", + "name": "pillow", + "requires": [], + "size": 808359, + "version": "3.1.0" + }, + "pillow-3.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-15", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "f9d6fa090d6f1d0b7da9d68f996a32b8", + "name": "pillow", + "requires": [], + "size": 833078, + "version": "3.1.0" + }, + "pillow-3.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-15", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "42adb973f9437d0390422ae54198e37c", + "name": "pillow", + "requires": [], + "size": 831489, + "version": "3.1.0" + }, + "pillow-3.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "1f879c869f5dc7d7d52d126828711cbf", + "name": "pillow", + "requires": [], + "size": 808864, + "version": "3.1.1" + }, + "pillow-3.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "a76a21cdfa1eb7eb01985725e69d01d1", + "name": "pillow", + "requires": [], + "size": 833449, + "version": "3.1.1" + }, + "pillow-3.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "b42a8824db5e9f0c771b845730b4f973", + "name": "pillow", + "requires": [], + "size": 831741, + "version": "3.1.1" + }, + "pillow-3.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-02", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "339d67e7568443430dbfc73c365811d8", + "name": "pillow", + "requires": [], + "size": 816083, + "version": "3.2.0" + }, + "pillow-3.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-02", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "f9114eab4e814bbd1a41765594197c35", + "name": "pillow", + "requires": [], + "size": 844713, + "version": "3.2.0" + }, + "pillow-3.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-02", + "depends": [ + "freetype 2.5*", + "jpeg 8d", + "libtiff 4.0*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "PIL license", + "license_family": "Other", + "md5": "5105ec19c55ebce80277ce055bf12d4b", + "name": "pillow", + "requires": [], + "size": 843560, + "version": "3.2.0" + }, + "pip-1.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.6*" + ], + "license": "MIT", + "md5": "9374299dd221470dcefb8ded3397ed39", + "name": "pip", + "requires": [], + "size": 119982, + "version": "1.1" + }, + "pip-1.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.7*" + ], + "license": "MIT", + "md5": "8c2bb490e6cc55e1d8dbe11c5a84e6c9", + "name": "pip", + "requires": [], + "size": 119847, + "version": "1.1" + }, + "pip-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.6*" + ], + "license": "MIT", + "md5": "4723caed996bccc9519952f33dd56c18", + "name": "pip", + "requires": [], + "size": 116477, + "version": "1.2.1" + }, + "pip-1.2.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.6*" + ], + "license": "MIT", + "md5": "396c17fa122ae487bc489be2742f2bf1", + "name": "pip", + "requires": [], + "size": 116745, + "version": "1.2.1" + }, + "pip-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.7*" + ], + "license": "MIT", + "md5": "0aa05879ac21ea9e871eb7799fc12536", + "name": "pip", + "requires": [], + "size": 116197, + "version": "1.2.1" + }, + "pip-1.2.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.7*" + ], + "license": "MIT", + "md5": "21f92051074b48d7ec7365bab8d1fbb5", + "name": "pip", + "requires": [], + "size": 116546, + "version": "1.2.1" + }, + "pip-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 3.3*" + ], + "license": "MIT", + "md5": "7bef8d63120626742005188837aa3213", + "name": "pip", + "requires": [], + "size": 118533, + "version": "1.2.1" + }, + "pip-1.2.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 3.3*" + ], + "license": "MIT", + "md5": "6f4bb8a1b41513c94e45033f863516ec", + "name": "pip", + "requires": [], + "size": 118901, + "version": "1.2.1" + }, + "pip-1.3.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.6*" + ], + "license": "MIT", + "md5": "2e339e07ce755e28d4e2e1514af79282", + "name": "pip", + "requires": [], + "size": 275145, + "version": "1.3.1" + }, + "pip-1.3.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.7*" + ], + "license": "MIT", + "md5": "5e6edf3443d59d59e5afd988ba44daca", + "name": "pip", + "requires": [], + "size": 274625, + "version": "1.3.1" + }, + "pip-1.3.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 3.3*" + ], + "license": "MIT", + "md5": "d6f0a0d25e1972b4c8678af251c3924b", + "name": "pip", + "requires": [], + "size": 278536, + "version": "1.3.1" + }, + "pip-1.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.6*" + ], + "license": "MIT", + "md5": "bb3389b2507292a7d8fb3ce878d07117", + "name": "pip", + "requires": [], + "size": 659256, + "version": "1.4" + }, + "pip-1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.7*" + ], + "license": "MIT", + "md5": "8e8f118180bb87c3511db36db3322e7d", + "name": "pip", + "requires": [], + "size": 659151, + "version": "1.4" + }, + "pip-1.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 3.3*" + ], + "license": "MIT", + "md5": "9ac3f949c0a9d2c3e2fb80dd582bc56a", + "name": "pip", + "requires": [], + "size": 679245, + "version": "1.4" + }, + "pip-1.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.6*" + ], + "license": "MIT", + "md5": "22161b1863171f6794bc785931ca4151", + "name": "pip", + "requires": [], + "size": 659506, + "version": "1.4.1" + }, + "pip-1.4.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "6a1d64490dd763cc9f4aa482435b5d53", + "name": "pip", + "requires": [], + "size": 659328, + "version": "1.4.1" + }, + "pip-1.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 2.7*" + ], + "license": "MIT", + "md5": "d0ba82ee9b9de426d35fb6a4f00d1697", + "name": "pip", + "requires": [], + "size": 659682, + "version": "1.4.1" + }, + "pip-1.4.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "9d22bb3299b52d0e9c39e45c78469e85", + "name": "pip", + "requires": [], + "size": 658935, + "version": "1.4.1" + }, + "pip-1.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "distribute", + "python 3.3*" + ], + "license": "MIT", + "md5": "c3c24335da1a4650a2419b222f17fc84", + "name": "pip", + "requires": [], + "size": 679914, + "version": "1.4.1" + }, + "pip-1.4.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "e369f2c5520cd0ffa7dca07368814459", + "name": "pip", + "requires": [], + "size": 679788, + "version": "1.4.1" + }, + "pip-1.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "4a1898512e5b86ae06a012bf02bb16a5", + "name": "pip", + "requires": [], + "size": 1259362, + "version": "1.5" + }, + "pip-1.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "29ac0c3966e5a27a333c78b9e177bbc5", + "name": "pip", + "requires": [], + "size": 1261148, + "version": "1.5" + }, + "pip-1.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "4e6261280976831732d72d433bb57b07", + "name": "pip", + "requires": [], + "size": 1260215, + "version": "1.5" + }, + "pip-1.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "c5e4961d63494b3c0f51f00ceda8266e", + "name": "pip", + "requires": [], + "size": 1591907, + "version": "1.5.1" + }, + "pip-1.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "bb97a06f75f8c1fbb312b61b05caa3ee", + "name": "pip", + "requires": [], + "size": 1592659, + "version": "1.5.1" + }, + "pip-1.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "2bd5ce4599d8302cb69d98f2bedd188c", + "name": "pip", + "requires": [], + "size": 1612323, + "version": "1.5.1" + }, + "pip-1.5.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "afa9acb9abcbe6438a422f85938b46dd", + "name": "pip", + "requires": [], + "size": 1594206, + "version": "1.5.2" + }, + "pip-1.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "3a533409c46b56c51ded1eb328a89a2c", + "name": "pip", + "requires": [], + "size": 1594270, + "version": "1.5.2" + }, + "pip-1.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "b0b4d4ffa97f9276926ff37bf065201e", + "name": "pip", + "requires": [], + "size": 1613885, + "version": "1.5.2" + }, + "pip-1.5.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "55619993bdd412a6443e2e4d0b14d2bd", + "name": "pip", + "requires": [], + "size": 1601948, + "version": "1.5.4" + }, + "pip-1.5.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "886e9849e525b29ecb571de7fc82dab1", + "name": "pip", + "requires": [], + "size": 1600989, + "version": "1.5.4" + }, + "pip-1.5.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "d4eb6cdadb233275539f927ba8e5d421", + "name": "pip", + "requires": [], + "size": 1624616, + "version": "1.5.4" + }, + "pip-1.5.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "97c36bc19eb38b2a20de50ea6b8087b2", + "name": "pip", + "requires": [], + "size": 1610631, + "version": "1.5.5" + }, + "pip-1.5.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "e68468dd5320f1c76db4f476025d51b8", + "name": "pip", + "requires": [], + "size": 1615662, + "version": "1.5.5" + }, + "pip-1.5.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "2f6e91df2db0b5b5e0867c8efffdf37b", + "name": "pip", + "requires": [], + "size": 1645941, + "version": "1.5.5" + }, + "pip-1.5.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "f8c41430ea16f077f6a31d3351fc2ff1", + "name": "pip", + "requires": [], + "size": 1656671, + "version": "1.5.5" + }, + "pip-1.5.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "70dfde8b663402ae43b7dbb44db214b7", + "name": "pip", + "requires": [], + "size": 1349572, + "version": "1.5.6" + }, + "pip-1.5.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "62d0c6f481841398d284f328236aa811", + "name": "pip", + "requires": [], + "size": 1349372, + "version": "1.5.6" + }, + "pip-1.5.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "5abea654447be8177ca504d758b32e2d", + "name": "pip", + "requires": [], + "size": 1382477, + "version": "1.5.6" + }, + "pip-1.5.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "f91a2d3dacbb36d5a7ccfddd6d3a24df", + "name": "pip", + "requires": [], + "size": 1360349, + "version": "1.5.6" + }, + "pip-6.0.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "783556d884e057b77e0534c8631587f3", + "name": "pip", + "requires": [], + "size": 1588021, + "version": "6.0.6" + }, + "pip-6.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "f152853dfc1e9cd666b5c1a9060ba2bd", + "name": "pip", + "requires": [], + "size": 1579490, + "version": "6.0.6" + }, + "pip-6.0.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "eaab5c542d85b746fb1b498e732cbd80", + "name": "pip", + "requires": [], + "size": 1637909, + "version": "6.0.6" + }, + "pip-6.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "21b5f54c4c3f0236e236b28d6614e05e", + "name": "pip", + "requires": [], + "size": 1645290, + "version": "6.0.6" + }, + "pip-6.0.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-12", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "ff321941e0401e6b331b3528a36f5a6b", + "name": "pip", + "requires": [], + "size": 1604661, + "version": "6.0.8" + }, + "pip-6.0.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-12", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "e8d0ce290e2c3438867d5798a64b460d", + "name": "pip", + "requires": [], + "size": 1598756, + "version": "6.0.8" + }, + "pip-6.0.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-12", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "ff82136d55ecca7733dc13c6afb827eb", + "name": "pip", + "requires": [], + "size": 1632067, + "version": "6.0.8" + }, + "pip-6.0.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-12", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "69d7615b8ec508bbc374f5c54eea6b1d", + "name": "pip", + "requires": [], + "size": 1672712, + "version": "6.0.8" + }, + "pip-6.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-07", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "d677dacec569f80c7c8fcdfff7fbf9af", + "name": "pip", + "requires": [], + "size": 1445622, + "version": "6.1.1" + }, + "pip-6.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-07", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "e2c82278846dc7a44ce056fc85ead2f0", + "name": "pip", + "requires": [], + "size": 1443890, + "version": "6.1.1" + }, + "pip-6.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-07", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "bedf9789f18ee3a4555b24196a95f1a8", + "name": "pip", + "requires": [], + "size": 1542610, + "version": "6.1.1" + }, + "pip-6.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-07", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "4209148c5f4e1fec7a311f1f0bff29e4", + "name": "pip", + "requires": [], + "size": 1527642, + "version": "6.1.1" + }, + "pip-7.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "fc8d13919b3b1b0ae246db9527bfb321", + "name": "pip", + "requires": [], + "size": 1449941, + "version": "7.0.1" + }, + "pip-7.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "995ca3e39c1ec80f043b6907e2c67430", + "name": "pip", + "requires": [], + "size": 1448400, + "version": "7.0.1" + }, + "pip-7.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "34a5247056d24305e338608ee927a47f", + "name": "pip", + "requires": [], + "size": 1543763, + "version": "7.0.1" + }, + "pip-7.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "a98c3a2d5e29b6faf6fb9aa27e3e8f0b", + "name": "pip", + "requires": [], + "size": 1520926, + "version": "7.0.1" + }, + "pip-7.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "36a0c78a28fbbfc43c462d19f8e566a6", + "name": "pip", + "requires": [], + "size": 1449204, + "version": "7.0.3" + }, + "pip-7.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "36a2907334e64345165100f4b07cf5a3", + "name": "pip", + "requires": [], + "size": 1449556, + "version": "7.0.3" + }, + "pip-7.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "7fa64487e8054a28dd73f6cf6037f388", + "name": "pip", + "requires": [], + "size": 1543912, + "version": "7.0.3" + }, + "pip-7.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "0a4c9895b454a58f04b7960bcbec007e", + "name": "pip", + "requires": [], + "size": 1521461, + "version": "7.0.3" + }, + "pip-7.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "757e300e5e70ad7b1ea1e4ca1ad1d1a7", + "name": "pip", + "requires": [], + "size": 1432247, + "version": "7.1.0" + }, + "pip-7.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "f8129b8f7278084bf1131919e01d068d", + "name": "pip", + "requires": [], + "size": 1424290, + "version": "7.1.0" + }, + "pip-7.1.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-08-12", + "depends": [ + "python 2.7*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "895b97c63a9c36c603d77965b95d2ed9", + "name": "pip", + "requires": [], + "size": 1423823, + "version": "7.1.0" + }, + "pip-7.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "e121c196c6afb6e030767593171c668e", + "name": "pip", + "requires": [], + "size": 1538162, + "version": "7.1.0" + }, + "pip-7.1.0-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-08-18", + "depends": [ + "python 3.3*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "88b6799f526c270510eb9d124b3b5732", + "name": "pip", + "requires": [], + "size": 1537927, + "version": "7.1.0" + }, + "pip-7.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "a3ed12615c76c601e3b6e78c3dc513e0", + "name": "pip", + "requires": [], + "size": 1519036, + "version": "7.1.0" + }, + "pip-7.1.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-08-12", + "depends": [ + "python 3.4*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "c85d67d630f3ff51a92090cd34f33a62", + "name": "pip", + "requires": [], + "size": 1519753, + "version": "7.1.0" + }, + "pip-7.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-24", + "depends": [ + "python 2.7*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "71c111b98dfa27bb8d8a727a604ff0b2", + "name": "pip", + "requires": [], + "size": 1434745, + "version": "7.1.2" + }, + "pip-7.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-24", + "depends": [ + "python 3.3*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "bd2cf224a831381c018393171f36ff13", + "name": "pip", + "requires": [], + "size": 1553102, + "version": "7.1.2" + }, + "pip-7.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-24", + "depends": [ + "python 3.4*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "2c4b8d870817fe968843363c7e73f78a", + "name": "pip", + "requires": [], + "size": 1522211, + "version": "7.1.2" + }, + "pip-7.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "785b9ab2aaa1bba1e8cea75779810174", + "name": "pip", + "requires": [], + "size": 1517352, + "version": "7.1.2" + }, + "pip-8.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 2.7*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "289bfe01e39dfb2afae120b1e86e879e", + "name": "pip", + "requires": [], + "size": 1586749, + "version": "8.0.1" + }, + "pip-8.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 3.3*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "8a09ebfdde1cab4dc7898a68aa932eb0", + "name": "pip", + "requires": [], + "size": 1621514, + "version": "8.0.1" + }, + "pip-8.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 3.4*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "f47db7fa356fa2e8b5cc8c09749cb3bf", + "name": "pip", + "requires": [], + "size": 1626443, + "version": "8.0.1" + }, + "pip-8.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 3.5*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "daf24c7aedf5f3466714b1b556a34391", + "name": "pip", + "requires": [], + "size": 1621106, + "version": "8.0.1" + }, + "pip-8.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 2.7*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "b078ed75f3a10b1f9159c5e26c95b41d", + "name": "pip", + "requires": [], + "size": 1585319, + "version": "8.0.2" + }, + "pip-8.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 3.3*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "abbd03ee2d1c95e34316e4954e9e3b5b", + "name": "pip", + "requires": [], + "size": 1620222, + "version": "8.0.2" + }, + "pip-8.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 3.4*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "b29aee70151da71b2e51043e03f7cf26", + "name": "pip", + "requires": [], + "size": 1625830, + "version": "8.0.2" + }, + "pip-8.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 3.5*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "0de2dac1a8723eb056766cd1a12cbaff", + "name": "pip", + "requires": [], + "size": 1620475, + "version": "8.0.2" + }, + "pip-8.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-25", + "depends": [ + "python 2.7*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "d46d109db18d2c9e1febe393afdd6844", + "name": "pip", + "requires": [], + "size": 1587201, + "version": "8.0.3" + }, + "pip-8.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-02-25", + "depends": [ + "python 3.3*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "cf107f7355fe2a8b87fea4e9a5666a04", + "name": "pip", + "requires": [], + "size": 1623841, + "version": "8.0.3" + }, + "pip-8.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-25", + "depends": [ + "python 3.4*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "72029adf32fc8e6f2aba3aad273857aa", + "name": "pip", + "requires": [], + "size": 1626853, + "version": "8.0.3" + }, + "pip-8.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-25", + "depends": [ + "python 3.5*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "ab1c92412ee8e2ef643e98f1404a5957", + "name": "pip", + "requires": [], + "size": 1621381, + "version": "8.0.3" + }, + "pip-8.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-06", + "depends": [ + "python 2.7*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "f8b2ebd018db5bfd4997fab77ad5bf2f", + "name": "pip", + "requires": [], + "size": 1600293, + "version": "8.1.0" + }, + "pip-8.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-06", + "depends": [ + "python 3.4*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "635a6d04a85bdd8f65e6e8a45689c529", + "name": "pip", + "requires": [], + "size": 1632884, + "version": "8.1.0" + }, + "pip-8.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-06", + "depends": [ + "python 3.5*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "29eb0d92d1318c0461f4dfd19ab6b6db", + "name": "pip", + "requires": [], + "size": 1628536, + "version": "8.1.0" + }, + "pip-8.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "python 2.7*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "3a0486af2218b131c5f4560bfad41005", + "name": "pip", + "requires": [], + "size": 1600583, + "version": "8.1.1" + }, + "pip-8.1.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-03-18", + "depends": [ + "python 2.7*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "335fec4850b45ad1bdea01ebee4f3952", + "name": "pip", + "requires": [], + "size": 1599753, + "version": "8.1.1" + }, + "pip-8.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "python 3.4*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "6e89ec51a70044ac5c25a5976479c15f", + "name": "pip", + "requires": [], + "size": 1632701, + "version": "8.1.1" + }, + "pip-8.1.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-03-18", + "depends": [ + "python 3.4*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "c221315d2b279763f553cacbf69ec476", + "name": "pip", + "requires": [], + "size": 1633613, + "version": "8.1.1" + }, + "pip-8.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "python 3.5*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "6cca0ac83201622fdee0c2d166c445cf", + "name": "pip", + "requires": [], + "size": 1629430, + "version": "8.1.1" + }, + "pip-8.1.1-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-03-18", + "depends": [ + "python 3.5*", + "setuptools", + "wheel" + ], + "license": "MIT", + "md5": "ac2d5e6259123b36dd9fb8d0dfa21f1d", + "name": "pip", + "requires": [], + "size": 1629313, + "version": "8.1.1" + }, + "pivottablejs-0.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-24", + "depends": [ + "notebook", + "python 2.7*" + ], + "license": "MIT", + "md5": "d90f1a3a04ced7929f4e773663857dc3", + "name": "pivottablejs", + "requires": [], + "size": 3536, + "version": "0.1.0" + }, + "pivottablejs-0.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-24", + "depends": [ + "notebook", + "python 3.4*" + ], + "license": "MIT", + "md5": "8b99f3c482d4fd15104b3e167bc271c2", + "name": "pivottablejs", + "requires": [], + "size": 3592, + "version": "0.1.0" + }, + "pivottablejs-0.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-24", + "depends": [ + "notebook", + "python 3.5*" + ], + "license": "MIT", + "md5": "b51e67545e7c44aee51104f99a9b45dc", + "name": "pivottablejs", + "requires": [], + "size": 3582, + "version": "0.1.0" + }, + "pixman-0.26.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "c890f58ffa93bcb079b87bf4a3e274e3", + "name": "pixman", + "requires": [], + "size": 1986726, + "version": "0.26.2" + }, + "pixman-0.32.6-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-11-30", + "depends": [], + "license": "MIT", + "md5": "c62c2fe17ebb77464fc7a6272f97562d", + "name": "pixman", + "requires": [], + "size": 2546050, + "version": "0.32.6" + }, + "pkgconfig-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "3ee29ca969fdf8ae67dff9d62d856576", + "name": "pkgconfig", + "requires": [], + "size": 5856, + "version": "1.1.0" + }, + "pkgconfig-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9eac3faf315d5b6bf6fd0aeb5cb46b0c", + "name": "pkgconfig", + "requires": [], + "size": 5872, + "version": "1.1.0" + }, + "pkgconfig-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "38e23afa4687b1d7d3a8818285aa4aa4", + "name": "pkgconfig", + "requires": [], + "size": 6025, + "version": "1.1.0" + }, + "pkgconfig-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6c12083bb1c3ca16be264bd4a3175c91", + "name": "pkgconfig", + "requires": [], + "size": 6018, + "version": "1.1.0" + }, + "pkgconfig-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "7ac0f3bd4e34f4a25beb7d0f4c35bd21", + "name": "pkgconfig", + "requires": [], + "size": 5778, + "version": "1.1.0" + }, + "plac-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "argparse", + "python 2.6*" + ], + "license": "BSD", + "md5": "521c97b0869fdcc591276bbba1dcbff9", + "name": "plac", + "requires": [], + "size": 31738, + "version": "0.9.1" + }, + "plac-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0904bd500d4408b2712ac18de9a9c9d7", + "name": "plac", + "requires": [], + "size": 31586, + "version": "0.9.1" + }, + "plac-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3029147d1eb73ab02d02521c178270e3", + "name": "plac", + "requires": [], + "size": 32451, + "version": "0.9.1" + }, + "plac-0.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "243e17905e64d25ba105c75b4197e84b", + "name": "plac", + "requires": [], + "size": 32564, + "version": "0.9.1" + }, + "plac-0.9.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "e9c586eb3b271ef25e59b518de0e5d20", + "name": "plac", + "requires": [], + "size": 32235, + "version": "0.9.1" + }, + "ply-3.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "9f8c8bcb7a634cacfc8831138ae5d622", + "name": "ply", + "requires": [], + "size": 68809, + "version": "3.4" + }, + "ply-3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "1e2f0df68aedf12987ed1e3f93cea47f", + "name": "ply", + "requires": [], + "size": 68976, + "version": "3.4" + }, + "ply-3.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "9c0b15ed02307f55410e430e3e000691", + "name": "ply", + "requires": [], + "size": 70088, + "version": "3.4" + }, + "ply-3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "0db3f69b370db62c2e642c239f60eaa6", + "name": "ply", + "requires": [], + "size": 70875, + "version": "3.4" + }, + "ply-3.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "4a8da29c77d58ddb39563306045585d2", + "name": "ply", + "requires": [], + "size": 71745, + "version": "3.5" + }, + "ply-3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "10161d1e4a287b9235d624313c70928b", + "name": "ply", + "requires": [], + "size": 71733, + "version": "3.5" + }, + "ply-3.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "ad922dba5cec096da0e961108c8a4c5f", + "name": "ply", + "requires": [], + "size": 73091, + "version": "3.5" + }, + "ply-3.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1b8b3dbef71be0551f34e0566abf0063", + "name": "ply", + "requires": [], + "size": 73464, + "version": "3.5" + }, + "ply-3.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "d78d522e2e7a941cc1f4d3faae883708", + "name": "ply", + "requires": [], + "size": 71927, + "version": "3.6" + }, + "ply-3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b52b244340b2746d7b65d752a1df6d6d", + "name": "ply", + "requires": [], + "size": 71974, + "version": "3.6" + }, + "ply-3.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d35620050c670510e8ae123c0f5d7f6c", + "name": "ply", + "requires": [], + "size": 73351, + "version": "3.6" + }, + "ply-3.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3cff460ec2c256064e683273919f7a25", + "name": "ply", + "requires": [], + "size": 73705, + "version": "3.6" + }, + "ply-3.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "14048ab9491b7418704c1afb4e2c92dc", + "name": "ply", + "requires": [], + "size": 73291, + "version": "3.6" + }, + "ply-3.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "9eda070bb7d677a884dd0b6b0c05215c", + "name": "ply", + "requires": [], + "size": 72258, + "version": "3.7" + }, + "ply-3.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f563514083f128d0bdf8cd274ca728a8", + "name": "ply", + "requires": [], + "size": 74039, + "version": "3.7" + }, + "ply-3.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "801c90a68aa36f85e2ac364b4b48cb82", + "name": "ply", + "requires": [], + "size": 73418, + "version": "3.7" + }, + "ply-3.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "093abc32d2a171f767564ecea9df3531", + "name": "ply", + "requires": [], + "size": 72222, + "version": "3.8" + }, + "ply-3.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "c0fff4b8c8e66c6190de4e6d8582be5e", + "name": "ply", + "requires": [], + "size": 74011, + "version": "3.8" + }, + "ply-3.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "363efefd1c6875cad0e07b53f1ef7c34", + "name": "ply", + "requires": [], + "size": 73556, + "version": "3.8" + }, + "portaudio-19-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "eb3ee6f9a4fc2a9f36404d47c7d37da8", + "name": "portaudio", + "requires": [], + "size": 182700, + "version": "19" + }, + "posix_ipc-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "a820c34a76ab4f7a09889a6845a341b5", + "name": "posix_ipc", + "requires": [], + "size": 31665, + "version": "1.0.0" + }, + "posix_ipc-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "5dce3e5f4d78251a2c7c650339e3d7e2", + "name": "posix_ipc", + "requires": [], + "size": 32884, + "version": "1.0.0" + }, + "posix_ipc-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "fe68b801851c0ddce218f302e42366f8", + "name": "posix_ipc", + "requires": [], + "size": 33016, + "version": "1.0.0" + }, + "postgresql-9.1.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*" + ], + "license": "PostgreSQL license (http://www.postgresql.org/about/licence/)", + "license_family": "Other", + "md5": "aa58be54e743736956a88eda8e3ced84", + "name": "postgresql", + "requires": [], + "size": 5573820, + "version": "9.1.4" + }, + "postgresql-9.1.4-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2016-02-12", + "depends": [ + "openssl 1.0.2*" + ], + "license": "PostgreSQL license (http://www.postgresql.org/about/licence/)", + "license_family": "Other", + "md5": "e8ea79dab81d6f24b9300786f63dbbc9", + "name": "postgresql", + "requires": [], + "size": 5571732, + "version": "9.1.4" + }, + "preshed-0.37-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 2.6*" + ], + "license": "MIT", + "md5": "8a74fe76893e0df6ea2500ea4eeade2b", + "name": "preshed", + "requires": [], + "size": 278546, + "version": "0.37" + }, + "preshed-0.37-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 2.7*" + ], + "license": "MIT", + "md5": "3383b129a07f3b72f7a06e43fe2bdaf5", + "name": "preshed", + "requires": [], + "size": 277906, + "version": "0.37" + }, + "preshed-0.37-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 3.3*" + ], + "license": "MIT", + "md5": "8fc258a9ee35c164a5500dc407e02ba3", + "name": "preshed", + "requires": [], + "size": 288370, + "version": "0.37" + }, + "preshed-0.37-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 3.4*" + ], + "license": "MIT", + "md5": "763ec5c1687c75e3c3b3e2eef4e6d6b8", + "name": "preshed", + "requires": [], + "size": 312181, + "version": "0.37" + }, + "preshed-0.41-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 2.6*" + ], + "license": "MIT", + "md5": "f06271039efd44f0a5f91f5a2c334f39", + "name": "preshed", + "requires": [], + "size": 222926, + "version": "0.41" + }, + "preshed-0.41-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 2.7*" + ], + "license": "MIT", + "md5": "fed111f8593c0856abcbc55c539a26ff", + "name": "preshed", + "requires": [], + "size": 222964, + "version": "0.41" + }, + "preshed-0.41-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 3.3*" + ], + "license": "MIT", + "md5": "aa5f201af2d22f2f542d8bbd9e270c00", + "name": "preshed", + "requires": [], + "size": 231587, + "version": "0.41" + }, + "preshed-0.41-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 3.4*" + ], + "license": "MIT", + "md5": "e7e4c349adb3ac57bb4da5f0061c4cb2", + "name": "preshed", + "requires": [], + "size": 250684, + "version": "0.41" + }, + "preshed-0.41-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "cymem 1.11", + "murmurhash 0.24", + "python 3.5*" + ], + "license": "MIT", + "md5": "c79c419e7acc496a96749d95215b4d98", + "name": "preshed", + "requires": [], + "size": 251127, + "version": "0.41" + }, + "preshed-0.44-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "cymem 1.30", + "murmurhash 0.24", + "python 2.7*" + ], + "license": "MIT", + "md5": "0241e09a37299ebc22f7b215cdc54556", + "name": "preshed", + "requires": [], + "size": 222439, + "version": "0.44" + }, + "preshed-0.44-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "cymem 1.30", + "murmurhash 0.24", + "python 3.4*" + ], + "license": "MIT", + "md5": "db5419c02d30034e4d676aa517619833", + "name": "preshed", + "requires": [], + "size": 250783, + "version": "0.44" + }, + "preshed-0.44-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "cymem 1.30", + "murmurhash 0.24", + "python 3.5*" + ], + "license": "MIT", + "md5": "939fbf2e8e40435ed5b138ac9135a7ef", + "name": "preshed", + "requires": [], + "size": 251094, + "version": "0.44" + }, + "preshed-0.46.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "cymem 1.31.0", + "murmurhash 0.26.0", + "python 2.7*" + ], + "license": "MIT", + "md5": "3903d8765998df9899a284b065e405c5", + "name": "preshed", + "requires": [], + "size": 179608, + "version": "0.46.1" + }, + "preshed-0.46.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "cymem 1.31.0", + "murmurhash 0.26.0", + "python 3.4*" + ], + "license": "MIT", + "md5": "0934cbcc8b996f2d743915ed3a9cc182", + "name": "preshed", + "requires": [], + "size": 205122, + "version": "0.46.1" + }, + "preshed-0.46.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "cymem 1.31.0", + "murmurhash 0.26.0", + "python 3.5*" + ], + "license": "MIT", + "md5": "0708e4e68b3f776b87924c02a5937871", + "name": "preshed", + "requires": [], + "size": 201774, + "version": "0.46.1" + }, + "preshed-0.46.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "cymem 1.31.0", + "python 2.7*" + ], + "license": "MIT", + "md5": "82dca40d7ae1a689f55af65fa3b407a2", + "name": "preshed", + "requires": [], + "size": 189598, + "version": "0.46.2" + }, + "preshed-0.46.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "cymem 1.31.0", + "python 3.4*" + ], + "license": "MIT", + "md5": "72cf2e1dfc64708602b7735d3cd52e7b", + "name": "preshed", + "requires": [], + "size": 215896, + "version": "0.46.2" + }, + "preshed-0.46.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "cymem 1.31.0", + "python 3.5*" + ], + "license": "MIT", + "md5": "6d6a3a40c80b4aa53ec66c520a7201e3", + "name": "preshed", + "requires": [], + "size": 212350, + "version": "0.46.2" + }, + "progressbar-2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-14", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "a86427caa13c0a1d4f35d06b1add8cd6", + "name": "progressbar", + "requires": [], + "size": 9204, + "version": "2.2" + }, + "progressbar-2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-14", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "a565471ae74f8a9dcd592164d3b5cd89", + "name": "progressbar", + "requires": [], + "size": 9197, + "version": "2.2" + }, + "progressbar-2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-08", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "3638fb6ff6aaf9fafe02aa934e65e8bf", + "name": "progressbar", + "requires": [], + "size": 13286, + "version": "2.3" + }, + "progressbar-2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-08", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "6393cc1c159fee767916a17d24f02d55", + "name": "progressbar", + "requires": [], + "size": 13284, + "version": "2.3" + }, + "proj.4-4.9.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-07-31", + "depends": [], + "license": "MIT", + "md5": "88356dc5b99863504c2b89ff199b0aa2", + "name": "proj.4", + "requires": [], + "size": 1560674, + "version": "4.9.1" + }, + "proj4-4.9.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-14", + "depends": [], + "license": "MIT", + "md5": "0f136c120adf61d22e457784dfeade26", + "name": "proj4", + "requires": [], + "size": 529010, + "version": "4.9.1" + }, + "protobuf-2.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2b416385bbd6e04c06c5d2e93dfbc5a2", + "name": "protobuf", + "requires": [], + "size": 115927, + "version": "2.6.1" + }, + "protobuf-2.6.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-03-20", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "843255a919238c78ba318fce62d21aac", + "name": "protobuf", + "requires": [], + "size": 115950, + "version": "2.6.1" + }, + "psqlodbc-09.01.0200-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "unixodbc 2.3.*" + ], + "license": "GPL2", + "md5": "649e579e7dc73872f39e3595950d280e", + "name": "psqlodbc", + "requires": [], + "size": 559773, + "version": "09.01.0200" + }, + "psqlodbc-09.03.0400-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "openssl 1.0.2*", + "unixodbc 2.3.*" + ], + "license": "GPL2", + "md5": "90d1d360e58769c5472f6411e503d371", + "name": "psqlodbc", + "requires": [], + "size": 572318, + "version": "09.03.0400" + }, + "psutil-0.6.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "24cc6e344713cbafbd8b7189b1200d3f", + "name": "psutil", + "requires": [], + "size": 77027, + "version": "0.6.1" + }, + "psutil-0.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2cfc1125efd8690850acad9e1a5fe4e6", + "name": "psutil", + "requires": [], + "size": 77001, + "version": "0.6.1" + }, + "psutil-0.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "5c6bf45800d236d04e585c05bf91722b", + "name": "psutil", + "requires": [], + "size": 78868, + "version": "0.6.1" + }, + "psutil-0.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "4ba11a5b8ab3c53d116bd3494711b432", + "name": "psutil", + "requires": [], + "size": 80627, + "version": "0.7.0" + }, + "psutil-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3ac3e9a6473d484073f6ae4da3101c83", + "name": "psutil", + "requires": [], + "size": 80685, + "version": "0.7.0" + }, + "psutil-0.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "eed2120c5817e1b673b8481c927cfdc5", + "name": "psutil", + "requires": [], + "size": 82420, + "version": "0.7.0" + }, + "psutil-0.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a191f90e9d399d3a3d43c482ccd6524e", + "name": "psutil", + "requires": [], + "size": 80668, + "version": "0.7.1" + }, + "psutil-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "334438082cebee08e1ff6a0298938b16", + "name": "psutil", + "requires": [], + "size": 80632, + "version": "0.7.1" + }, + "psutil-0.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "9a65bfe85198ddf6941bbeaaf0650cf7", + "name": "psutil", + "requires": [], + "size": 82412, + "version": "0.7.1" + }, + "psutil-1.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "ca5bb889cbb1bd9a4d08560f509374fd", + "name": "psutil", + "requires": [], + "size": 88386, + "version": "1.0.1" + }, + "psutil-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4dc4ad56a60d3f04f33c484a6c1af5b4", + "name": "psutil", + "requires": [], + "size": 88430, + "version": "1.0.1" + }, + "psutil-1.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "86ac8c6ed01a52b520b1e6118bab16e2", + "name": "psutil", + "requires": [], + "size": 89945, + "version": "1.0.1" + }, + "psutil-1.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "df0ba47094b2effbc04744372ebed6ef", + "name": "psutil", + "requires": [], + "size": 90693, + "version": "1.1.2" + }, + "psutil-1.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "5ebacc288bac99d0f2ed7b0fb4f90d39", + "name": "psutil", + "requires": [], + "size": 90690, + "version": "1.1.2" + }, + "psutil-1.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e927172cd819f299349578df8632b9eb", + "name": "psutil", + "requires": [], + "size": 92248, + "version": "1.1.2" + }, + "psutil-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "9f2f708eb1d6d0692fc8547c7be8c3ca", + "name": "psutil", + "requires": [], + "size": 91993, + "version": "1.2.1" + }, + "psutil-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bc98d1726d0b18c51e7199e84ce9b101", + "name": "psutil", + "requires": [], + "size": 92107, + "version": "1.2.1" + }, + "psutil-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "cac184516fb3d06143d53b3b74c52434", + "name": "psutil", + "requires": [], + "size": 93630, + "version": "1.2.1" + }, + "psutil-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "6d9ea4396711d0e595f008a05ca73497", + "name": "psutil", + "requires": [], + "size": 95698, + "version": "1.2.1" + }, + "psutil-2.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "48a7bce3701d36b3dbdd5c37735ee4bf", + "name": "psutil", + "requires": [], + "size": 101638, + "version": "2.1.1" + }, + "psutil-2.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "dce9ce079a6ecd629d1553758f353d5f", + "name": "psutil", + "requires": [], + "size": 101637, + "version": "2.1.1" + }, + "psutil-2.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "b63121064d10a544ba065f641815e9e3", + "name": "psutil", + "requires": [], + "size": 103280, + "version": "2.1.1" + }, + "psutil-2.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a39cc1ede887756750a8aa1bfa97f0be", + "name": "psutil", + "requires": [], + "size": 105232, + "version": "2.1.1" + }, + "psutil-2.1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c4f2951f0d9e4c84eb80df4ec1e6feeb", + "name": "psutil", + "requires": [], + "size": 104774, + "version": "2.1.3" + }, + "psutil-2.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "cea9eed16681de89c249729965a56620", + "name": "psutil", + "requires": [], + "size": 104751, + "version": "2.1.3" + }, + "psutil-2.1.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "8e888aaf266dbe28752ccaf128969d8d", + "name": "psutil", + "requires": [], + "size": 106357, + "version": "2.1.3" + }, + "psutil-2.1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "fbbd6111f0340518c822e2e03b411cb8", + "name": "psutil", + "requires": [], + "size": 108552, + "version": "2.1.3" + }, + "psutil-2.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "55f7e05ff183aed3e042209f0db80533", + "name": "psutil", + "requires": [], + "size": 100738, + "version": "2.2.0" + }, + "psutil-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e19f190313da4a8381eb731569fd53b1", + "name": "psutil", + "requires": [], + "size": 100565, + "version": "2.2.0" + }, + "psutil-2.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e0ceef647961020093dbb971e5635b83", + "name": "psutil", + "requires": [], + "size": 102394, + "version": "2.2.0" + }, + "psutil-2.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1b038ad283115c581bbcd17b060cf652", + "name": "psutil", + "requires": [], + "size": 104380, + "version": "2.2.0" + }, + "psutil-2.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "4b3fd3e91ff15081ade34a771bddc594", + "name": "psutil", + "requires": [], + "size": 100634, + "version": "2.2.1" + }, + "psutil-2.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "11cf6b3779b649e6e3b8cddebeb45d36", + "name": "psutil", + "requires": [], + "size": 100535, + "version": "2.2.1" + }, + "psutil-2.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e92f8fd504a2ab44aaab041c7be9276f", + "name": "psutil", + "requires": [], + "size": 102350, + "version": "2.2.1" + }, + "psutil-2.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7cf24c9a07677cc63ddbb68c26231ad7", + "name": "psutil", + "requires": [], + "size": 104358, + "version": "2.2.1" + }, + "psutil-3.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "017c228b5ab3535cf3566c7c2c719abd", + "name": "psutil", + "requires": [], + "size": 108555, + "version": "3.1.1" + }, + "psutil-3.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "9fdad46608a0e89456637663ee0a6506", + "name": "psutil", + "requires": [], + "size": 108402, + "version": "3.1.1" + }, + "psutil-3.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "12837753671cd8921bf36a817c96ac7e", + "name": "psutil", + "requires": [], + "size": 109899, + "version": "3.1.1" + }, + "psutil-3.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f8c42ed4e7c6eab6780de12246486e88", + "name": "psutil", + "requires": [], + "size": 112511, + "version": "3.1.1" + }, + "psutil-3.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-03", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "807ce1ccc1383258da97282575d69f69", + "name": "psutil", + "requires": [], + "size": 106973, + "version": "3.2.0" + }, + "psutil-3.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-03", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "5eb2ddfac022c04a5cfd897742636fa1", + "name": "psutil", + "requires": [], + "size": 110731, + "version": "3.2.0" + }, + "psutil-3.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "c5abf0777aa3eb2dbae62dff6ae4bb54", + "name": "psutil", + "requires": [], + "size": 110734, + "version": "3.2.0" + }, + "psutil-3.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d25b21462af95395e657badcd61fbd24", + "name": "psutil", + "requires": [], + "size": 106930, + "version": "3.2.1" + }, + "psutil-3.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3c13567b23e08cc2d9c07f617149698d", + "name": "psutil", + "requires": [], + "size": 110702, + "version": "3.2.1" + }, + "psutil-3.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "30f3edef4a7904ba99da863574d519fb", + "name": "psutil", + "requires": [], + "size": 110664, + "version": "3.2.1" + }, + "psutil-3.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "de3137875816a8bf2df0cdc6e6c1ea68", + "name": "psutil", + "requires": [], + "size": 107356, + "version": "3.2.2" + }, + "psutil-3.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "954f6434a8363142a73a222a5b22e0a6", + "name": "psutil", + "requires": [], + "size": 111133, + "version": "3.2.2" + }, + "psutil-3.2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-04", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "535371e6c5b88dbfc02aac30e831306d", + "name": "psutil", + "requires": [], + "size": 111000, + "version": "3.2.2" + }, + "psutil-3.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3b2966422a3d7a30b99e9896cbf34be6", + "name": "psutil", + "requires": [], + "size": 110277, + "version": "3.3.0" + }, + "psutil-3.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "bfc643121971f6016c0b14e135bcbd9f", + "name": "psutil", + "requires": [], + "size": 114222, + "version": "3.3.0" + }, + "psutil-3.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-25", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "a863346c90ecf527aa500e7aae6063dc", + "name": "psutil", + "requires": [], + "size": 114054, + "version": "3.3.0" + }, + "psutil-3.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ed1fc300b0ff802f49512b14837594ba", + "name": "psutil", + "requires": [], + "size": 113363, + "version": "3.4.1" + }, + "psutil-3.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b252c836d5cb61946f6cd0b32cc4327d", + "name": "psutil", + "requires": [], + "size": 117346, + "version": "3.4.1" + }, + "psutil-3.4.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "de344a2a81c2bd1e307defb01a17dc6b", + "name": "psutil", + "requires": [], + "size": 117182, + "version": "3.4.1" + }, + "psutil-3.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "fead5dc396f224298630aaa6ed6c9fd9", + "name": "psutil", + "requires": [], + "size": 113643, + "version": "3.4.2" + }, + "psutil-3.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "17942def72e36643ee365b489d8b8ee8", + "name": "psutil", + "requires": [], + "size": 117543, + "version": "3.4.2" + }, + "psutil-3.4.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "9f68d35f9dcc9a4e1bd3107477d7527b", + "name": "psutil", + "requires": [], + "size": 117386, + "version": "3.4.2" + }, + "psutil-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-29", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bac7850f4b285f1a9105704c905c2706", + "name": "psutil", + "requires": [], + "size": 208462, + "version": "4.0.0" + }, + "psutil-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-29", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "767435d38cc8ceafde2116061d49c2b9", + "name": "psutil", + "requires": [], + "size": 209997, + "version": "4.0.0" + }, + "psutil-4.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-29", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "58910a2ac6f24f1f0f75d7e4b1d4edd5", + "name": "psutil", + "requires": [], + "size": 209277, + "version": "4.0.0" + }, + "psutil-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "50a6b9f5ec96df98b8f9bb6e05826fd9", + "name": "psutil", + "requires": [], + "size": 219859, + "version": "4.1.0" + }, + "psutil-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "da97d011cce81c6a42a5265d87900efe", + "name": "psutil", + "requires": [], + "size": 224066, + "version": "4.1.0" + }, + "psutil-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "573ecbbafa5d01fc1c90af26b397ee12", + "name": "psutil", + "requires": [], + "size": 223336, + "version": "4.1.0" + }, + "psycopg2-2.4.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "python 2.7*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "2159af008e52b772b3943baa633c4d63", + "name": "psycopg2", + "requires": [], + "size": 391068, + "version": "2.4.6" + }, + "psycopg2-2.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "openssl 1.0.1*", + "python 2.6*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "6c24bf52a4048723b4da35a90682e559", + "name": "psycopg2", + "requires": [], + "size": 440292, + "version": "2.6" + }, + "psycopg2-2.6-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-06-04", + "depends": [ + "openssl 1.0.1*", + "python 2.6*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "42331047fc16153c75ae04d6786c77b3", + "name": "psycopg2", + "requires": [], + "size": 439941, + "version": "2.6" + }, + "psycopg2-2.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "openssl 1.0.1*", + "python 2.7*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "720859e4e87ed9b66512f1b8eb43677b", + "name": "psycopg2", + "requires": [], + "size": 440362, + "version": "2.6" + }, + "psycopg2-2.6-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-06-04", + "depends": [ + "openssl 1.0.1*", + "python 2.7*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "adce95dd409bdd391e2791325901dac3", + "name": "psycopg2", + "requires": [], + "size": 440215, + "version": "2.6" + }, + "psycopg2-2.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "openssl 1.0.1*", + "python 3.3*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "5b3e82e138ee3a9905a2bdb9bb8557e5", + "name": "psycopg2", + "requires": [], + "size": 461960, + "version": "2.6" + }, + "psycopg2-2.6-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-06-04", + "depends": [ + "openssl 1.0.1*", + "python 3.3*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "2f23800291aa9870ab89e3f9721b0bf1", + "name": "psycopg2", + "requires": [], + "size": 461876, + "version": "2.6" + }, + "psycopg2-2.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "openssl 1.0.1*", + "python 3.4*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "fd3efc820cb77251f5ab2f9fdda217d2", + "name": "psycopg2", + "requires": [], + "size": 466166, + "version": "2.6" + }, + "psycopg2-2.6-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-06-04", + "depends": [ + "openssl 1.0.1*", + "python 3.4*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "2b2ab11d02439305cc3f97204904fd4f", + "name": "psycopg2", + "requires": [], + "size": 465836, + "version": "2.6" + }, + "psycopg2-2.6-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "openssl 1.0.1*", + "python 3.5*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "e5ba8f405f84fdb04edbfe1bd5b54fd9", + "name": "psycopg2", + "requires": [], + "size": 466324, + "version": "2.6" + }, + "psycopg2-2.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "openssl 1.0.1*", + "python 2.7*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "e2097039d426a2e274a1a0c0d6b60641", + "name": "psycopg2", + "requires": [], + "size": 441018, + "version": "2.6.1" + }, + "psycopg2-2.6.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-02-22", + "depends": [ + "openssl 1.0.2*", + "python 2.7*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "cfc47131fc25f954e852658ed902f945", + "name": "psycopg2", + "requires": [], + "size": 442528, + "version": "2.6.1" + }, + "psycopg2-2.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "openssl 1.0.1*", + "python 3.4*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "cb37be8a0ff3b4db2b0ce20c5b642c4a", + "name": "psycopg2", + "requires": [], + "size": 466634, + "version": "2.6.1" + }, + "psycopg2-2.6.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-02-22", + "depends": [ + "openssl 1.0.2*", + "python 3.4*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "b6ce8ea4cce9d44004d57d70cc2c1072", + "name": "psycopg2", + "requires": [], + "size": 467744, + "version": "2.6.1" + }, + "psycopg2-2.6.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "openssl 1.0.1*", + "python 3.5*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "c81233e8c3ded76a6f25c9567d2a2c91", + "name": "psycopg2", + "requires": [], + "size": 467021, + "version": "2.6.1" + }, + "psycopg2-2.6.1-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-02-22", + "depends": [ + "openssl 1.0.2*", + "python 3.5*" + ], + "license": "LGPL, BSD-like, ZPL", + "license_family": "LGPL", + "md5": "fc08c58cf80302413de338481a25a132", + "name": "psycopg2", + "requires": [], + "size": 468190, + "version": "2.6.1" + }, + "ptyprocess-0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 2.7*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "5eef9ba6fbc795c31b63eb68ada74695", + "name": "ptyprocess", + "requires": [], + "size": 19281, + "version": "0.4" + }, + "ptyprocess-0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 3.3*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "3bd8e16b811b7139ffc2d7ad31ed7d02", + "name": "ptyprocess", + "requires": [], + "size": 19772, + "version": "0.4" + }, + "ptyprocess-0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "python 3.4*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "df4f2a2f2e0b8e55bb8811c0f656acf2", + "name": "ptyprocess", + "requires": [], + "size": 19878, + "version": "0.4" + }, + "ptyprocess-0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.7*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "6e8435ed46ae59b22f1dc79066439e5e", + "name": "ptyprocess", + "requires": [], + "size": 18960, + "version": "0.5" + }, + "ptyprocess-0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.3*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "ec758f230d3980e0f3cbcb1bdd0683d4", + "name": "ptyprocess", + "requires": [], + "size": 19418, + "version": "0.5" + }, + "ptyprocess-0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.4*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "90a7a8b0ca3e5c852da35f017d4d0925", + "name": "ptyprocess", + "requires": [], + "size": 19534, + "version": "0.5" + }, + "ptyprocess-0.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "ISC", + "license_family": "Other", + "md5": "ce3febc4f37772de83abfad752abe63b", + "name": "ptyprocess", + "requires": [], + "size": 19483, + "version": "0.5" + }, + "py-1.4.12-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "12bfaecd8afa5ea3972ae53fb262fa6e", + "name": "py", + "requires": [], + "size": 119036, + "version": "1.4.12" + }, + "py-1.4.12-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d4844089d084e1246b3fa69fa8b129c8", + "name": "py", + "requires": [], + "size": 119221, + "version": "1.4.12" + }, + "py-1.4.12-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "9baeb877d1e75ed69fb1be41c7276845", + "name": "py", + "requires": [], + "size": 122836, + "version": "1.4.12" + }, + "py-1.4.14-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "67eee84cfe4aab792f9c23a6d59320ba", + "name": "py", + "requires": [], + "size": 119074, + "version": "1.4.14" + }, + "py-1.4.14-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "fd73875e888f44c91b2fb5c6eab1edb4", + "name": "py", + "requires": [], + "size": 119204, + "version": "1.4.14" + }, + "py-1.4.17-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "f0f001fdcf768c7259e2be8c8e4fdbad", + "name": "py", + "requires": [], + "size": 120345, + "version": "1.4.17" + }, + "py-1.4.17-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "922de34e25728be13d03c13a529118c8", + "name": "py", + "requires": [], + "size": 120499, + "version": "1.4.17" + }, + "py-1.4.19-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c1f1896d09fc638c3eb5223030a5fc6c", + "name": "py", + "requires": [], + "size": 121669, + "version": "1.4.19" + }, + "py-1.4.19-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "6a47b2a20d872ff2751567c4ad452392", + "name": "py", + "requires": [], + "size": 122150, + "version": "1.4.19" + }, + "py-1.4.19-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "d8815a347b7fd5b048dafe14fb3fd993", + "name": "py", + "requires": [], + "size": 125816, + "version": "1.4.19" + }, + "py-1.4.20-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "04c08575e293355f71d31ae7dfdfb781", + "name": "py", + "requires": [], + "size": 122929, + "version": "1.4.20" + }, + "py-1.4.20-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c7310c0bedd240ac7e7b13d2409b1750", + "name": "py", + "requires": [], + "size": 123344, + "version": "1.4.20" + }, + "py-1.4.20-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "6bc261c3be98c8f2bab5f3c29c296b8f", + "name": "py", + "requires": [], + "size": 127179, + "version": "1.4.20" + }, + "py-1.4.20-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "92a2c1c88615abf9c6fee72f914b13b4", + "name": "py", + "requires": [], + "size": 127843, + "version": "1.4.20" + }, + "py-1.4.22-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "3c104f279869e7677371fdb0e579f9aa", + "name": "py", + "requires": [], + "size": 123337, + "version": "1.4.22" + }, + "py-1.4.22-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "549040fa28db318531fa2b33abcc90fd", + "name": "py", + "requires": [], + "size": 123854, + "version": "1.4.22" + }, + "py-1.4.22-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "d2d0083e415ba53e9a4c590557e3d27e", + "name": "py", + "requires": [], + "size": 127670, + "version": "1.4.22" + }, + "py-1.4.22-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "97a7d7f41bb2d063e51e53e4804cb885", + "name": "py", + "requires": [], + "size": 128381, + "version": "1.4.22" + }, + "py-1.4.23-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e6edbf44354756894adc0ea303f3ce70", + "name": "py", + "requires": [], + "size": 123688, + "version": "1.4.23" + }, + "py-1.4.23-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "2cb7f257944366c261aa6207c5205de1", + "name": "py", + "requires": [], + "size": 123863, + "version": "1.4.23" + }, + "py-1.4.23-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "9ebfa2b7979ed57b0082e2cd5180008b", + "name": "py", + "requires": [], + "size": 127713, + "version": "1.4.23" + }, + "py-1.4.23-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "9a48dfd30e97954876ff998f7242bd78", + "name": "py", + "requires": [], + "size": 128323, + "version": "1.4.23" + }, + "py-1.4.24-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e3b2de274317e59b7b7ee9fbc7690860", + "name": "py", + "requires": [], + "size": 124126, + "version": "1.4.24" + }, + "py-1.4.24-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "8fa9785008aa49666c243334d9f2ae39", + "name": "py", + "requires": [], + "size": 124161, + "version": "1.4.24" + }, + "py-1.4.24-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "0029600bcfef50102e7670cfca66aa1f", + "name": "py", + "requires": [], + "size": 128072, + "version": "1.4.24" + }, + "py-1.4.24-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "d5f874bda2aa1d464c3c79c17fa74daa", + "name": "py", + "requires": [], + "size": 128752, + "version": "1.4.24" + }, + "py-1.4.25-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "450936bad9a857aaa17dbf54191fdb98", + "name": "py", + "requires": [], + "size": 124257, + "version": "1.4.25" + }, + "py-1.4.25-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "f1ab69b5934801e241a175002712720f", + "name": "py", + "requires": [], + "size": 124372, + "version": "1.4.25" + }, + "py-1.4.25-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "60b75453e2811b6552f78bf5788307c7", + "name": "py", + "requires": [], + "size": 128157, + "version": "1.4.25" + }, + "py-1.4.25-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "2ba3f9a9c8d56ed875053d744c8855b4", + "name": "py", + "requires": [], + "size": 128811, + "version": "1.4.25" + }, + "py-1.4.26-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "d347b067d0a63fbade643e277f1df2bc", + "name": "py", + "requires": [], + "size": 124137, + "version": "1.4.26" + }, + "py-1.4.26-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "53fbc8e543bef64192b1e6df5e9d8c43", + "name": "py", + "requires": [], + "size": 124561, + "version": "1.4.26" + }, + "py-1.4.26-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "1add1ab883a7243ee63b1f1feb7c3dde", + "name": "py", + "requires": [], + "size": 128321, + "version": "1.4.26" + }, + "py-1.4.26-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "a085eefb3b596cdb3bb778490b7091a7", + "name": "py", + "requires": [], + "size": 128904, + "version": "1.4.26" + }, + "py-1.4.27-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "2191de746ad65b422257ca567ca2a154", + "name": "py", + "requires": [], + "size": 125009, + "version": "1.4.27" + }, + "py-1.4.27-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "3fef553b7ff1bbb9993e831a50bd319e", + "name": "py", + "requires": [], + "size": 125060, + "version": "1.4.27" + }, + "py-1.4.27-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "202b1f8db865613db0c0b19dac56aaf1", + "name": "py", + "requires": [], + "size": 129114, + "version": "1.4.27" + }, + "py-1.4.27-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "cfb84d64ccb051faa991a709d3ba20c0", + "name": "py", + "requires": [], + "size": 129866, + "version": "1.4.27" + }, + "py-1.4.30-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "f9de20ed95416002971c6a4fcd6e6aa6", + "name": "py", + "requires": [], + "size": 125233, + "version": "1.4.30" + }, + "py-1.4.30-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9155515909a657b687fce5b7b296ab20", + "name": "py", + "requires": [], + "size": 125233, + "version": "1.4.30" + }, + "py-1.4.30-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "b6af69bbccee33513671e0b3c51c24a3", + "name": "py", + "requires": [], + "size": 129073, + "version": "1.4.30" + }, + "py-1.4.30-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "58adf4c50925465810e24b588e1b2ac7", + "name": "py", + "requires": [], + "size": 129715, + "version": "1.4.30" + }, + "py-1.4.30-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "3e6c88b075f9dc39f8869e7988c5b404", + "name": "py", + "requires": [], + "size": 128995, + "version": "1.4.30" + }, + "py-1.4.31-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "dea3d93be766654470ef77cd78ffa109", + "name": "py", + "requires": [], + "size": 125559, + "version": "1.4.31" + }, + "py-1.4.31-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "b0f9b19331c86cd3266d3525f007206d", + "name": "py", + "requires": [], + "size": 130141, + "version": "1.4.31" + }, + "py-1.4.31-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "d44076f610f3eb15715f59a913d60c95", + "name": "py", + "requires": [], + "size": 129367, + "version": "1.4.31" + }, + "py2cairo-1.10.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cairo 1.12.2", + "python 2.6*" + ], + "license_family": "LGPL", + "md5": "98d14ec248ff154054acb9e95e6b1f98", + "name": "py2cairo", + "requires": [], + "size": 36492, + "version": "1.10.0" + }, + "py2cairo-1.10.0-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "cairo 1.12.2", + "python 2.6*" + ], + "license_family": "LGPL", + "md5": "4c5e2496e671884ba486d95771bc74a0", + "name": "py2cairo", + "requires": [], + "size": 36892, + "version": "1.10.0" + }, + "py2cairo-1.10.0-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-11-10", + "depends": [ + "cairo 1.12.18", + "python 2.6*" + ], + "license": "LGPL 2.1 and MPL 1.1", + "license_family": "LGPL", + "md5": "1c68a8c2e32199e3a298b923f9ccfe5e", + "name": "py2cairo", + "requires": [], + "size": 37127, + "version": "1.10.0" + }, + "py2cairo-1.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cairo 1.12.2", + "python 2.7*" + ], + "license_family": "LGPL", + "md5": "6400c0538acaa65ac3d4f6ec99fb03ba", + "name": "py2cairo", + "requires": [], + "size": 36500, + "version": "1.10.0" + }, + "py2cairo-1.10.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "cairo 1.12.2", + "python 2.7*" + ], + "license_family": "LGPL", + "md5": "3729bf388e63f2c1d5b74ad836ad5da8", + "name": "py2cairo", + "requires": [], + "size": 36922, + "version": "1.10.0" + }, + "py2cairo-1.10.0-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-11-10", + "depends": [ + "cairo 1.12.18", + "python 2.7*" + ], + "license": "LGPL 2.1 and MPL 1.1", + "license_family": "LGPL", + "md5": "3e6c28f080cd2515fa262212ab153f0d", + "name": "py2cairo", + "requires": [], + "size": 37167, + "version": "1.10.0" + }, + "pyamg-2.2.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "e25edb9077b1ed617740a6940a5fef4d", + "name": "pyamg", + "requires": [], + "size": 1658217, + "version": "2.2.0" + }, + "pyamg-2.2.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "f98fb73ebc3641d4ec25fa0dac57fc11", + "name": "pyamg", + "requires": [], + "size": 1658749, + "version": "2.2.0" + }, + "pyamg-2.2.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "bd5f06a7a6c75794b20eadb16c16c6da", + "name": "pyamg", + "requires": [], + "size": 1655516, + "version": "2.2.1" + }, + "pyamg-2.2.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "17628d27f07302d4e930f67f0575a6bd", + "name": "pyamg", + "requires": [], + "size": 1655138, + "version": "2.2.1" + }, + "pyamg-2.2.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "c35ad1e061ff348f5f641d191a36eba6", + "name": "pyamg", + "requires": [], + "size": 1655826, + "version": "2.2.1" + }, + "pyasn1-0.1.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "5cae57c9cbe50a4ef77882805dff3185", + "name": "pyasn1", + "requires": [], + "size": 47589, + "version": "0.1.4" + }, + "pyasn1-0.1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "a478bcaab9c0249126af854178192fd4", + "name": "pyasn1", + "requires": [], + "size": 47851, + "version": "0.1.4" + }, + "pyasn1-0.1.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "6ca9e53dfb8a983175e467ae0e711347", + "name": "pyasn1", + "requires": [], + "size": 50248, + "version": "0.1.4" + }, + "pyasn1-0.1.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "deca483d41b3908f986de95666826913", + "name": "pyasn1", + "requires": [], + "size": 47928, + "version": "0.1.6" + }, + "pyasn1-0.1.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4cb62b46a8c91750c313062e4923aa1f", + "name": "pyasn1", + "requires": [], + "size": 48226, + "version": "0.1.6" + }, + "pyasn1-0.1.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "175bdee91a3893c92ba9c38dd76d33ba", + "name": "pyasn1", + "requires": [], + "size": 50633, + "version": "0.1.6" + }, + "pyasn1-0.1.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "bb21c622dca25ed386ce10cbb1b35a6d", + "name": "pyasn1", + "requires": [], + "size": 51334, + "version": "0.1.6" + }, + "pyasn1-0.1.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "7137b6229593576f31395220a8518ecb", + "name": "pyasn1", + "requires": [], + "size": 48742, + "version": "0.1.7" + }, + "pyasn1-0.1.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "48ca82899a5116cf91d200139f2e6153", + "name": "pyasn1", + "requires": [], + "size": 49079, + "version": "0.1.7" + }, + "pyasn1-0.1.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "615047089e563777d11df900432b9134", + "name": "pyasn1", + "requires": [], + "size": 51466, + "version": "0.1.7" + }, + "pyasn1-0.1.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8e0b551665b8592b5149470b1ca16b95", + "name": "pyasn1", + "requires": [], + "size": 51781, + "version": "0.1.7" + }, + "pyasn1-0.1.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "b590315dafc4e918bc206e2cca4f8091", + "name": "pyasn1", + "requires": [], + "size": 51287, + "version": "0.1.7" + }, + "pyasn1-0.1.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "57df6120bc6e1f24df4a8bceeb01d592", + "name": "pyasn1", + "requires": [], + "size": 55142, + "version": "0.1.9" + }, + "pyasn1-0.1.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "24fa7f2934160dfd5cb6dc8dad5c6400", + "name": "pyasn1", + "requires": [], + "size": 58267, + "version": "0.1.9" + }, + "pyasn1-0.1.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "ac7119b0d55727fd8b095c92c360b7cd", + "name": "pyasn1", + "requires": [], + "size": 57977, + "version": "0.1.9" + }, + "pyasn1-modules-0.0.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "pyasn1 >=0.1.8", + "python 2.7*" + ], + "license": "BSD", + "md5": "b770ef715c7fdfdb396ff1886870bf35", + "name": "pyasn1-modules", + "requires": [], + "size": 42332, + "version": "0.0.8" + }, + "pyasn1-modules-0.0.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "pyasn1 >=0.1.8", + "python 3.4*" + ], + "license": "BSD", + "md5": "0b00cb4423b7db87ea4eb4ff9962e0db", + "name": "pyasn1-modules", + "requires": [], + "size": 44157, + "version": "0.0.8" + }, + "pyasn1-modules-0.0.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "pyasn1 >=0.1.8", + "python 3.5*" + ], + "license": "BSD", + "md5": "797cc8600004bec4c349c33157b3a87f", + "name": "pyasn1-modules", + "requires": [], + "size": 44144, + "version": "0.0.8" + }, + "pycairo-1.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "cairo", + "python 2.7*" + ], + "license": "LGPL 2.1, MPL 1.1", + "license_family": "LGPL", + "md5": "fad9b73e4e310fb1a2169d78452ce9ec", + "name": "pycairo", + "requires": [], + "size": 82669, + "version": "1.10.0" + }, + "pyclaw-1.0.dev-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "matplotlib", + "numpy 1.7*", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1c85466291c4dcae0616263cac7b8408", + "name": "pyclaw", + "requires": [], + "size": 596564, + "version": "1.0.dev" + }, + "pycosat-0.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "4b76b9f51d84caeb721926ec906d738f", + "name": "pycosat", + "requires": [], + "size": 144947, + "version": "0.2.0" + }, + "pycosat-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "061eb4d522208f0aeecef2c6f5f9e754", + "name": "pycosat", + "requires": [], + "size": 144801, + "version": "0.2.0" + }, + "pycosat-0.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "a61d678196a84b11bcce3a72cb31704f", + "name": "pycosat", + "requires": [], + "size": 145272, + "version": "0.2.0" + }, + "pycosat-0.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "231b092a9ddeaaf6127054ed51f470fa", + "name": "pycosat", + "requires": [], + "size": 148931, + "version": "0.3.0" + }, + "pycosat-0.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "6d1b3b1ca4d6b4f7f9457cd0c0ac9779", + "name": "pycosat", + "requires": [], + "size": 148814, + "version": "0.3.0" + }, + "pycosat-0.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "ad711d59dd973aa03523db5798152bbc", + "name": "pycosat", + "requires": [], + "size": 149151, + "version": "0.3.0" + }, + "pycosat-0.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "debc5582ad2d90f6af7f1ea038d3e59f", + "name": "pycosat", + "requires": [], + "size": 152123, + "version": "0.4.0" + }, + "pycosat-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "179ddd077176fdba91dd408436f32816", + "name": "pycosat", + "requires": [], + "size": 151959, + "version": "0.4.0" + }, + "pycosat-0.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "93a2849f8968bbda7107dfb65cb36ef6", + "name": "pycosat", + "requires": [], + "size": 152537, + "version": "0.4.0" + }, + "pycosat-0.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c2d68747475117257e4c563be3268ea1", + "name": "pycosat", + "requires": [], + "size": 154275, + "version": "0.4.1" + }, + "pycosat-0.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d7867e88fc56b06b1a7cffcafe2205f9", + "name": "pycosat", + "requires": [], + "size": 154172, + "version": "0.4.1" + }, + "pycosat-0.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "f5474c1e97c7e495b93967ede93ae776", + "name": "pycosat", + "requires": [], + "size": 154708, + "version": "0.4.1" + }, + "pycosat-0.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "b34f21a567364fe7504661f3c7d49c48", + "name": "pycosat", + "requires": [], + "size": 154809, + "version": "0.4.2" + }, + "pycosat-0.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "a0495736cba79e72f76a4c5d0dcd6b6e", + "name": "pycosat", + "requires": [], + "size": 154591, + "version": "0.4.2" + }, + "pycosat-0.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "377e5ffa5bded9dd865eae9c6728122b", + "name": "pycosat", + "requires": [], + "size": 155114, + "version": "0.4.2" + }, + "pycosat-0.5.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c114b0045efc6777d50da9286d6769ec", + "name": "pycosat", + "requires": [], + "size": 154954, + "version": "0.5.0" + }, + "pycosat-0.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d4e5e8915b5b2b02b31618662b0ef6f5", + "name": "pycosat", + "requires": [], + "size": 154846, + "version": "0.5.0" + }, + "pycosat-0.5.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "614a758e2c047dd558acf9cf863255f5", + "name": "pycosat", + "requires": [], + "size": 155307, + "version": "0.5.0" + }, + "pycosat-0.6.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "61229aed219f16d32e837214dc2ecfa3", + "name": "pycosat", + "requires": [], + "size": 152791, + "version": "0.6.0" + }, + "pycosat-0.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "495db698b86f94da736fc89b148f1fd8", + "name": "pycosat", + "requires": [], + "size": 152859, + "version": "0.6.0" + }, + "pycosat-0.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "ae8f2a3b454df3ff5a8d6126bca79d38", + "name": "pycosat", + "requires": [], + "size": 153202, + "version": "0.6.0" + }, + "pycosat-0.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "67f66cc924e7c1f6ca5f0d546a241002", + "name": "pycosat", + "requires": [], + "size": 153778, + "version": "0.6.0" + }, + "pycosat-0.6.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "a1a469e2b84420173fcabaff75276d10", + "name": "pycosat", + "requires": [], + "size": 155040, + "version": "0.6.1" + }, + "pycosat-0.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d3134c2384f1272e19dc0ef161166935", + "name": "pycosat", + "requires": [], + "size": 154913, + "version": "0.6.1" + }, + "pycosat-0.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "230837b932516b402ca0b1866d119895", + "name": "pycosat", + "requires": [], + "size": 155607, + "version": "0.6.1" + }, + "pycosat-0.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "4f1888e33c1ae6b4c88f5260a81decb9", + "name": "pycosat", + "requires": [], + "size": 155838, + "version": "0.6.1" + }, + "pycosat-0.6.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "772372fd337af1818cd11b225f41c269", + "name": "pycosat", + "requires": [], + "size": 160511, + "version": "0.6.1" + }, + "pycparser-2.10-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "feea0de3b6abb1aa5439f036c529bd71", + "name": "pycparser", + "requires": [], + "size": 147387, + "version": "2.10" + }, + "pycparser-2.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "5f28e5aad0d34c83856831ae676e7720", + "name": "pycparser", + "requires": [], + "size": 147791, + "version": "2.10" + }, + "pycparser-2.10-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a68ab52ae5de9ebe7ea592238fd3d5c5", + "name": "pycparser", + "requires": [], + "size": 150187, + "version": "2.10" + }, + "pycparser-2.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e286908e39ff244d6f4f1ce6118523ee", + "name": "pycparser", + "requires": [], + "size": 151834, + "version": "2.10" + }, + "pycparser-2.12-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a76acf0b3197038699869449d6ffce32", + "name": "pycparser", + "requires": [], + "size": 149955, + "version": "2.12" + }, + "pycparser-2.12-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "6310c6f05d1a2903749082b7571d6982", + "name": "pycparser", + "requires": [], + "size": 150068, + "version": "2.12" + }, + "pycparser-2.12-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "cdf11b2cc6577aa83f1af387faa5dfbe", + "name": "pycparser", + "requires": [], + "size": 152488, + "version": "2.12" + }, + "pycparser-2.12-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "6b51f9e5be4ac4e60c7083f952c79093", + "name": "pycparser", + "requires": [], + "size": 153947, + "version": "2.12" + }, + "pycparser-2.13-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "552618940cb80706f1469c532d62cb72", + "name": "pycparser", + "requires": [], + "size": 150290, + "version": "2.13" + }, + "pycparser-2.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "265a41f0b99ec273f02391f51f6d232c", + "name": "pycparser", + "requires": [], + "size": 150788, + "version": "2.13" + }, + "pycparser-2.13-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "6e2d792d1c193af56aec23637a1fb462", + "name": "pycparser", + "requires": [], + "size": 153084, + "version": "2.13" + }, + "pycparser-2.13-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "2e59c75839e420cd9d2a9c04c6798c61", + "name": "pycparser", + "requires": [], + "size": 154593, + "version": "2.13" + }, + "pycparser-2.14-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "abb1e37f2a1329eab5bfae0f2dfa777f", + "name": "pycparser", + "requires": [], + "size": 150747, + "version": "2.14" + }, + "pycparser-2.14-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d26bb4865939404b69625d866c4cacb6", + "name": "pycparser", + "requires": [], + "size": 150848, + "version": "2.14" + }, + "pycparser-2.14-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "4c8d5497800e9807679a4d7d46dc4698", + "name": "pycparser", + "requires": [], + "size": 153171, + "version": "2.14" + }, + "pycparser-2.14-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "89823cc1d4d1f26724cf52f01a61f2a5", + "name": "pycparser", + "requires": [], + "size": 154582, + "version": "2.14" + }, + "pycparser-2.14-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "a30af73cb59fb5fe01d577cde66ea05a", + "name": "pycparser", + "requires": [], + "size": 154096, + "version": "2.14" + }, + "pycparser-2.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "70f2eb1c8b8cbe32707846fe034419df", + "name": "pycparser", + "requires": [], + "size": 144106, + "version": "2.9.1" + }, + "pycparser-2.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3bcce204686b943277816010a8338f8e", + "name": "pycparser", + "requires": [], + "size": 144285, + "version": "2.9.1" + }, + "pycparser-2.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "31fa72c826d11097fd58245867e79204", + "name": "pycparser", + "requires": [], + "size": 146924, + "version": "2.9.1" + }, + "pycrypto-2.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain", + "md5": "962280318e8464efcafbf6905b17df68", + "name": "pycrypto", + "requires": [], + "size": 452575, + "version": "2.6" + }, + "pycrypto-2.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain", + "md5": "ad0adb364e71e1da37f04fdaca3e126d", + "name": "pycrypto", + "requires": [], + "size": 452162, + "version": "2.6" + }, + "pycrypto-2.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Public-Domain", + "md5": "f1d70176a133d25709185cc14b8b212e", + "name": "pycrypto", + "requires": [], + "size": 452014, + "version": "2.6" + }, + "pycrypto-2.6.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain", + "md5": "daca80d4a3b9c1610c412c19496c5c0a", + "name": "pycrypto", + "requires": [], + "size": 453106, + "version": "2.6.1" + }, + "pycrypto-2.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain", + "md5": "187a8b2e031ad49dc37b3def9fd7df82", + "name": "pycrypto", + "requires": [], + "size": 453763, + "version": "2.6.1" + }, + "pycrypto-2.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Public-Domain", + "md5": "a1e826b09850cf20a6e5ed07537cb7d6", + "name": "pycrypto", + "requires": [], + "size": 454546, + "version": "2.6.1" + }, + "pycrypto-2.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Public-Domain", + "md5": "a90612b093140f4be763ff37ffcd1285", + "name": "pycrypto", + "requires": [], + "size": 478809, + "version": "2.6.1" + }, + "pycrypto-2.6.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Public-Domain", + "md5": "2cc525d31a4e9d3351e77e556824e5e2", + "name": "pycrypto", + "requires": [], + "size": 484603, + "version": "2.6.1" + }, + "pycurl-7.19.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "f3d92177cbf20f31dc5456fa7b2eeac4", + "name": "pycurl", + "requires": [], + "size": 225416, + "version": "7.19.0" + }, + "pycurl-7.19.0-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "openssl 1.0.1*", + "python 2.6*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "88cc251f865c4f773210702a1b437673", + "name": "pycurl", + "requires": [], + "size": 81059, + "version": "7.19.0" + }, + "pycurl-7.19.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "e66eddb820b88bd6e9dc347c13eb77d3", + "name": "pycurl", + "requires": [], + "size": 225298, + "version": "7.19.0" + }, + "pycurl-7.19.0-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "openssl 1.0.1*", + "python 2.7*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "8b15a5c3e06987c2e7e02e05d879841d", + "name": "pycurl", + "requires": [], + "size": 81257, + "version": "7.19.0" + }, + "pycurl-7.19.3.1-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "openssl 1.0.1*", + "python 2.6*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "3822ac59158b30049764bd38738b4bcc", + "name": "pycurl", + "requires": [], + "size": 91211, + "version": "7.19.3.1" + }, + "pycurl-7.19.3.1-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "openssl 1.0.1*", + "python 2.7*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "5e1fdf9fd701a209017967d5d0590299", + "name": "pycurl", + "requires": [], + "size": 91529, + "version": "7.19.3.1" + }, + "pycurl-7.19.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "openssl 1.0.1*", + "python 2.6*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "6f0fb1e3b371c123e7cc5650e33beeb9", + "name": "pycurl", + "requires": [], + "size": 108060, + "version": "7.19.5" + }, + "pycurl-7.19.5-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-09-11", + "depends": [ + "curl 7.38.0", + "openssl 1.0.1*", + "python 2.6*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "e1ba65b781053207ca7915e760b8ec16", + "name": "pycurl", + "requires": [], + "size": 135576, + "version": "7.19.5" + }, + "pycurl-7.19.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "openssl 1.0.1*", + "python 2.7*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "a8b13af1450c4925864345dff9540c7c", + "name": "pycurl", + "requires": [], + "size": 108365, + "version": "7.19.5" + }, + "pycurl-7.19.5-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-09-11", + "depends": [ + "curl 7.38.0", + "openssl 1.0.1*", + "python 2.7*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "eef2f482684aa9379662b66b3af1fa5a", + "name": "pycurl", + "requires": [], + "size": 135149, + "version": "7.19.5" + }, + "pycurl-7.19.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "openssl 1.0.1*", + "python 3.3*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "3d186e2c31ba5854093cf9bbed8f5876", + "name": "pycurl", + "requires": [], + "size": 107858, + "version": "7.19.5" + }, + "pycurl-7.19.5-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-09-11", + "depends": [ + "curl 7.38.0", + "openssl 1.0.1*", + "python 3.3*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "058b0d50467b293b606a45fa74788b9f", + "name": "pycurl", + "requires": [], + "size": 109826, + "version": "7.19.5" + }, + "pycurl-7.19.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "curl 7.30.0", + "openssl 1.0.1*", + "python 3.4*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "f8382d0018e06b432ace2ac7d202b8bf", + "name": "pycurl", + "requires": [], + "size": 111094, + "version": "7.19.5" + }, + "pycurl-7.19.5-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-09-11", + "depends": [ + "curl 7.38.0", + "openssl 1.0.1*", + "python 3.4*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "4bb7c7649392aed05dc24981c34b031a", + "name": "pycurl", + "requires": [], + "size": 114429, + "version": "7.19.5" + }, + "pycurl-7.19.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "curl 7.38.0", + "openssl 1.0.1*", + "python 2.6*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "4140b51d175132dac223550afb071513", + "name": "pycurl", + "requires": [], + "size": 135118, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-06-10", + "depends": [ + "curl 7.42.1", + "openssl 1.0.1*", + "python 2.6*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "07e72e87b7974f89c20cdde5f0f18f10", + "name": "pycurl", + "requires": [], + "size": 135005, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2015-06-18", + "depends": [ + "curl 7.43.0", + "openssl 1.0.1*", + "python 2.6*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "5fabf83c1428378f9cf69f60f55d6438", + "name": "pycurl", + "requires": [], + "size": 135093, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "curl 7.38.0", + "openssl 1.0.1*", + "python 2.7*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "73b50c2fa537291122e9160cd05f779e", + "name": "pycurl", + "requires": [], + "size": 134710, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-06-10", + "depends": [ + "curl 7.42.1", + "openssl 1.0.1*", + "python 2.7*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "19a7ec3379989776cba77087b9c782ac", + "name": "pycurl", + "requires": [], + "size": 134693, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2015-06-18", + "depends": [ + "curl 7.43.0", + "openssl 1.0.1*", + "python 2.7*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "fb9c1988381ff555225ad5f2100b33fc", + "name": "pycurl", + "requires": [], + "size": 134683, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2015-10-20", + "depends": [ + "curl 7.45.0", + "openssl 1.0.2*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "3e37d6eec022502160b0836b22b46938", + "name": "pycurl", + "requires": [], + "size": 134708, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "curl 7.38.0", + "openssl 1.0.1*", + "python 3.3*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "388071f73a1d2b3be2b79b3aa413a96c", + "name": "pycurl", + "requires": [], + "size": 110210, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-06-10", + "depends": [ + "curl 7.42.1", + "openssl 1.0.1*", + "python 3.3*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "4bd07e2df41e8481986d3272345ca724", + "name": "pycurl", + "requires": [], + "size": 109942, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py33_2.tar.bz2": { + "build": "py33_2", + "build_number": 2, + "date": "2015-06-18", + "depends": [ + "curl 7.43.0", + "openssl 1.0.1*", + "python 3.3*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "eaf6a875e597ace85b5013e8d65fe496", + "name": "pycurl", + "requires": [], + "size": 109992, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-15", + "depends": [ + "curl 7.38.0", + "openssl 1.0.1*", + "python 3.4*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "737b5a01cac1085230598c37777cdacd", + "name": "pycurl", + "requires": [], + "size": 114700, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-06-10", + "depends": [ + "curl 7.42.1", + "openssl 1.0.1*", + "python 3.4*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "9fe5726e59bc56dafe6eff3fb85d91cf", + "name": "pycurl", + "requires": [], + "size": 114593, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2015-06-18", + "depends": [ + "curl 7.43.0", + "openssl 1.0.1*", + "python 3.4*", + "system 5.8", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "6bb0e40e09c648248da181a5a3d2bcef", + "name": "pycurl", + "requires": [], + "size": 114692, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py34_3.tar.bz2": { + "build": "py34_3", + "build_number": 3, + "date": "2015-10-20", + "depends": [ + "curl 7.45.0", + "openssl 1.0.2*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "c23b6ef580289e377827c01deb209cfe", + "name": "pycurl", + "requires": [], + "size": 114697, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py35_2.tar.bz2": { + "build": "py35_2", + "build_number": 2, + "date": "2015-09-10", + "depends": [ + "curl 7.43.0", + "openssl 1.0.1*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "1115671f40bae17dc2550aa688681595", + "name": "pycurl", + "requires": [], + "size": 115185, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.1-py35_3.tar.bz2": { + "build": "py35_3", + "build_number": 3, + "date": "2015-10-20", + "depends": [ + "curl 7.45.0", + "openssl 1.0.2*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "843006ab8119f8d183131e6e4a7dcb1c", + "name": "pycurl", + "requires": [], + "size": 115162, + "version": "7.19.5.1" + }, + "pycurl-7.19.5.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "curl 7.45.0", + "openssl 1.0.2*", + "python 2.7*", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "1b25da621bbd45925fe15f7dab05307e", + "name": "pycurl", + "requires": [], + "size": 131139, + "version": "7.19.5.3" + }, + "pycurl-7.19.5.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "curl 7.45.0", + "openssl 1.0.2*", + "python 3.4*", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "6cb118ab5851fe23d45cd3f7d83f72bb", + "name": "pycurl", + "requires": [], + "size": 116740, + "version": "7.19.5.3" + }, + "pycurl-7.19.5.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "curl 7.45.0", + "openssl 1.0.2*", + "python 3.5*", + "zlib 1.2*" + ], + "license": "LGPL, MIT", + "license_family": "LGPL", + "md5": "3aaaf60b2987fb968645e63a5278ed48", + "name": "pycurl", + "requires": [], + "size": 115111, + "version": "7.19.5.3" + }, + "pydot-1.0.28-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pyparsing 1.5.6", + "python 2.7*" + ], + "license": "MIT", + "md5": "2eed697bb991889a56b96611a4aeaf47", + "name": "pydot", + "requires": [], + "size": 35442, + "version": "1.0.28" + }, + "pydot-ng-1.0.0.15-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-09", + "depends": [ + "pyparsing", + "python 2.7*" + ], + "license": "MIT", + "md5": "8b81a344723e64ec3545b5f030caca47", + "name": "pydot-ng", + "requires": [], + "size": 46426, + "version": "1.0.0.15" + }, + "pydot-ng-1.0.0.15-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-09", + "depends": [ + "pyparsing", + "python 3.4*" + ], + "license": "MIT", + "md5": "13e3a10b45edfb38d91a51d6b3ccabc7", + "name": "pydot-ng", + "requires": [], + "size": 46985, + "version": "1.0.0.15" + }, + "pyface-4.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "traits 4.3.0" + ], + "license": "BSD", + "md5": "3f441276ee38a1c3e903797127f6c5f7", + "name": "pyface", + "requires": [], + "size": 708185, + "version": "4.3.0" + }, + "pyface-4.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "traits 4.4.0" + ], + "license": "BSD", + "md5": "21d6966da74f053b47978c8288aa47da", + "name": "pyface", + "requires": [], + "size": 710312, + "version": "4.4.0" + }, + "pyface-4.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "pygments", + "python 2.7*", + "traits 4.5.0" + ], + "license": "BSD", + "md5": "94ba992d27d92045edd8bb41ece38e6b", + "name": "pyface", + "requires": [], + "size": 775581, + "version": "4.5.2" + }, + "pyflakes-0.5.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "a0c2162566e810f63324c63d76b335e3", + "name": "pyflakes", + "requires": [], + "size": 29613, + "version": "0.5.0" + }, + "pyflakes-0.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "7118b44b1ddaa7944093eea8a887d093", + "name": "pyflakes", + "requires": [], + "size": 29510, + "version": "0.5.0" + }, + "pyflakes-0.6.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c371132008eaaf0955ed1282c226f6fb", + "name": "pyflakes", + "requires": [], + "size": 41965, + "version": "0.6.1" + }, + "pyflakes-0.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "76b60c050edde917f91cb60e63e860b5", + "name": "pyflakes", + "requires": [], + "size": 41896, + "version": "0.6.1" + }, + "pyflakes-0.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "1c125fb61580349fc67c319024600fb2", + "name": "pyflakes", + "requires": [], + "size": 44704, + "version": "0.6.1" + }, + "pyflakes-0.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "d8e8fa6f502ca82b66b482aaef5957ef", + "name": "pyflakes", + "requires": [], + "size": 46641, + "version": "0.7.0" + }, + "pyflakes-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ec95a19a62fc0460d76436fac711a7d1", + "name": "pyflakes", + "requires": [], + "size": 46595, + "version": "0.7.0" + }, + "pyflakes-0.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "07d68c76f6dfc64bbcca5879f0ad54b1", + "name": "pyflakes", + "requires": [], + "size": 49762, + "version": "0.7.0" + }, + "pyflakes-0.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "4d8a8edd4aa52dd0298339fbb4b404ce", + "name": "pyflakes", + "requires": [], + "size": 46797, + "version": "0.7.1" + }, + "pyflakes-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c77aa98bf818ccb2667246920643abf1", + "name": "pyflakes", + "requires": [], + "size": 46695, + "version": "0.7.1" + }, + "pyflakes-0.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "7f983be8f3423459b5dcf4a40a3a5eee", + "name": "pyflakes", + "requires": [], + "size": 49902, + "version": "0.7.1" + }, + "pyflakes-0.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "1ac0ae256c2d9d83eda2b3de76b58e02", + "name": "pyflakes", + "requires": [], + "size": 47433, + "version": "0.7.2" + }, + "pyflakes-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "dac0054ecbabe30432cd15fb2ffa0802", + "name": "pyflakes", + "requires": [], + "size": 47378, + "version": "0.7.2" + }, + "pyflakes-0.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "16a63ba1d4f7a77db3f049ee47b86dcb", + "name": "pyflakes", + "requires": [], + "size": 50460, + "version": "0.7.2" + }, + "pyflakes-0.7.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c63f9d7661c72a722f9c365fc39dcb25", + "name": "pyflakes", + "requires": [], + "size": 48196, + "version": "0.7.3" + }, + "pyflakes-0.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "1c5abe4debf4090ccaa442465dba335d", + "name": "pyflakes", + "requires": [], + "size": 48081, + "version": "0.7.3" + }, + "pyflakes-0.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "2e1d6c9a7b1f5020eed373954a7dbd11", + "name": "pyflakes", + "requires": [], + "size": 51326, + "version": "0.7.3" + }, + "pyflakes-0.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "fb2e54d5b60421416fb28dd6a3a3e6e6", + "name": "pyflakes", + "requires": [], + "size": 50304, + "version": "0.8" + }, + "pyflakes-0.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "6d421bdcea28039650a9d7acb046c49b", + "name": "pyflakes", + "requires": [], + "size": 50245, + "version": "0.8" + }, + "pyflakes-0.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "87f0fb0d20af329b5e2b0ca275c9af77", + "name": "pyflakes", + "requires": [], + "size": 53565, + "version": "0.8" + }, + "pyflakes-0.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "ab586c7e6c3c880faf13ae4b4a294c85", + "name": "pyflakes", + "requires": [], + "size": 51310, + "version": "0.8.1" + }, + "pyflakes-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "f4b41992c6658fb4c8eea12a59de99e8", + "name": "pyflakes", + "requires": [], + "size": 51216, + "version": "0.8.1" + }, + "pyflakes-0.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "026f6d9a122d88df158769a1cd664cff", + "name": "pyflakes", + "requires": [], + "size": 54488, + "version": "0.8.1" + }, + "pyflakes-0.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "8c9e7d11fa0db64c2c6e4ef85572f64c", + "name": "pyflakes", + "requires": [], + "size": 54146, + "version": "0.8.1" + }, + "pyflakes-0.9.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "b87686465c25347b326480297f99f3ad", + "name": "pyflakes", + "requires": [], + "size": 54062, + "version": "0.9.0" + }, + "pyflakes-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9f642b2188227e048e106c72963d747f", + "name": "pyflakes", + "requires": [], + "size": 54008, + "version": "0.9.0" + }, + "pyflakes-0.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "340d8b98d51de1dc2cc08eca8bae718d", + "name": "pyflakes", + "requires": [], + "size": 57479, + "version": "0.9.0" + }, + "pyflakes-0.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-02", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "503ca04ffd9207d6c41301f421c67937", + "name": "pyflakes", + "requires": [], + "size": 57108, + "version": "0.9.0" + }, + "pyflakes-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "cc9768fd905101dc401a01fb3a5441d7", + "name": "pyflakes", + "requires": [], + "size": 54112, + "version": "0.9.1" + }, + "pyflakes-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "a849f659593286d61559c28d278e829f", + "name": "pyflakes", + "requires": [], + "size": 54007, + "version": "0.9.1" + }, + "pyflakes-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "db604bb52ea09912dbc6f79ab914124f", + "name": "pyflakes", + "requires": [], + "size": 57479, + "version": "0.9.1" + }, + "pyflakes-0.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "b9d6a593ed00a55d78b1994d57ed02f4", + "name": "pyflakes", + "requires": [], + "size": 57109, + "version": "0.9.1" + }, + "pyflakes-0.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "77bfcbc0cff8a13ee627352ebd9cb8a4", + "name": "pyflakes", + "requires": [], + "size": 54192, + "version": "0.9.2" + }, + "pyflakes-0.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "94563b4d8972b6a2ae9b42ffaaef0d32", + "name": "pyflakes", + "requires": [], + "size": 54078, + "version": "0.9.2" + }, + "pyflakes-0.9.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "2a6512e490f1919ca52fd437fa260ffc", + "name": "pyflakes", + "requires": [], + "size": 57594, + "version": "0.9.2" + }, + "pyflakes-0.9.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "18e9f0413bf2fda407d98eebb9d8828f", + "name": "pyflakes", + "requires": [], + "size": 57213, + "version": "0.9.2" + }, + "pyflakes-0.9.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "3f960bb112c714723655049488df9d6d", + "name": "pyflakes", + "requires": [], + "size": 57099, + "version": "0.9.2" + }, + "pyflakes-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "bc68302d798b9c5199a48f9e8fe2598a", + "name": "pyflakes", + "requires": [], + "size": 54783, + "version": "1.0.0" + }, + "pyflakes-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "b6fcbe9e08c91a3b05b285f839538a9d", + "name": "pyflakes", + "requires": [], + "size": 58014, + "version": "1.0.0" + }, + "pyflakes-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "8935e2c919bc32e57cfdee3be844b249", + "name": "pyflakes", + "requires": [], + "size": 57921, + "version": "1.0.0" + }, + "pyflakes-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-01", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ffe5fb658424ee768580e81763264992", + "name": "pyflakes", + "requires": [], + "size": 66751, + "version": "1.1.0" + }, + "pyflakes-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-01", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "3a157554257c36b1a17348d9baf03c49", + "name": "pyflakes", + "requires": [], + "size": 70381, + "version": "1.1.0" + }, + "pyflakes-1.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-01", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "6525dd7203d70a336a4d96d540a6d754", + "name": "pyflakes", + "requires": [], + "size": 70223, + "version": "1.1.0" + }, + "pygments-1.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "1ce15e4bfd8eb62e1e8900d09bf2c698", + "name": "pygments", + "requires": [], + "size": 707123, + "version": "1.5" + }, + "pygments-1.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "fa93a6fb235f621508dd46b735fba5c9", + "name": "pygments", + "requires": [], + "size": 707446, + "version": "1.5" + }, + "pygments-1.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "afe8516577d4b0034efa70cd390b8664", + "name": "pygments", + "requires": [], + "size": 725796, + "version": "1.5" + }, + "pygments-1.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "079af6b7692309c8f21f4551a36ac409", + "name": "pygments", + "requires": [], + "size": 882014, + "version": "1.6" + }, + "pygments-1.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "dad0aabf6596a63cba719cf1a27f3ca7", + "name": "pygments", + "requires": [], + "size": 884501, + "version": "1.6" + }, + "pygments-1.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3fb8f90e732893332f783d9a528e8c17", + "name": "pygments", + "requires": [], + "size": 940461, + "version": "1.6" + }, + "pygments-1.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "42c36ae92b26516087c059b2c97051da", + "name": "pygments", + "requires": [], + "size": 960270, + "version": "1.6" + }, + "pygments-2.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "ccdb5891c487b05debcf020ec65b154f", + "name": "pygments", + "requires": [], + "size": 1081458, + "version": "2.0.1" + }, + "pygments-2.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2b980750b36726e8d475a98fec9e03e7", + "name": "pygments", + "requires": [], + "size": 1082010, + "version": "2.0.1" + }, + "pygments-2.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7896b9bd0ab0ce239a5c9895cb47b87c", + "name": "pygments", + "requires": [], + "size": 1167903, + "version": "2.0.1" + }, + "pygments-2.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "4eeb72161a091011d83a724bd79989c5", + "name": "pygments", + "requires": [], + "size": 1150288, + "version": "2.0.1" + }, + "pygments-2.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "70712f67e6f0db6ab1a5bd10989c1f4d", + "name": "pygments", + "requires": [], + "size": 1082675, + "version": "2.0.2" + }, + "pygments-2.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "93316c5948e4b0f86796019314c09d45", + "name": "pygments", + "requires": [], + "size": 1083882, + "version": "2.0.2" + }, + "pygments-2.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "acf7c5dcf64e5101b32528f2fe107a03", + "name": "pygments", + "requires": [], + "size": 1168174, + "version": "2.0.2" + }, + "pygments-2.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "db421b9ddb866951e52970e9cd9a6e13", + "name": "pygments", + "requires": [], + "size": 1150326, + "version": "2.0.2" + }, + "pygments-2.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "34fe5840ab1538f1bdd62aa1225fd4ec", + "name": "pygments", + "requires": [], + "size": 1151545, + "version": "2.0.2" + }, + "pygments-2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e0e6fbad7469a8c32283a20ed6639612", + "name": "pygments", + "requires": [], + "size": 1212745, + "version": "2.1" + }, + "pygments-2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "deb2e37f4adb6fb77d373b3571f16ea8", + "name": "pygments", + "requires": [], + "size": 1285834, + "version": "2.1" + }, + "pygments-2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "74ecc5473232dbcd4d4f6c5cd2eecb36", + "name": "pygments", + "requires": [], + "size": 1284338, + "version": "2.1" + }, + "pygments-2.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "afb89559c0caa3b53646a6791f52f0af", + "name": "pygments", + "requires": [], + "size": 1212006, + "version": "2.1.1" + }, + "pygments-2.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "cc6e99f724020ce8f54712cdd522fda8", + "name": "pygments", + "requires": [], + "size": 1289541, + "version": "2.1.1" + }, + "pygments-2.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "0495ebf90e20838a5ce2ea2b8e8a6e8b", + "name": "pygments", + "requires": [], + "size": 1286335, + "version": "2.1.1" + }, + "pykerberos-1.1.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "krb5", + "python 2.7*" + ], + "license": "Apache", + "md5": "aac707727e157f2a997f6917364478a0", + "name": "pykerberos", + "requires": [], + "size": 44017, + "version": "1.1.10" + }, + "pykerberos-1.1.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "krb5", + "python 3.4*" + ], + "license": "Apache", + "md5": "7550c31faf8e98fecaee5c864bda42ac", + "name": "pykerberos", + "requires": [], + "size": 43370, + "version": "1.1.10" + }, + "pykerberos-1.1.10-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "krb5", + "python 3.5*" + ], + "license": "Apache", + "md5": "6dcf1bdf99abad09b4bf24536b0cdaf7", + "name": "pykerberos", + "requires": [], + "size": 43488, + "version": "1.1.10" + }, + "pykit-0.1.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.7*", + "ply", + "pycparser", + "python 2.6*" + ], + "license_family": "BSD", + "md5": "8422cfcb68c6c86abfe35f3f08636e4b", + "name": "pykit", + "requires": [], + "size": 140762, + "version": "0.1.0" + }, + "pykit-0.1.0-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.7*", + "ply", + "pycparser", + "python 2.6*" + ], + "license_family": "BSD", + "md5": "479ad44f2ab7ff68fcd4230f85cdf511", + "name": "pykit", + "requires": [], + "size": 140806, + "version": "0.1.0" + }, + "pykit-0.1.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.7*", + "ply", + "pycparser", + "python 2.7*" + ], + "license_family": "BSD", + "md5": "856779f8a938348e14061311299dfc87", + "name": "pykit", + "requires": [], + "size": 140109, + "version": "0.1.0" + }, + "pykit-0.1.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.7*", + "ply", + "pycparser", + "python 2.7*" + ], + "license_family": "BSD", + "md5": "4ed16c6fd41cc416e9976d275f3a2c79", + "name": "pykit", + "requires": [], + "size": 140527, + "version": "0.1.0" + }, + "pykit-0.1.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.7*", + "ply", + "pycparser", + "python 3.3*" + ], + "license_family": "BSD", + "md5": "dd99675b0fdd70dc73e30f4305183c56", + "name": "pykit", + "requires": [], + "size": 146877, + "version": "0.1.0" + }, + "pykit-0.1.0-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.7*", + "ply", + "pycparser", + "python 3.3*" + ], + "license_family": "BSD", + "md5": "d79a51589c0c01c4e14dec085c0e16a0", + "name": "pykit", + "requires": [], + "size": 147165, + "version": "0.1.0" + }, + "pykit-0.1.0-np18py26_2.tar.bz2": { + "build": "np18py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.8*", + "ply", + "pycparser", + "python 2.6*" + ], + "license_family": "BSD", + "md5": "8d4cee4b409a2ec76ea3215b73b48f13", + "name": "pykit", + "requires": [], + "size": 140775, + "version": "0.1.0" + }, + "pykit-0.1.0-np18py27_2.tar.bz2": { + "build": "np18py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.8*", + "ply", + "pycparser", + "python 2.7*" + ], + "license_family": "BSD", + "md5": "4f5f83d74655ea09fae610ead99dcfd4", + "name": "pykit", + "requires": [], + "size": 140580, + "version": "0.1.0" + }, + "pykit-0.1.0-np18py33_2.tar.bz2": { + "build": "np18py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.8*", + "ply", + "pycparser", + "python 3.3*" + ], + "license_family": "BSD", + "md5": "e84c6e96ae5d5f2c9edf42ad20b75967", + "name": "pykit", + "requires": [], + "size": 146973, + "version": "0.1.0" + }, + "pykit-0.2.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.8*", + "ply", + "pycparser", + "python 2.6*" + ], + "license_family": "BSD", + "md5": "0c6798f05a9963014935fc9db4603991", + "name": "pykit", + "requires": [], + "size": 323100, + "version": "0.2.0" + }, + "pykit-0.2.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.8*", + "ply", + "pycparser", + "python 2.7*" + ], + "license_family": "BSD", + "md5": "7e03e391a5d598ef4329f739bc04447e", + "name": "pykit", + "requires": [], + "size": 323133, + "version": "0.2.0" + }, + "pykit-0.2.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.8*", + "ply", + "pycparser", + "python 3.3*" + ], + "license_family": "BSD", + "md5": "2aa6615f51c3c6466753973340d6941a", + "name": "pykit", + "requires": [], + "size": 339529, + "version": "0.2.0" + }, + "pykit-0.2.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "llvmpy", + "numpy 1.8*", + "ply", + "pycparser", + "python 3.4*" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "98b15fd3bcf939f45c38cf0a58d91647", + "name": "pykit", + "requires": [], + "size": 332279, + "version": "0.2.0" + }, + "pylint-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.0.1", + "python 2.6*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "80325d7ab25ea50a42ee5b4a44ea178d", + "name": "pylint", + "requires": [], + "size": 227900, + "version": "1.1.0" + }, + "pylint-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.0.1", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "fe25e2be3e067020bb3bf46a35c90a33", + "name": "pylint", + "requires": [], + "size": 228087, + "version": "1.1.0" + }, + "pylint-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.0.1", + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "50e57baa794478232d87edae469d7938", + "name": "pylint", + "requires": [], + "size": 228821, + "version": "1.1.0" + }, + "pylint-1.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.0.1", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "1284994fff4d621f0c897dc53a845cb2", + "name": "pylint", + "requires": [], + "size": 229682, + "version": "1.1.0" + }, + "pylint-1.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.1.0", + "python 2.6*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "b8774e1d6ec8275f085f04cbe7d55cec", + "name": "pylint", + "requires": [], + "size": 237098, + "version": "1.2.0" + }, + "pylint-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.1.0", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "7ca59806a8e572174b59a842ef961982", + "name": "pylint", + "requires": [], + "size": 237506, + "version": "1.2.0" + }, + "pylint-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.1.0", + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "da4acbf639d98379963d8382dcf8261c", + "name": "pylint", + "requires": [], + "size": 238102, + "version": "1.2.0" + }, + "pylint-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.1.0", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "b4af9786386dd1e64f77eb662ee51ad9", + "name": "pylint", + "requires": [], + "size": 239045, + "version": "1.2.0" + }, + "pylint-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.1.1", + "python 2.6*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "b3f46efccc222130886013d040236ff2", + "name": "pylint", + "requires": [], + "size": 246477, + "version": "1.2.1" + }, + "pylint-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.1.1", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "62e17c2cd22d2d6cce42b8866bdcff44", + "name": "pylint", + "requires": [], + "size": 246659, + "version": "1.2.1" + }, + "pylint-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.1.1", + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "f6c872deed3cdcbcbfce7a110cdb464f", + "name": "pylint", + "requires": [], + "size": 249016, + "version": "1.2.1" + }, + "pylint-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "astroid 1.1.1", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "a0619ba252ec19c4a69ebdc141c09d43", + "name": "pylint", + "requires": [], + "size": 248873, + "version": "1.2.1" + }, + "pylint-1.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "astroid 1.2.1", + "python 2.6*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "ec43d63898fd49acfb6e5b2b47e6dbcf", + "name": "pylint", + "requires": [], + "size": 265169, + "version": "1.3.1" + }, + "pylint-1.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "astroid 1.2.1", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "12b3f27b4bb8c0f17abd5b67e551ede7", + "name": "pylint", + "requires": [], + "size": 265755, + "version": "1.3.1" + }, + "pylint-1.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "astroid 1.2.1", + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "b06cd1d56ef5112f548ef90cf29dc66e", + "name": "pylint", + "requires": [], + "size": 270357, + "version": "1.3.1" + }, + "pylint-1.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "astroid 1.2.1", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "3e39b035de58e7f94f251a817707efd7", + "name": "pylint", + "requires": [], + "size": 268668, + "version": "1.3.1" + }, + "pylint-1.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "astroid 1.3.2", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "c896307f75b4961672a86d8c67c0c5ad", + "name": "pylint", + "requires": [], + "size": 295583, + "version": "1.4.0" + }, + "pylint-1.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "astroid 1.3.2", + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "63c7f96e51c7ad9c354fb86297e2c1d3", + "name": "pylint", + "requires": [], + "size": 302157, + "version": "1.4.0" + }, + "pylint-1.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-06", + "depends": [ + "astroid 1.3.2", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "350df5a9cb8fbb5d950b9c168fee5ff1", + "name": "pylint", + "requires": [], + "size": 298068, + "version": "1.4.0" + }, + "pylint-1.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "astroid 1.3.4", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "3416021f9ac18d0f0e1677679be4b976", + "name": "pylint", + "requires": [], + "size": 301921, + "version": "1.4.1" + }, + "pylint-1.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "astroid 1.3.4", + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "3c830d0f3ce0b14a257e6f7d41231f12", + "name": "pylint", + "requires": [], + "size": 309829, + "version": "1.4.1" + }, + "pylint-1.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "astroid 1.3.4", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "a3cece33f5c2f6f35dc2000fcec7a209", + "name": "pylint", + "requires": [], + "size": 305156, + "version": "1.4.1" + }, + "pylint-1.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "astroid 1.3.4", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "562fc35b0b44cd7a0acc1f30b0ff5b3c", + "name": "pylint", + "requires": [], + "size": 308328, + "version": "1.4.2" + }, + "pylint-1.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "astroid 1.3.4", + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "e97399bcbe675ddabccefd798c32e287", + "name": "pylint", + "requires": [], + "size": 316071, + "version": "1.4.2" + }, + "pylint-1.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-13", + "depends": [ + "astroid 1.3.4", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "45df6d6d180b081da8a37a862ff463cf", + "name": "pylint", + "requires": [], + "size": 310457, + "version": "1.4.2" + }, + "pylint-1.4.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "astroid 1.3.4", + "python 3.5*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "546b0927f879493c5323554db63eebf7", + "name": "pylint", + "requires": [], + "size": 308712, + "version": "1.4.2" + }, + "pylint-1.5.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "astroid 1.4.4", + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "6b37335d28a434b2639ae4d843853025", + "name": "pylint", + "requires": [], + "size": 406256, + "version": "1.5.4" + }, + "pylint-1.5.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "astroid 1.4.4", + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "bcf0eabfb8847f6eed5570cb1851884e", + "name": "pylint", + "requires": [], + "size": 414386, + "version": "1.5.4" + }, + "pylint-1.5.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "astroid 1.4.4", + "python 3.5*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "fc26f3794c796a10a001b4e13ee523c6", + "name": "pylint", + "requires": [], + "size": 412278, + "version": "1.5.4" + }, + "pymc-2.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "d24e43a93c52a31faeff17938bbb043e", + "name": "pymc", + "requires": [], + "size": 1297823, + "version": "2.2" + }, + "pymc-2.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "19382ac18a59bcda9232954a4ebc8a69", + "name": "pymc", + "requires": [], + "size": 1354830, + "version": "2.3" + }, + "pymc-2.3-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "46681651aaef106df23b2eef62f37218", + "name": "pymc", + "requires": [], + "size": 1356998, + "version": "2.3" + }, + "pymc-2.3.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "a1204f47ed0afc0fa24a4cf2cb650a32", + "name": "pymc", + "requires": [], + "size": 1364430, + "version": "2.3.2" + }, + "pymc-2.3.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "7841798ab0bacb7a80ed119e466b1c33", + "name": "pymc", + "requires": [], + "size": 1363098, + "version": "2.3.2" + }, + "pymc-2.3.3-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "aed55492664bca12693bcedcbcb76a04", + "name": "pymc", + "requires": [], + "size": 1373663, + "version": "2.3.3" + }, + "pymc-2.3.3-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "9147f528887a6bf9968e3a583de000f7", + "name": "pymc", + "requires": [], + "size": 1372855, + "version": "2.3.3" + }, + "pymc-2.3.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "83ec80e6bf3d8c85e214668fb6cda1bc", + "name": "pymc", + "requires": [], + "size": 1817771, + "version": "2.3.3" + }, + "pymc-2.3.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "2cf997231cc8afafb8506f2ba4367a4d", + "name": "pymc", + "requires": [], + "size": 1818354, + "version": "2.3.3" + }, + "pymc-2.3.4-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "77dfb7a0107b2ef598ffbbe59516cbff", + "name": "pymc", + "requires": [], + "size": 1818957, + "version": "2.3.4" + }, + "pymc-2.3.4-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "15c32bd3988c6dc5330ef2504a751285", + "name": "pymc", + "requires": [], + "size": 1818507, + "version": "2.3.4" + }, + "pymc-2.3.4-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "f5f9c8d70b7cf869d48052dd1b5f2c1b", + "name": "pymc", + "requires": [], + "size": 1789330, + "version": "2.3.4" + }, + "pymc-2.3.4-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "085285ee8edd9fb10ee3158d9d927b18", + "name": "pymc", + "requires": [], + "size": 1870752, + "version": "2.3.4" + }, + "pymc-2.3.4-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "bd8fb618508f0dac888a1dd866ddf4ae", + "name": "pymc", + "requires": [], + "size": 1179144, + "version": "2.3.4" + }, + "pymc-2.3.5-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "f64c4383204a878056437ab08fc5069a", + "name": "pymc", + "requires": [], + "size": 652157, + "version": "2.3.5" + }, + "pymc-2.3.5-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "978ac76e81144adffe8138e578ee49c7", + "name": "pymc", + "requires": [], + "size": 681027, + "version": "2.3.5" + }, + "pymc-2.3.5-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "dc37a30b923d2fcaa84ca8e199dd5f03", + "name": "pymc", + "requires": [], + "size": 680398, + "version": "2.3.5" + }, + "pymc-2.3.5-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "libgfortran 1.0", + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "dcf308ac8c46aff9557b0ef845abc90c", + "name": "pymc", + "requires": [], + "size": 1822449, + "version": "2.3.5" + }, + "pymc-2.3.5-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "libgfortran 1.0", + "numpy 1.9*", + "python 3.4*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "7d088936645d71804f72cd97af4f79f9", + "name": "pymc", + "requires": [], + "size": 1876373, + "version": "2.3.5" + }, + "pymc-2.3.5-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-22", + "depends": [ + "libgfortran 1.0", + "numpy 1.9*", + "python 3.5*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "13bd732554c82524870100237025ddbf", + "name": "pymc", + "requires": [], + "size": 1181859, + "version": "2.3.5" + }, + "pymc-2.3.6-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-18", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "bc4cfebe90521b3007a1c4074e7db881", + "name": "pymc", + "requires": [], + "size": 652048, + "version": "2.3.6" + }, + "pymc-2.3.6-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "16381c9e53b9565ae6dd2529c278652b", + "name": "pymc", + "requires": [], + "size": 1234538, + "version": "2.3.6" + }, + "pymc-2.3.6-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-18", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "720d2667b42333959d3fdc0ee6ca97a5", + "name": "pymc", + "requires": [], + "size": 680769, + "version": "2.3.6" + }, + "pymc-2.3.6-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "d2819cad35e038d9e379d3197e2b6aba", + "name": "pymc", + "requires": [], + "size": 1292240, + "version": "2.3.6" + }, + "pymc-2.3.6-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-18", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "cfa19e187c5dbf739c51a79fe8e274e3", + "name": "pymc", + "requires": [], + "size": 680133, + "version": "2.3.6" + }, + "pymc-2.3.6-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "Academic Free License", + "license_family": "Other", + "md5": "a97581d4088b9771cdb7548a63c458e4", + "name": "pymc", + "requires": [], + "size": 1289974, + "version": "2.3.6" + }, + "pymongo-2.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "21e1567897dfe2d05bd93038d42bd75c", + "name": "pymongo", + "requires": [], + "size": 285015, + "version": "2.7.2" + }, + "pymongo-2.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "2623f9e0fcf3851c1b2db60472ad37ed", + "name": "pymongo", + "requires": [], + "size": 285568, + "version": "2.7.2" + }, + "pymongo-2.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "5ee470df8e5f95b2fcb576f82ec03d6c", + "name": "pymongo", + "requires": [], + "size": 317399, + "version": "2.7.2" + }, + "pymongo-2.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "8b8738595e366c8a93f17005ec88158a", + "name": "pymongo", + "requires": [], + "size": 314814, + "version": "2.7.2" + }, + "pymongo-2.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-10", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "d7e49be0f2320fbf6d07a4635f2a7575", + "name": "pymongo", + "requires": [], + "size": 299154, + "version": "2.8" + }, + "pymongo-2.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-10", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "02c844037cfa3879f2f92caba4522d5e", + "name": "pymongo", + "requires": [], + "size": 299739, + "version": "2.8" + }, + "pymongo-2.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-10", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "efe6e95a8371cf237ffb0c460edda047", + "name": "pymongo", + "requires": [], + "size": 330331, + "version": "2.8" + }, + "pymongo-2.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-10", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "5c64923073b11f9d9e49e4042678b9b2", + "name": "pymongo", + "requires": [], + "size": 328355, + "version": "2.8" + }, + "pymongo-3.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "40c82dd5f411d2a46ca3ed0cc3fcd7f5", + "name": "pymongo", + "requires": [], + "size": 299471, + "version": "3.0.3" + }, + "pymongo-3.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "9f6a2760551c030fe795f6924d42d1c1", + "name": "pymongo", + "requires": [], + "size": 330972, + "version": "3.0.3" + }, + "pymongo-3.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "afe3eb5f1bf49455943a5630f0d44d8e", + "name": "pymongo", + "requires": [], + "size": 330541, + "version": "3.0.3" + }, + "pymysql-0.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-11", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "6a9cb8619089521d73d0b310b495a344", + "name": "pymysql", + "requires": [], + "size": 94406, + "version": "0.6.2" + }, + "pymysql-0.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-11", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "2cab0ad213495e2157eb02fe4e9c2339", + "name": "pymysql", + "requires": [], + "size": 97007, + "version": "0.6.2" + }, + "pymysql-0.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-11", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6210cd2868c70ee112a3f35ade0ec679", + "name": "pymysql", + "requires": [], + "size": 97765, + "version": "0.6.2" + }, + "pymysql-0.6.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "4bcf191d7ceffed74e8f013e077283b0", + "name": "pymysql", + "requires": [], + "size": 94821, + "version": "0.6.3" + }, + "pymysql-0.6.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "4f8a1032fdaad10aa28e42d2c02d246e", + "name": "pymysql", + "requires": [], + "size": 97366, + "version": "0.6.3" + }, + "pymysql-0.6.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "a5be3bf18fab37496b03bb6a8fd9d753", + "name": "pymysql", + "requires": [], + "size": 98113, + "version": "0.6.3" + }, + "pymysql-0.6.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5e7c6e96de1c48628df95106ca3da684", + "name": "pymysql", + "requires": [], + "size": 100172, + "version": "0.6.6" + }, + "pymysql-0.6.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "b48e44566d3b644efe331d380e46408e", + "name": "pymysql", + "requires": [], + "size": 102945, + "version": "0.6.6" + }, + "pymysql-0.6.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "b06318b00eb910bfb72e461ded016afd", + "name": "pymysql", + "requires": [], + "size": 103573, + "version": "0.6.6" + }, + "pymysql-0.6.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "b318b75bd6d3de79acd1160841a9200c", + "name": "pymysql", + "requires": [], + "size": 103649, + "version": "0.6.6" + }, + "pymysql-0.6.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "0d58e42f0facdf844d0911f336e7d88a", + "name": "pymysql", + "requires": [], + "size": 105235, + "version": "0.6.7" + }, + "pymysql-0.6.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "c638521930bc6767dc444d0eacfae0c5", + "name": "pymysql", + "requires": [], + "size": 109264, + "version": "0.6.7" + }, + "pymysql-0.6.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-12", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "5e5cc91b058ba9dfdc3a8e010c03226a", + "name": "pymysql", + "requires": [], + "size": 108716, + "version": "0.6.7" + }, + "pyodbc-3.0.10-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.6*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "838c8f3c65f6f1e737df5223e7e3b326", + "name": "pyodbc", + "requires": [], + "size": 149759, + "version": "3.0.10" + }, + "pyodbc-3.0.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.7*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "08dccf45b3c5004e4d60315e113f0093", + "name": "pyodbc", + "requires": [], + "size": 149900, + "version": "3.0.10" + }, + "pyodbc-3.0.10-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.3*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "6e5db0a1db820adc11224c7d107e3898", + "name": "pyodbc", + "requires": [], + "size": 144290, + "version": "3.0.10" + }, + "pyodbc-3.0.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.4*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "a633c263113c1e2bf26c246b11fc83dd", + "name": "pyodbc", + "requires": [], + "size": 149344, + "version": "3.0.10" + }, + "pyodbc-3.0.10-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "3a6e5fc4c915d4870321eb59123378a3", + "name": "pyodbc", + "requires": [], + "size": 149857, + "version": "3.0.10" + }, + "pyodbc-3.0.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "fc2058a0098b751ee50d90577e19c43d", + "name": "pyodbc", + "requires": [], + "size": 130968, + "version": "3.0.7" + }, + "pyodbc-3.0.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "1d1c231b2a4550b5bd025af93703d2e3", + "name": "pyodbc", + "requires": [], + "size": 131365, + "version": "3.0.7" + }, + "pyodbc-3.0.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "6923420d84bbb62d7c691ea2e42d568f", + "name": "pyodbc", + "requires": [], + "size": 126416, + "version": "3.0.7" + }, + "pyodbc-3.0.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "979250d76488f0a2f171727403769d64", + "name": "pyodbc", + "requires": [], + "size": 129906, + "version": "3.0.7" + }, + "pyodbc-3.0.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 2.6*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "96dceb504d809053ebee53a28ae6d2ef", + "name": "pyodbc", + "requires": [], + "size": 150260, + "version": "3.0.9" + }, + "pyodbc-3.0.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 2.7*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "87ce226a14b8cbbc665274153c350bef", + "name": "pyodbc", + "requires": [], + "size": 150484, + "version": "3.0.9" + }, + "pyodbc-3.0.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 3.3*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "7d156409103ca40d0dfa5a5625347b9c", + "name": "pyodbc", + "requires": [], + "size": 145069, + "version": "3.0.9" + }, + "pyodbc-3.0.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 3.4*", + "unixodbc 2.3.*" + ], + "license": "MIT", + "md5": "ef8d3c0029ac2a1a30feb8adc0b298c5", + "name": "pyodbc", + "requires": [], + "size": 150100, + "version": "3.0.9" + }, + "pyopengl-3.1.1a1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "freeglut 2.8.1", + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "ecbac76a5befa2ab3d30d2a6ad8b2c51", + "name": "pyopengl", + "requires": [], + "size": 1094382, + "version": "3.1.1a1" + }, + "pyopengl-3.1.1a1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "freeglut 2.8.1", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "0ca4d18d84d203b13e20c051fbe16a47", + "name": "pyopengl", + "requires": [], + "size": 1141839, + "version": "3.1.1a1" + }, + "pyopengl-3.1.1a1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "freeglut 2.8.1", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "afc726119c7cfb71227c79b283a24d92", + "name": "pyopengl", + "requires": [], + "size": 1140193, + "version": "3.1.1a1" + }, + "pyopengl-3.1.1a1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "b650138ba20600fe180cee962a5e42e8", + "name": "pyopengl", + "requires": [], + "size": 1097245, + "version": "3.1.1a1" + }, + "pyopengl-3.1.1a1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c2db1dbb91d63ad8093d48bab819dd14", + "name": "pyopengl", + "requires": [], + "size": 1096521, + "version": "3.1.1a1" + }, + "pyopengl-3.1.1a1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "2997f08216d2c912ea61c871b7dcdb19", + "name": "pyopengl", + "requires": [], + "size": 1202710, + "version": "3.1.1a1" + }, + "pyopengl-3.1.1a1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "2f914fe6b4e51e1ed833e143c89e3fea", + "name": "pyopengl", + "requires": [], + "size": 1146204, + "version": "3.1.1a1" + }, + "pyopengl-3.1.1a1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "45ae01c145892556023b4826b98ddb43", + "name": "pyopengl", + "requires": [], + "size": 1140044, + "version": "3.1.1a1" + }, + "pyopengl-accelerate-3.1.1a1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "freeglut 2.8.1", + "numpy 1.10*", + "pyopengl 3.1.1a1", + "python 2.7*" + ], + "license": "BSD", + "md5": "49e62c41f8a889e93693c11849122313", + "name": "pyopengl-accelerate", + "requires": [], + "size": 661834, + "version": "3.1.1a1" + }, + "pyopengl-accelerate-3.1.1a1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "freeglut 2.8.1", + "numpy 1.10*", + "pyopengl 3.1.1a1", + "python 3.4*" + ], + "license": "BSD", + "md5": "a08b2008f50aa827284484a8dc62045d", + "name": "pyopengl-accelerate", + "requires": [], + "size": 782120, + "version": "3.1.1a1" + }, + "pyopengl-accelerate-3.1.1a1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "freeglut 2.8.1", + "numpy 1.10*", + "pyopengl 3.1.1a1", + "python 3.5*" + ], + "license": "BSD", + "md5": "71121a37bbe93fe5442605399fc35713", + "name": "pyopengl-accelerate", + "requires": [], + "size": 783238, + "version": "3.1.1a1" + }, + "pyopengl-accelerate-3.1.1a1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "pyopengl 3.1.1a1", + "python 2.6*" + ], + "license": "BSD", + "md5": "1ffb8f8bbd71d4fd430866721c969de0", + "name": "pyopengl-accelerate", + "requires": [], + "size": 616820, + "version": "3.1.1a1" + }, + "pyopengl-accelerate-3.1.1a1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "pyopengl 3.1.1a1", + "python 2.7*" + ], + "license": "BSD", + "md5": "648abd44e22c8d594ab603e2f7d9ea3f", + "name": "pyopengl-accelerate", + "requires": [], + "size": 661798, + "version": "3.1.1a1" + }, + "pyopengl-accelerate-3.1.1a1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "pyopengl 3.1.1a1", + "python 3.3*" + ], + "license": "BSD", + "md5": "be68f894157a9836657cfe7f0904b24c", + "name": "pyopengl-accelerate", + "requires": [], + "size": 689557, + "version": "3.1.1a1" + }, + "pyopengl-accelerate-3.1.1a1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "pyopengl 3.1.1a1", + "python 3.4*" + ], + "license": "BSD", + "md5": "d0bcffbe42b6fa2d310a6767c6791480", + "name": "pyopengl-accelerate", + "requires": [], + "size": 782154, + "version": "3.1.1a1" + }, + "pyopengl-accelerate-3.1.1a1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "freeglut 2.8.1", + "numpy 1.9*", + "pyopengl 3.1.1a1", + "python 3.5*" + ], + "license": "BSD", + "md5": "0a2045ff77a74d4abb8350fa84388871", + "name": "pyopengl-accelerate", + "requires": [], + "size": 783215, + "version": "3.1.1a1" + }, + "pyopenssl-0.14-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cryptography", + "python 2.6*", + "six" + ], + "license": "Apache", + "md5": "61cedd04a3358edfbb77c5ca1137d692", + "name": "pyopenssl", + "requires": [], + "size": 125117, + "version": "0.14" + }, + "pyopenssl-0.14-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cryptography", + "python 2.7*", + "six" + ], + "license": "Apache", + "md5": "e5f5b14087792507a52b54e56e873d00", + "name": "pyopenssl", + "requires": [], + "size": 125263, + "version": "0.14" + }, + "pyopenssl-0.14-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cryptography", + "python 3.3*", + "six" + ], + "license": "Apache", + "md5": "eaf7bbbc395ee82faca1f910ad929649", + "name": "pyopenssl", + "requires": [], + "size": 129181, + "version": "0.14" + }, + "pyopenssl-0.14-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cryptography", + "python 3.4*", + "six" + ], + "license": "Apache", + "md5": "8d67f3086074e0a7fded88d63992974d", + "name": "pyopenssl", + "requires": [], + "size": 130294, + "version": "0.14" + }, + "pyopenssl-0.15.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "cryptography", + "python 2.6*", + "six" + ], + "license": "Apache", + "md5": "45e5d1da2cb4fe9e246485064c90d7fd", + "name": "pyopenssl", + "requires": [], + "size": 881957, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-06-19", + "depends": [ + "cryptography", + "python 2.6*", + "six" + ], + "license": "Apache", + "md5": "200203531121a3898c23724b52aa7652", + "name": "pyopenssl", + "requires": [], + "size": 938397, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "cryptography", + "python 2.7*", + "six" + ], + "license": "Apache", + "md5": "182c5557ca4b87c3c5bf7d8bfa181799", + "name": "pyopenssl", + "requires": [], + "size": 882765, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-06-19", + "depends": [ + "cryptography", + "python 2.7*", + "six" + ], + "license": "Apache", + "md5": "3ced619b21126f42b07fceaf7db4328c", + "name": "pyopenssl", + "requires": [], + "size": 938075, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2016-03-22", + "depends": [ + "cryptography", + "python 2.7*", + "six" + ], + "license": "Apache", + "md5": "8a5047e02b647ac53f82155d691268af", + "name": "pyopenssl", + "requires": [], + "size": 162654, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "cryptography", + "python 3.3*", + "six" + ], + "license": "Apache", + "md5": "77e8d04bfcbce275e2158765cf744f45", + "name": "pyopenssl", + "requires": [], + "size": 905564, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-06-19", + "depends": [ + "cryptography", + "python 3.3*", + "six" + ], + "license": "Apache", + "md5": "e6f8d5222dcd71eb1a47c8a0ef67ed25", + "name": "pyopenssl", + "requires": [], + "size": 970001, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "cryptography", + "python 3.4*", + "six" + ], + "license": "Apache", + "md5": "c161b31697359640d5e9a507a006f500", + "name": "pyopenssl", + "requires": [], + "size": 907036, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-06-19", + "depends": [ + "cryptography", + "python 3.4*", + "six" + ], + "license": "Apache", + "md5": "5814ddc2c3f596c038dd4beeeb85aa9d", + "name": "pyopenssl", + "requires": [], + "size": 965663, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2016-03-22", + "depends": [ + "cryptography", + "python 3.4*", + "six" + ], + "license": "Apache", + "md5": "2738175fdc98d047179b02f4ca9bcb26", + "name": "pyopenssl", + "requires": [], + "size": 164987, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "cryptography", + "python 3.5*", + "six" + ], + "license": "Apache", + "md5": "2b8c4d539c8eb3b2429406cec6d0ddc2", + "name": "pyopenssl", + "requires": [], + "size": 966243, + "version": "0.15.1" + }, + "pyopenssl-0.15.1-py35_2.tar.bz2": { + "build": "py35_2", + "build_number": 2, + "date": "2016-03-22", + "depends": [ + "cryptography", + "python 3.5*", + "six" + ], + "license": "Apache", + "md5": "cb87d24cb9154832980ca5a609a4a374", + "name": "pyopenssl", + "requires": [], + "size": 164836, + "version": "0.15.1" + }, + "pyparsing-1.5.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e2ba9b06dc22b7300f9992d50af61273", + "name": "pyparsing", + "requires": [], + "size": 62756, + "version": "1.5.6" + }, + "pyparsing-1.5.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "4d44cd9ba060f44eaf5f72d332763a9a", + "name": "pyparsing", + "requires": [], + "size": 62718, + "version": "1.5.6" + }, + "pyparsing-1.5.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "86655c1dafd9cfe0b94915cc1ade0bbe", + "name": "pyparsing", + "requires": [], + "size": 63411, + "version": "1.5.6" + }, + "pyparsing-2.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e3e61a5fd8043b23ae3804976a0a540f", + "name": "pyparsing", + "requires": [], + "size": 63426, + "version": "2.0.1" + }, + "pyparsing-2.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "7a7bab19efba1019b10041f801d66d2e", + "name": "pyparsing", + "requires": [], + "size": 63277, + "version": "2.0.1" + }, + "pyparsing-2.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "ae28c49bfc086115eca2b6a388453db1", + "name": "pyparsing", + "requires": [], + "size": 65878, + "version": "2.0.1" + }, + "pyparsing-2.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "1659dc5994e2c6114d139ac580a9a128", + "name": "pyparsing", + "requires": [], + "size": 65698, + "version": "2.0.1" + }, + "pyparsing-2.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "57751f73d102ac8d798ae9c91d3313ca", + "name": "pyparsing", + "requires": [], + "size": 65095, + "version": "2.0.3" + }, + "pyparsing-2.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "8d03a7aa1f1f8682f2dc3aab049185ee", + "name": "pyparsing", + "requires": [], + "size": 65020, + "version": "2.0.3" + }, + "pyparsing-2.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "3004724ddb7176b35493bff93077f685", + "name": "pyparsing", + "requires": [], + "size": 67689, + "version": "2.0.3" + }, + "pyparsing-2.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-18", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "f714501941063bf06b28b56bd1ad6244", + "name": "pyparsing", + "requires": [], + "size": 67546, + "version": "2.0.3" + }, + "pyparsing-2.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "71806a0c6ba51b914637fce194424184", + "name": "pyparsing", + "requires": [], + "size": 67154, + "version": "2.0.3" + }, + "pyproj-1.9.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-08-18", + "depends": [ + "proj.4 4.9.1", + "python 2.7*" + ], + "license": "MIT", + "md5": "fbe52110564ecbe56ea67036a050cc35", + "name": "pyproj", + "requires": [], + "size": 103662, + "version": "1.9.4" + }, + "pyproj-1.9.4-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-08-18", + "depends": [ + "proj.4 4.9.1", + "python 3.4*" + ], + "license": "MIT", + "md5": "1ea41fccd3aaea7327cb829db181c20c", + "name": "pyproj", + "requires": [], + "size": 110288, + "version": "1.9.4" + }, + "pyproj-1.9.4-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "proj.4 4.9.1", + "python 3.5*" + ], + "license": "MIT", + "md5": "8ac0d3be11f7f7c03ace84b89987280c", + "name": "pyproj", + "requires": [], + "size": 110477, + "version": "1.9.4" + }, + "pyqt-4.10.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "qt 4.8.5", + "sip 4.15.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "3ea0730cc02391bd07b0e34b5f8d14ed", + "name": "pyqt", + "requires": [], + "size": 4643647, + "version": "4.10.4" + }, + "pyqt-4.10.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "qt 4.8.5", + "sip 4.15.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "5e3885318163f34d040ef1da5851d51b", + "name": "pyqt", + "requires": [], + "size": 4644183, + "version": "4.10.4" + }, + "pyqt-4.10.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "qt 4.8.5", + "sip 4.15.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "d1860f5e4296f25ac1ca95290715601e", + "name": "pyqt", + "requires": [], + "size": 4603039, + "version": "4.10.4" + }, + "pyqt-4.10.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "qt 4.8.5", + "sip 4.15.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "c02ff6cc0c3a9ee54b691a743ffb5749", + "name": "pyqt", + "requires": [], + "size": 4602006, + "version": "4.10.4" + }, + "pyqt-4.11.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 2.6*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "9f5730cd84f84d1ed1c9c1fab50bade0", + "name": "pyqt", + "requires": [], + "size": 3704070, + "version": "4.11.3" + }, + "pyqt-4.11.3-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "python 2.6*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "c6726ee24a652a3a8d63f28eec688828", + "name": "pyqt", + "requires": [], + "size": 3704054, + "version": "4.11.3" + }, + "pyqt-4.11.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 2.7*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "e212f5a032d9f9e5d0c806101d668d39", + "name": "pyqt", + "requires": [], + "size": 3703648, + "version": "4.11.3" + }, + "pyqt-4.11.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "python 2.7*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "14b5f06798e8f02ff34ab902f624b999", + "name": "pyqt", + "requires": [], + "size": 3703045, + "version": "4.11.3" + }, + "pyqt-4.11.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 3.3*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "9c4238cb12141fccba8d4dc6395f46db", + "name": "pyqt", + "requires": [], + "size": 3693058, + "version": "4.11.3" + }, + "pyqt-4.11.3-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "python 3.3*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "fa3d39102c2104a8125fa76553c037fd", + "name": "pyqt", + "requires": [], + "size": 3692247, + "version": "4.11.3" + }, + "pyqt-4.11.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 3.4*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "4817461d82bdebb321aff0c1aa9bc994", + "name": "pyqt", + "requires": [], + "size": 3690946, + "version": "4.11.3" + }, + "pyqt-4.11.3-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "python 3.4*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "99627abb48f659ff6d846b52beac0ccf", + "name": "pyqt", + "requires": [], + "size": 3691623, + "version": "4.11.3" + }, + "pyqt-4.11.3-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "qt 4.8.6", + "sip 4.16.5" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "a31fcd0a772a845f79ad537f74b09379", + "name": "pyqt", + "requires": [], + "size": 3691423, + "version": "4.11.3" + }, + "pyqt-4.11.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 2.7*", + "qt >=4.8.6", + "sip >=4.16.4" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "5068696961d0338f365b1cdae444c3d3", + "name": "pyqt", + "requires": [], + "size": 3703219, + "version": "4.11.4" + }, + "pyqt-4.11.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-11-25", + "depends": [ + "python 2.7*", + "qt >=4.8.7", + "sip >=4.16.4" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "02fa86c3b5c6c2acf36f8860050729d4", + "name": "pyqt", + "requires": [], + "size": 3703286, + "version": "4.11.4" + }, + "pyqt-4.11.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 3.4*", + "qt >=4.8.6", + "sip >=4.16.4" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "39cfc9fdb5f87077f3fde18a5768cae4", + "name": "pyqt", + "requires": [], + "size": 3685342, + "version": "4.11.4" + }, + "pyqt-4.11.4-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-11-25", + "depends": [ + "python 3.4*", + "qt >=4.8.7", + "sip >=4.16.4" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "8a8e66772cf24f81275e3565eb68ecc5", + "name": "pyqt", + "requires": [], + "size": 3685477, + "version": "4.11.4" + }, + "pyqt-4.11.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 3.5*", + "qt >=4.8.6", + "sip >=4.16.4" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "778e35411fe3de22f5fbba3b106223b1", + "name": "pyqt", + "requires": [], + "size": 3685019, + "version": "4.11.4" + }, + "pyqt-4.11.4-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-11-25", + "depends": [ + "python 3.5*", + "qt >=4.8.7", + "sip >=4.16.4" + ], + "license": "Commercial, GPLv2, GPLv3", + "license_family": "GPL3", + "md5": "1e899776e42ab798a14cc78d8cbae4a9", + "name": "pyqt", + "requires": [], + "size": 3684648, + "version": "4.11.4" + }, + "pyqtgraph-0.9.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "numpy", + "pyopengl", + "pyqt", + "python 2.7*" + ], + "license": "MIT", + "md5": "2f793eb1ab2536083d0a6071abdae293", + "name": "pyqtgraph", + "requires": [], + "size": 884440, + "version": "0.9.10" + }, + "pyqtgraph-0.9.10-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-01-26", + "depends": [ + "numpy", + "pyqt", + "python 2.7*" + ], + "license": "MIT", + "md5": "2edf78761d889268901b285502261bdc", + "name": "pyqtgraph", + "requires": [], + "size": 884582, + "version": "0.9.10" + }, + "pyqtgraph-0.9.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "numpy", + "pyopengl", + "pyqt", + "python 3.4*" + ], + "license": "MIT", + "md5": "7a0fdb740e631f65f0d84630ab5d5b73", + "name": "pyqtgraph", + "requires": [], + "size": 915103, + "version": "0.9.10" + }, + "pyqtgraph-0.9.10-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-01-26", + "depends": [ + "numpy", + "pyqt", + "python 3.4*" + ], + "license": "MIT", + "md5": "e509559e371f2c28c1a9317ea9fa570f", + "name": "pyqtgraph", + "requires": [], + "size": 914342, + "version": "0.9.10" + }, + "pyqtgraph-0.9.10-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "numpy", + "pyopengl", + "pyqt", + "python 3.5*" + ], + "license": "MIT", + "md5": "ee4fe7917647e9fd3df47ee5ae9cbb13", + "name": "pyqtgraph", + "requires": [], + "size": 911212, + "version": "0.9.10" + }, + "pyqtgraph-0.9.10-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-01-26", + "depends": [ + "numpy", + "pyqt", + "python 3.5*" + ], + "license": "MIT", + "md5": "f7d88a1c6147964e1f75fbde4c7b8b0c", + "name": "pyqtgraph", + "requires": [], + "size": 910449, + "version": "0.9.10" + }, + "pyramid-1.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "pastedeploy 1.5.2", + "python 2.6*", + "repoze.lru 0.6", + "translationstring 1.1", + "venusian 1.0", + "webob 1.4", + "zope.deprecation 4.1.1", + "zope.interface 4.1.1" + ], + "license": "BSD", + "md5": "997e05da3620794482939907156cb74e", + "name": "pyramid", + "requires": [], + "size": 686353, + "version": "1.5.1" + }, + "pyramid-1.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "pastedeploy 1.5.2", + "python 2.7*", + "repoze.lru 0.6", + "translationstring 1.1", + "venusian 1.0", + "webob 1.4", + "zope.deprecation 4.1.1", + "zope.interface 4.1.1" + ], + "license": "BSD", + "md5": "bfcfeda5af11f55e9ca41c16f67c12fd", + "name": "pyramid", + "requires": [], + "size": 685286, + "version": "1.5.1" + }, + "pyramid-1.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "pastedeploy 1.5.2", + "python 3.3*", + "repoze.lru 0.6", + "translationstring 1.1", + "venusian 1.0", + "webob 1.4", + "zope.deprecation 4.1.1", + "zope.interface 4.1.1" + ], + "license": "BSD", + "md5": "feed8daab4337e77d970a0305ed64797", + "name": "pyramid", + "requires": [], + "size": 755517, + "version": "1.5.1" + }, + "pyramid-1.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "pastedeploy 1.5.2", + "python 3.4*", + "repoze.lru 0.6", + "translationstring 1.1", + "venusian 1.0", + "webob 1.4", + "zope.deprecation 4.1.1", + "zope.interface 4.1.1" + ], + "license": "BSD", + "md5": "8566c9f472087f9a7a0bc1ccc75b6f76", + "name": "pyramid", + "requires": [], + "size": 745262, + "version": "1.5.1" + }, + "pyramid-1.5.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-17", + "depends": [ + "pastedeploy 1.5.2", + "python 2.6*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4", + "zope.deprecation 4.1.1", + "zope.interface 4.1.1" + ], + "license": "BSD", + "md5": "0ecf7b626a9ff8e6a2d1161e303de0ea", + "name": "pyramid", + "requires": [], + "size": 696133, + "version": "1.5.2" + }, + "pyramid-1.5.2-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-07-29", + "depends": [ + "pastedeploy 1.5.2", + "python 2.6*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4.1", + "zope.deprecation 4.1.2", + "zope.interface 4.1.2" + ], + "license": "BSD", + "md5": "ae01b48d5c3d397d2d1564bba6d4823a", + "name": "pyramid", + "requires": [], + "size": 704066, + "version": "1.5.2" + }, + "pyramid-1.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-17", + "depends": [ + "pastedeploy 1.5.2", + "python 2.7*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4", + "zope.deprecation 4.1.1", + "zope.interface 4.1.1" + ], + "license": "BSD", + "md5": "c0cb1749e20820b7a1d43a4e946ef2ef", + "name": "pyramid", + "requires": [], + "size": 696076, + "version": "1.5.2" + }, + "pyramid-1.5.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-07-29", + "depends": [ + "pastedeploy 1.5.2", + "python 2.7*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4.1", + "zope.deprecation 4.1.2", + "zope.interface 4.1.2" + ], + "license": "BSD", + "md5": "ed7e1110601cc0d9507ce0d7c249e97d", + "name": "pyramid", + "requires": [], + "size": 703571, + "version": "1.5.2" + }, + "pyramid-1.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-17", + "depends": [ + "pastedeploy 1.5.2", + "python 3.3*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4", + "zope.deprecation 4.1.1", + "zope.interface 4.1.1" + ], + "license": "BSD", + "md5": "176d0dab5f70b253db1df80efd584127", + "name": "pyramid", + "requires": [], + "size": 763407, + "version": "1.5.2" + }, + "pyramid-1.5.2-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-07-29", + "depends": [ + "pastedeploy 1.5.2", + "python 3.3*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4.1", + "zope.deprecation 4.1.2", + "zope.interface 4.1.2" + ], + "license": "BSD", + "md5": "ced413578bfee5598f7e0a5b871fa07c", + "name": "pyramid", + "requires": [], + "size": 770790, + "version": "1.5.2" + }, + "pyramid-1.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-17", + "depends": [ + "pastedeploy 1.5.2", + "python 3.4*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4", + "zope.deprecation 4.1.1", + "zope.interface 4.1.1" + ], + "license": "BSD", + "md5": "dbd36622d3f7b512db7a5454ecfddf20", + "name": "pyramid", + "requires": [], + "size": 755079, + "version": "1.5.2" + }, + "pyramid-1.5.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-07-29", + "depends": [ + "pastedeploy 1.5.2", + "python 3.4*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4.1", + "zope.deprecation 4.1.2", + "zope.interface 4.1.2" + ], + "license": "BSD", + "md5": "d29e9efd51ffc770c8a535654320ddcc", + "name": "pyramid", + "requires": [], + "size": 760871, + "version": "1.5.2" + }, + "pyramid-1.5.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "pastedeploy 1.5.2", + "python 2.7*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4.1", + "zope.deprecation 4.1.2", + "zope.interface 4.1.2" + ], + "license": "BSD", + "md5": "10f35fbde79c55e11b70da3e2b6943db", + "name": "pyramid", + "requires": [], + "size": 713966, + "version": "1.5.7" + }, + "pyramid-1.5.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "pastedeploy 1.5.2", + "python 3.4*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4.1", + "zope.deprecation 4.1.2", + "zope.interface 4.1.2" + ], + "license": "BSD", + "md5": "3004961f137b5434f0c67ba4223d819e", + "name": "pyramid", + "requires": [], + "size": 771336, + "version": "1.5.7" + }, + "pyramid-1.5.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pastedeploy 1.5.2", + "python 3.5*", + "repoze.lru 0.6", + "translationstring 1.3", + "venusian 1.0", + "webob 1.4.1", + "zope.deprecation 4.1.2", + "zope.interface 4.1.2" + ], + "license": "BSD", + "md5": "f7ada2ae12d98d133444d81297967543", + "name": "pyramid", + "requires": [], + "size": 769265, + "version": "1.5.7" + }, + "pyramid_chameleon-0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "chameleon 2.22", + "pyramid 1.5.7", + "python 2.7*" + ], + "license": "BSD", + "md5": "893ff0bed1e8cd6856d17d720842d467", + "name": "pyramid_chameleon", + "requires": [], + "size": 16771, + "version": "0.3" + }, + "pyramid_chameleon-0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "chameleon 2.22", + "pyramid 1.5.7", + "python 3.4*" + ], + "license": "BSD", + "md5": "753225198f30faa8fe452b22be3ed810", + "name": "pyramid_chameleon", + "requires": [], + "size": 17588, + "version": "0.3" + }, + "pyramid_chameleon-0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "chameleon 2.22", + "pyramid 1.5.7", + "python 3.5*" + ], + "license": "BSD", + "md5": "867dc7da486a0f0548dbb6453bd18132", + "name": "pyramid_chameleon", + "requires": [], + "size": 17578, + "version": "0.3" + }, + "pyramid_debugtoolbar-2.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "pygments", + "pyramid 1.5.7", + "pyramid_mako 1.0.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "5846b6b33eae771c5339f4b7bc0d3994", + "name": "pyramid_debugtoolbar", + "requires": [], + "size": 445462, + "version": "2.4" + }, + "pyramid_debugtoolbar-2.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "pygments", + "pyramid 1.5.7", + "pyramid_mako 1.0.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "20a89da65eb7be90ca18077a69a1484b", + "name": "pyramid_debugtoolbar", + "requires": [], + "size": 446421, + "version": "2.4" + }, + "pyramid_debugtoolbar-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "pygments", + "pyramid 1.5.7", + "pyramid_mako 1.0.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "4059c49e03a63b7a76636018fb241109", + "name": "pyramid_debugtoolbar", + "requires": [], + "size": 445172, + "version": "2.4.1" + }, + "pyramid_debugtoolbar-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "pygments", + "pyramid 1.5.7", + "pyramid_mako 1.0.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "4cc5ac6a7c38c257ad588ff8ace19136", + "name": "pyramid_debugtoolbar", + "requires": [], + "size": 446230, + "version": "2.4.1" + }, + "pyramid_debugtoolbar-2.4.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pygments", + "pyramid 1.5.7", + "pyramid_mako 1.0.2", + "python 3.5*" + ], + "license": "BSD", + "md5": "50005d9842fddcef29585e999282134d", + "name": "pyramid_debugtoolbar", + "requires": [], + "size": 446020, + "version": "2.4.1" + }, + "pyramid_jinja2-2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "jinja2", + "markupsafe", + "pyramid 1.5.7", + "python 2.7*", + "zope.deprecation 4.1.2" + ], + "license": "BSD", + "md5": "5f21145b0ac24a717222b185c7267ddf", + "name": "pyramid_jinja2", + "requires": [], + "size": 767519, + "version": "2.5" + }, + "pyramid_jinja2-2.5-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-08-07", + "depends": [ + "jinja2", + "markupsafe", + "pyramid 1.5.7", + "python 2.7*", + "zope.deprecation 4.1.2" + ], + "license": "BSD", + "md5": "656ac7d3700abdd6f6aa7e5ec81e7b09", + "name": "pyramid_jinja2", + "requires": [], + "size": 59384, + "version": "2.5" + }, + "pyramid_jinja2-2.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "jinja2", + "markupsafe", + "pyramid 1.5.7", + "python 3.4*", + "zope.deprecation 4.1.2" + ], + "license": "BSD", + "md5": "bf68c8ca09451216e261c489eacd1b4a", + "name": "pyramid_jinja2", + "requires": [], + "size": 825780, + "version": "2.5" + }, + "pyramid_jinja2-2.5-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-08-07", + "depends": [ + "jinja2", + "markupsafe", + "pyramid 1.5.7", + "python 3.4*", + "zope.deprecation 4.1.2" + ], + "license": "BSD", + "md5": "195b84ecc7b794a2b890a90ef7afb2e4", + "name": "pyramid_jinja2", + "requires": [], + "size": 61289, + "version": "2.5" + }, + "pyramid_jinja2-2.5-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "jinja2", + "markupsafe", + "pyramid 1.5.7", + "python 3.5*", + "zope.deprecation 4.1.2" + ], + "license": "BSD", + "md5": "cbc241c8a0e7267108d4fea61fc843d5", + "name": "pyramid_jinja2", + "requires": [], + "size": 61172, + "version": "2.5" + }, + "pyramid_mako-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "mako 1.0.1", + "pyramid 1.5.7", + "python 2.7*" + ], + "license": "BSD", + "md5": "fb9400704810b47d157ef958ed6c3d81", + "name": "pyramid_mako", + "requires": [], + "size": 16951, + "version": "1.0.2" + }, + "pyramid_mako-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-10", + "depends": [ + "mako 1.0.1", + "pyramid 1.5.7", + "python 3.4*" + ], + "license": "BSD", + "md5": "b3bc21d842bf7c6b27ee279e854a116a", + "name": "pyramid_mako", + "requires": [], + "size": 17788, + "version": "1.0.2" + }, + "pyramid_mako-1.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "mako 1.0.2", + "pyramid 1.5.7", + "python 3.5*" + ], + "license": "BSD", + "md5": "b3839d403ff52d380845e941dae74925", + "name": "pyramid_mako", + "requires": [], + "size": 17741, + "version": "1.0.2" + }, + "pyramid_tm-0.12-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "pyramid 1.5.7", + "python 2.7*", + "transaction 1.4.4" + ], + "license": "BSD", + "md5": "c8f0cb759585041572719e71d5f02381", + "name": "pyramid_tm", + "requires": [], + "size": 15325, + "version": "0.12" + }, + "pyramid_tm-0.12-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "pyramid 1.5.7", + "python 3.4*", + "transaction 1.4.4" + ], + "license": "BSD", + "md5": "ff7e0d16bbad1c4f3957cf47163fc8fa", + "name": "pyramid_tm", + "requires": [], + "size": 16093, + "version": "0.12" + }, + "pyramid_tm-0.12-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pyramid 1.5.7", + "python 3.5*", + "transaction 1.4.4" + ], + "license": "BSD", + "md5": "d9e60f60d4cc013ce4028a8268fc4a3f", + "name": "pyramid_tm", + "requires": [], + "size": 16082, + "version": "0.12" + }, + "pysal-1.10.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "25f7daa271f226ccd1eb74baaee80782", + "name": "pysal", + "requires": [], + "size": 11620795, + "version": "1.10.0" + }, + "pysal-1.10.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-08-04", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "bc9ba812063a605f53c4e8099d154af4", + "name": "pysal", + "requires": [], + "size": 11618453, + "version": "1.10.0" + }, + "pysal-1.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-01", + "depends": [ + "numpy", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b89bc83b4b32453ac04217a4080f7d4f", + "name": "pysal", + "requires": [], + "size": 11644555, + "version": "1.11.0" + }, + "pysal-1.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-01", + "depends": [ + "numpy", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b8dd8fb70cc7b39cfee99f94b8c45670", + "name": "pysal", + "requires": [], + "size": 11717357, + "version": "1.11.0" + }, + "pysal-1.11.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-01", + "depends": [ + "numpy", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "58c370a50d7af8ff76a7d550323b8ae0", + "name": "pysal", + "requires": [], + "size": 11708986, + "version": "1.11.0" + }, + "pysal-1.4.0-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3c34279fba45875299e2c891da5ca064", + "name": "pysal", + "requires": [], + "size": 501225, + "version": "1.4.0" + }, + "pysal-1.4.0-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3286566a576c58e0736ccd6d6cab9b09", + "name": "pysal", + "requires": [], + "size": 499032, + "version": "1.4.0" + }, + "pysal-1.4.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6a1087f14bc912b904ed768779fefdfc", + "name": "pysal", + "requires": [], + "size": 501085, + "version": "1.4.0" + }, + "pysal-1.4.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "601968235c2b1d1fb3dfda9bf01c905a", + "name": "pysal", + "requires": [], + "size": 499103, + "version": "1.4.0" + }, + "pysal-1.4.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e0164a0771f7f69edc35a0df7eecc947", + "name": "pysal", + "requires": [], + "size": 500960, + "version": "1.4.0" + }, + "pysal-1.4.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "da7202fcf35bf1aa55135094bcf3a6f6", + "name": "pysal", + "requires": [], + "size": 498984, + "version": "1.4.0" + }, + "pysal-1.5.0-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2970011e2ee406b67ebcac403fe46e8b", + "name": "pysal", + "requires": [], + "size": 3346317, + "version": "1.5.0" + }, + "pysal-1.5.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3c79df2fb977bfce8ca1f9166c0cce79", + "name": "pysal", + "requires": [], + "size": 3346805, + "version": "1.5.0" + }, + "pysal-1.5.0-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "90becc6f26a9989ea85d7c12b12cb051", + "name": "pysal", + "requires": [], + "size": 3345805, + "version": "1.5.0" + }, + "pysal-1.5.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "53ed3a44260fe3a472835d96ead8e037", + "name": "pysal", + "requires": [], + "size": 3346776, + "version": "1.5.0" + }, + "pysal-1.5.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0c55503d4a75e2a7a5f92cdf306c4b2a", + "name": "pysal", + "requires": [], + "size": 3346137, + "version": "1.5.0" + }, + "pysal-1.6.0-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e08d623342520da766172c62240cc815", + "name": "pysal", + "requires": [], + "size": 3349744, + "version": "1.6.0" + }, + "pysal-1.6.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "fdabe85a48e350980a87e863cd3a57a8", + "name": "pysal", + "requires": [], + "size": 3350864, + "version": "1.6.0" + }, + "pysal-1.6.0-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6cde320fb16a172d8c5707cab239c203", + "name": "pysal", + "requires": [], + "size": 3351183, + "version": "1.6.0" + }, + "pysal-1.6.0-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a5ede2e645229b6b80e65a7568b08b12", + "name": "pysal", + "requires": [], + "size": 3352053, + "version": "1.6.0" + }, + "pysam-0.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "2a2fb50eee7b60a87382f4007fd4ee9e", + "name": "pysam", + "requires": [], + "size": 1744966, + "version": "0.6" + }, + "pysam-0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "b83fb7b8057bf0b3b76c32b7a2058e3e", + "name": "pysam", + "requires": [], + "size": 1745006, + "version": "0.6" + }, + "pyserial-2.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-29", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "64bf008d0e2107c7a9d5080e06e3f970", + "name": "pyserial", + "requires": [], + "size": 90065, + "version": "2.7" + }, + "pyserial-2.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-29", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "8af39282779d5c810e8177632082f396", + "name": "pyserial", + "requires": [], + "size": 90814, + "version": "2.7" + }, + "pyserial-2.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-29", + "depends": [ + "python 3.3*" + ], + "license": "PSF", + "md5": "9b255361c79606beb900e02f86b25b37", + "name": "pyserial", + "requires": [], + "size": 92446, + "version": "2.7" + }, + "pyserial-2.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-29", + "depends": [ + "python 3.4*" + ], + "license": "PSF", + "md5": "d8277a4c925d6b054f561e78b2b86341", + "name": "pyserial", + "requires": [], + "size": 93208, + "version": "2.7" + }, + "pyserial-2.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "PSF", + "md5": "ea17dfaff9beedc21c339a0d12996d39", + "name": "pyserial", + "requires": [], + "size": 92365, + "version": "2.7" + }, + "pyside-1.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libpng", + "python 2.6*", + "qt", + "shiboken" + ], + "license_family": "LGPL", + "md5": "da11553aa0e235ed55733551f1f39c6a", + "name": "pyside", + "requires": [], + "size": 5741148, + "version": "1.1.2" + }, + "pyside-1.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libpng", + "python 2.7*", + "qt", + "shiboken" + ], + "license_family": "LGPL", + "md5": "1e400aac3c8e17b098c647ce9c03a3f5", + "name": "pyside", + "requires": [], + "size": 5742238, + "version": "1.1.2" + }, + "pyside-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libpng", + "python 2.7*", + "qt", + "shiboken" + ], + "license_family": "LGPL", + "md5": "dd9404d64c68bd50466bf5f83527a3e5", + "name": "pyside", + "requires": [], + "size": 5904139, + "version": "1.2.0" + }, + "pyside-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libpng", + "python 2.7*", + "qt", + "shiboken" + ], + "license_family": "LGPL", + "md5": "76b6b310012e9d28735b156d177b849f", + "name": "pyside", + "requires": [], + "size": 5907402, + "version": "1.2.1" + }, + "pyside-1.2.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "libpng", + "python 2.7*", + "qt", + "shiboken" + ], + "license_family": "LGPL", + "md5": "22ef3322d94a23b1253ba2e11e001c42", + "name": "pyside", + "requires": [], + "size": 5939953, + "version": "1.2.1" + }, + "pysnmp-4.2.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "pyasn1 0.1.7", + "pycrypto 2.6.1", + "python 2.6*" + ], + "license": "BSD (http://pysnmp.sourceforge.net/license.html)", + "license_family": "BSD", + "md5": "c8ca92f3764d7b3ec7896e00798375d4", + "name": "pysnmp", + "requires": [], + "size": 221086, + "version": "4.2.5" + }, + "pysnmp-4.2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "pyasn1 0.1.7", + "pycrypto 2.6.1", + "python 2.7*" + ], + "license": "BSD (http://pysnmp.sourceforge.net/license.html)", + "license_family": "BSD", + "md5": "feed40969dc36814be54ab83052c6db0", + "name": "pysnmp", + "requires": [], + "size": 222605, + "version": "4.2.5" + }, + "pysnmp-4.2.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "pyasn1 0.1.7", + "pycrypto 2.6.1", + "python 3.3*" + ], + "license": "BSD (http://pysnmp.sourceforge.net/license.html)", + "license_family": "BSD", + "md5": "ccba6e7e0a6d87a467baf5c9bf038a15", + "name": "pysnmp", + "requires": [], + "size": 230994, + "version": "4.2.5" + }, + "pysnmp-4.2.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "pyasn1 0.1.7", + "pycrypto 2.6.1", + "python 3.4*" + ], + "license": "BSD (http://pysnmp.sourceforge.net/license.html)", + "license_family": "BSD", + "md5": "c5946a8903289924fdc12e283e9a8077", + "name": "pysnmp", + "requires": [], + "size": 234263, + "version": "4.2.5" + }, + "pysnmp-4.2.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pyasn1 0.1.7", + "pycrypto 2.6.1", + "python 3.5*" + ], + "license": "BSD (http://pysnmp.sourceforge.net/license.html)", + "license_family": "BSD", + "md5": "3b16f018640b59ca143b8dac13e07e82", + "name": "pysnmp", + "requires": [], + "size": 233344, + "version": "4.2.5" + }, + "pystan-2.6.3.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "cython 0.22", + "numpy 1.9*", + "python 2.7*" + ], + "license": "GPL3", + "md5": "5172d5899524eed9bd3c090883e82c4d", + "name": "pystan", + "requires": [], + "size": 25502087, + "version": "2.6.3.0" + }, + "pystan-2.6.3.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "cython 0.22", + "numpy 1.9*", + "python 3.3*" + ], + "license": "GPL3", + "md5": "a5c023a5eab5bf888993da3a2fdf6164", + "name": "pystan", + "requires": [], + "size": 25476768, + "version": "2.6.3.0" + }, + "pystan-2.6.3.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "cython 0.22", + "numpy 1.9*", + "python 3.4*" + ], + "license": "GPL3", + "md5": "2072f2927180ec9c3589341031b3ce61", + "name": "pystan", + "requires": [], + "size": 25516863, + "version": "2.6.3.0" + }, + "pystan-2.7.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-24", + "depends": [ + "cython", + "numpy", + "python 2.7*" + ], + "license": "GPL3", + "md5": "276c965c631e7782a8ba6675b6a9f21a", + "name": "pystan", + "requires": [], + "size": 25212233, + "version": "2.7.0.1" + }, + "pystan-2.7.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-24", + "depends": [ + "cython", + "numpy", + "python 3.4*" + ], + "license": "GPL3", + "md5": "d0ce942e5315110348307274117018d5", + "name": "pystan", + "requires": [], + "size": 25271426, + "version": "2.7.0.1" + }, + "pystan-2.7.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-24", + "depends": [ + "cython", + "numpy", + "python 3.5*" + ], + "license": "GPL3", + "md5": "798c40cc69c35783133339372462b0c3", + "name": "pystan", + "requires": [], + "size": 25261320, + "version": "2.7.0.1" + }, + "pystan-2.8.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "cython", + "numpy", + "python 2.7*" + ], + "license": "GPL3", + "md5": "3bd2e92a9f7ed305d744d8ceddc74d5a", + "name": "pystan", + "requires": [], + "size": 25046460, + "version": "2.8.0.0" + }, + "pystan-2.8.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "cython", + "numpy", + "python 3.4*" + ], + "license": "GPL3", + "md5": "ee6215797fc8a0f71487a0eb07ccdd0e", + "name": "pystan", + "requires": [], + "size": 25113086, + "version": "2.8.0.0" + }, + "pystan-2.8.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "cython", + "numpy", + "python 3.5*" + ], + "license": "GPL3", + "md5": "a5acb47922e8d98e8d77b73654a7b740", + "name": "pystan", + "requires": [], + "size": 25093490, + "version": "2.8.0.0" + }, + "pytables-2.4.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.0*", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "f394274a9aba9f5226ec7633352b52c6", + "name": "pytables", + "requires": [], + "size": 2190059, + "version": "2.4.0" + }, + "pytables-2.4.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.0*", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "956951166f69c21d82ff3aff1f4a07cb", + "name": "pytables", + "requires": [], + "size": 2191491, + "version": "2.4.0" + }, + "pytables-2.4.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.0*", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "55d085f205243412f35994edc60db38b", + "name": "pytables", + "requires": [], + "size": 2190845, + "version": "2.4.0" + }, + "pytables-2.4.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.0*", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0b7fa92d7211973228486a42af3b8a22", + "name": "pytables", + "requires": [], + "size": 2193121, + "version": "2.4.0" + }, + "pytables-2.4.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-12-15", + "depends": [ + "hdf5 1.8.13", + "numexpr 2.0*", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7ba1ac8933b6fdea5724192eb0880290", + "name": "pytables", + "requires": [], + "size": 2214093, + "version": "2.4.0" + }, + "pytables-2.4.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-15", + "depends": [ + "hdf5 1.8.13", + "numexpr 2.0*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "2c1f28fcdd7a9124b48768b4bd494d95", + "name": "pytables", + "requires": [], + "size": 2214068, + "version": "2.4.0" + }, + "pytables-2.4.0-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2014-12-23", + "depends": [ + "hdf5 1.8.13", + "numexpr 2.2*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "94531002773d5be27e745ee354551444", + "name": "pytables", + "requires": [], + "size": 2213809, + "version": "2.4.0" + }, + "pytables-3.0.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.1*", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "e7dcbb6a21e269d5a22a94818e810732", + "name": "pytables", + "requires": [], + "size": 2401871, + "version": "3.0.0" + }, + "pytables-3.0.0-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.2*", + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "7f816a96baa63c6e56b206ca6c58b8d7", + "name": "pytables", + "requires": [], + "size": 2402355, + "version": "3.0.0" + }, + "pytables-3.0.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.1*", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c22b079e88bf0e75349851eb120c5b12", + "name": "pytables", + "requires": [], + "size": 2402199, + "version": "3.0.0" + }, + "pytables-3.0.0-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.2*", + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "7963f784ab02ffc13f6a6b8f6b28f8a9", + "name": "pytables", + "requires": [], + "size": 2401610, + "version": "3.0.0" + }, + "pytables-3.0.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.1*", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "ab163a635f3a6c0cac8cd268e62d3d6a", + "name": "pytables", + "requires": [], + "size": 2403884, + "version": "3.0.0" + }, + "pytables-3.0.0-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.2*", + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "a40f4dd48b038feacc3b192f7a02affd", + "name": "pytables", + "requires": [], + "size": 2404280, + "version": "3.0.0" + }, + "pytables-3.0.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.1*", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0ef163ee1dcff0d51df9bed1d485b0fc", + "name": "pytables", + "requires": [], + "size": 2405076, + "version": "3.0.0" + }, + "pytables-3.0.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.2*", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9106b7a0720bd6c84777b2484716b75d", + "name": "pytables", + "requires": [], + "size": 2405624, + "version": "3.0.0" + }, + "pytables-3.0.0-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.2*", + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "5532de1cd7ea3e0116c139b7f259d660", + "name": "pytables", + "requires": [], + "size": 2394094, + "version": "3.0.0" + }, + "pytables-3.1.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "14758d012f2518bcbcf6c145199fd17e", + "name": "pytables", + "requires": [], + "size": 3177835, + "version": "3.1.0" + }, + "pytables-3.1.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c66c8a2b7340e54abc34e53a6b3ea7f0", + "name": "pytables", + "requires": [], + "size": 3180418, + "version": "3.1.0" + }, + "pytables-3.1.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "50a6250ac7464e36633fc97c5e89bb4c", + "name": "pytables", + "requires": [], + "size": 3141180, + "version": "3.1.0" + }, + "pytables-3.1.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "e6b9266f5fe0cea2b913e82aa292ce4c", + "name": "pytables", + "requires": [], + "size": 3187693, + "version": "3.1.1" + }, + "pytables-3.1.1-np18py26_1.tar.bz2": { + "build": "np18py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "5e57889eb8e9be4e12ba1115ce0c807d", + "name": "pytables", + "requires": [], + "size": 3194037, + "version": "3.1.1" + }, + "pytables-3.1.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "82f3ac01528f1fef9f417ba732941ba4", + "name": "pytables", + "requires": [], + "size": 3187549, + "version": "3.1.1" + }, + "pytables-3.1.1-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "1a8d4224ac9f57f780b59db18821749f", + "name": "pytables", + "requires": [], + "size": 3194813, + "version": "3.1.1" + }, + "pytables-3.1.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "bd1c215b135355589b99f9a89f182e16", + "name": "pytables", + "requires": [], + "size": 3146352, + "version": "3.1.1" + }, + "pytables-3.1.1-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "9421e9810956611735b3c26b30b6dec6", + "name": "pytables", + "requires": [], + "size": 3152221, + "version": "3.1.1" + }, + "pytables-3.1.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "fed6dd38c83c798bdf499c4348590a07", + "name": "pytables", + "requires": [], + "size": 3275132, + "version": "3.1.1" + }, + "pytables-3.1.1-np18py34_1.tar.bz2": { + "build": "np18py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "hdf5 1.8.9", + "numexpr 2.3*", + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "c23f2135abc9007083687bb43913f0e9", + "name": "pytables", + "requires": [], + "size": 3281626, + "version": "3.1.1" + }, + "pytables-3.1.1-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2014-09-11", + "depends": [ + "argparse", + "hdf5 1.8.13", + "numexpr 2.3*", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "0638179d3acbc44a15a9005f9a7572bb", + "name": "pytables", + "requires": [], + "size": 3309802, + "version": "3.1.1" + }, + "pytables-3.1.1-np19py26_2.tar.bz2": { + "build": "np19py26_2", + "build_number": 2, + "date": "2015-01-07", + "depends": [ + "argparse", + "hdf5 1.8.14", + "numexpr 2.3*", + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "4bc767a60834a9e8d599912a66260524", + "name": "pytables", + "requires": [], + "size": 3310159, + "version": "3.1.1" + }, + "pytables-3.1.1-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "numexpr 2.3*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "2ae51e959f34a613c41e4f7a45f70594", + "name": "pytables", + "requires": [], + "size": 3313366, + "version": "3.1.1" + }, + "pytables-3.1.1-np19py27_2.tar.bz2": { + "build": "np19py27_2", + "build_number": 2, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "numexpr 2.3*", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "37e2e6cc3665a711a2af9119623de0dd", + "name": "pytables", + "requires": [], + "size": 3313563, + "version": "3.1.1" + }, + "pytables-3.1.1-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "numexpr 2.3*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "22bd29596bada2729f1ac33466152d4a", + "name": "pytables", + "requires": [], + "size": 3309415, + "version": "3.1.1" + }, + "pytables-3.1.1-np19py33_2.tar.bz2": { + "build": "np19py33_2", + "build_number": 2, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "numexpr 2.3*", + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "b922a695e0acd614da471233ce314dc5", + "name": "pytables", + "requires": [], + "size": 3309231, + "version": "3.1.1" + }, + "pytables-3.1.1-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2014-09-11", + "depends": [ + "hdf5 1.8.13", + "numexpr 2.3*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "be9a75fbb16c64681c2fd1b3e695a550", + "name": "pytables", + "requires": [], + "size": 3486987, + "version": "3.1.1" + }, + "pytables-3.1.1-np19py34_2.tar.bz2": { + "build": "np19py34_2", + "build_number": 2, + "date": "2015-01-07", + "depends": [ + "hdf5 1.8.14", + "numexpr 2.3*", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "0c1da22e6fc3368808874f306cd4379c", + "name": "pytables", + "requires": [], + "size": 3486233, + "version": "3.1.1" + }, + "pytables-3.2.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "argparse", + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 2.6*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "6940c3a7a58120e5f511cb5b63a0131d", + "name": "pytables", + "requires": [], + "size": 3490532, + "version": "3.2.0" + }, + "pytables-3.2.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 2.7*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "808e83135edb23a629db148e29184793", + "name": "pytables", + "requires": [], + "size": 3487776, + "version": "3.2.0" + }, + "pytables-3.2.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 3.3*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "60cb71c4c6b51055b240bc1127d651c9", + "name": "pytables", + "requires": [], + "size": 3565714, + "version": "3.2.0" + }, + "pytables-3.2.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 3.4*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "6434c3f36ed1b7fdb8388cbf4cf096e6", + "name": "pytables", + "requires": [], + "size": 3747839, + "version": "3.2.0" + }, + "pytables-3.2.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 2.7*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "7520114099a8a8f80ab437a12a015867", + "name": "pytables", + "requires": [], + "size": 3528761, + "version": "3.2.1" + }, + "pytables-3.2.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 3.4*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "318b7808d608c1d0ae944ab58cf23c16", + "name": "pytables", + "requires": [], + "size": 3802558, + "version": "3.2.1" + }, + "pytables-3.2.1.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-08-31", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 2.7*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "5edc81b8330077f0c310371504f597e7", + "name": "pytables", + "requires": [], + "size": 3529904, + "version": "3.2.1.1" + }, + "pytables-3.2.1.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-08-31", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 3.4*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "7988bbbc175ea0ee3720094bd56baa5d", + "name": "pytables", + "requires": [], + "size": 3802163, + "version": "3.2.1.1" + }, + "pytables-3.2.1.1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 3.5*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "966f2e2bb497b8f907d3444dc16b3ca6", + "name": "pytables", + "requires": [], + "size": 3802425, + "version": "3.2.1.1" + }, + "pytables-3.2.2-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.10*", + "python 2.7*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "c8849e48db05dec202148b0fad800e4e", + "name": "pytables", + "requires": [], + "size": 3532240, + "version": "3.2.2" + }, + "pytables-3.2.2-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2016-03-18", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.5*", + "numpy 1.10*", + "python 2.7*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "cf9fcee6389c5e92507c352d87c81fab", + "name": "pytables", + "requires": [], + "size": 3534148, + "version": "3.2.2" + }, + "pytables-3.2.2-np110py27_3.tar.bz2": { + "build": "np110py27_3", + "build_number": 3, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numexpr 2.5*", + "numpy 1.10*", + "python 2.7*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "ca31e8d8855970e5ccf6a52cec01bb52", + "name": "pytables", + "requires": [], + "size": 3533183, + "version": "3.2.2" + }, + "pytables-3.2.2-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.10*", + "python 3.4*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "53bce33a0e547268a7981cec034f9c82", + "name": "pytables", + "requires": [], + "size": 3806263, + "version": "3.2.2" + }, + "pytables-3.2.2-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2016-03-18", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.5*", + "numpy 1.10*", + "python 3.4*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "6d66e9eef123187de7df5e45583e305e", + "name": "pytables", + "requires": [], + "size": 3805228, + "version": "3.2.2" + }, + "pytables-3.2.2-np110py34_3.tar.bz2": { + "build": "np110py34_3", + "build_number": 3, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numexpr 2.5*", + "numpy 1.10*", + "python 3.4*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "75240e7e22b9c368780a37e6a8dbae86", + "name": "pytables", + "requires": [], + "size": 3804941, + "version": "3.2.2" + }, + "pytables-3.2.2-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.10*", + "python 3.5*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "f00842a10cdb5cc3321def607c3c25b4", + "name": "pytables", + "requires": [], + "size": 3805223, + "version": "3.2.2" + }, + "pytables-3.2.2-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2016-03-18", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.5*", + "numpy 1.10*", + "python 3.5*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "c80d07e136bf3b109130d2cf05a2f1c6", + "name": "pytables", + "requires": [], + "size": 3760519, + "version": "3.2.2" + }, + "pytables-3.2.2-np110py35_3.tar.bz2": { + "build": "np110py35_3", + "build_number": 3, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numexpr 2.5*", + "numpy 1.10*", + "python 3.5*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "65bb4702270a0cdbbe9772285c2f650a", + "name": "pytables", + "requires": [], + "size": 3760427, + "version": "3.2.2" + }, + "pytables-3.2.2-np111py27_3.tar.bz2": { + "build": "np111py27_3", + "build_number": 3, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numexpr 2.5*", + "numpy 1.11*", + "python 2.7*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "a1e32e6f0ea63e6e42f441806c05351f", + "name": "pytables", + "requires": [], + "size": 3533070, + "version": "3.2.2" + }, + "pytables-3.2.2-np111py34_3.tar.bz2": { + "build": "np111py34_3", + "build_number": 3, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numexpr 2.5*", + "numpy 1.11*", + "python 3.4*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "37c357aa8828248cf6a9fbd8b2bd2d61", + "name": "pytables", + "requires": [], + "size": 3805571, + "version": "3.2.2" + }, + "pytables-3.2.2-np111py35_3.tar.bz2": { + "build": "np111py35_3", + "build_number": 3, + "date": "2016-04-04", + "depends": [ + "hdf5 1.8.16", + "numexpr 2.5*", + "numpy 1.11*", + "python 3.5*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "507240851d84fad0d50ea8a9808564b3", + "name": "pytables", + "requires": [], + "size": 3758932, + "version": "3.2.2" + }, + "pytables-3.2.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 2.7*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "f2c357170ba9becd235be921a7b286e0", + "name": "pytables", + "requires": [], + "size": 3532887, + "version": "3.2.2" + }, + "pytables-3.2.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 3.4*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "b4c5abb1f08ae42b16cc73010a84495c", + "name": "pytables", + "requires": [], + "size": 3805829, + "version": "3.2.2" + }, + "pytables-3.2.2-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-28", + "depends": [ + "hdf5 1.8.15.1", + "numexpr 2.4*", + "numpy 1.9*", + "python 3.5*", + "setuptools", + "zlib 1.2*" + ], + "license": "BSD", + "md5": "ddbe6a2b3ab7ee704d3e98c6b25ba3f9", + "name": "pytables", + "requires": [], + "size": 3805118, + "version": "3.2.2" + }, + "pytest-2.3.3-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "bf1379b6abb68400a2be12ada36aca2c", + "name": "pytest", + "requires": [], + "size": 152288, + "version": "2.3.3" + }, + "pytest-2.3.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "aca346844fb03a4ba55235c82347f0d1", + "name": "pytest", + "requires": [], + "size": 152643, + "version": "2.3.3" + }, + "pytest-2.3.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "1d6092a6ddc857cb7765939eeccab21b", + "name": "pytest", + "requires": [], + "size": 152419, + "version": "2.3.4" + }, + "pytest-2.3.4-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "3d007417b5ab6a9ba7ea4e04bc0820c1", + "name": "pytest", + "requires": [], + "size": 152366, + "version": "2.3.4" + }, + "pytest-2.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "8d59c7737849e5d0fdf3e9041236fc2c", + "name": "pytest", + "requires": [], + "size": 152766, + "version": "2.3.4" + }, + "pytest-2.3.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "0f8682ec0b40a90d593bcce4c033f282", + "name": "pytest", + "requires": [], + "size": 152736, + "version": "2.3.4" + }, + "pytest-2.3.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "553a041c7764e9a04ad95211fae9bb04", + "name": "pytest", + "requires": [], + "size": 155496, + "version": "2.3.5" + }, + "pytest-2.3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "b631dddf7ad58f2ef47f042059a20b2b", + "name": "pytest", + "requires": [], + "size": 155647, + "version": "2.3.5" + }, + "pytest-2.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "32851780ca89ae539094516449f3d78c", + "name": "pytest", + "requires": [], + "size": 167878, + "version": "2.4.2" + }, + "pytest-2.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "a4ac4f6d8155dd635f50ff58d52c60af", + "name": "pytest", + "requires": [], + "size": 167909, + "version": "2.4.2" + }, + "pytest-2.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "7c4b4c55514fbdf4ab3492174fac8e3c", + "name": "pytest", + "requires": [], + "size": 170848, + "version": "2.5.1" + }, + "pytest-2.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "9ab58b3b15ccf1450f3fa24437965537", + "name": "pytest", + "requires": [], + "size": 171026, + "version": "2.5.1" + }, + "pytest-2.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "4a06dc542cc940517c9e45a95d3dc344", + "name": "pytest", + "requires": [], + "size": 212969, + "version": "2.5.1" + }, + "pytest-2.5.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "fdfca28b5c8d9bb8b5630d06c0b7f767", + "name": "pytest", + "requires": [], + "size": 176351, + "version": "2.5.2" + }, + "pytest-2.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "2825253cab79ff2d56e37b00260aae1c", + "name": "pytest", + "requires": [], + "size": 176689, + "version": "2.5.2" + }, + "pytest-2.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "850a65e56d417e621d06ad8b3bc78ee2", + "name": "pytest", + "requires": [], + "size": 219671, + "version": "2.5.2" + }, + "pytest-2.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "9653fec35285be9ab776676bd39dc98f", + "name": "pytest", + "requires": [], + "size": 182585, + "version": "2.5.2" + }, + "pytest-2.6.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "03716014266d5b70935e36a509f53799", + "name": "pytest", + "requires": [], + "size": 178039, + "version": "2.6.0" + }, + "pytest-2.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "75ea38397a186d5578abbb63ff18c579", + "name": "pytest", + "requires": [], + "size": 178108, + "version": "2.6.0" + }, + "pytest-2.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "dba6d8c45a508ba91bd97a7b0c40f72c", + "name": "pytest", + "requires": [], + "size": 189928, + "version": "2.6.0" + }, + "pytest-2.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "c2c48e91f3e2b4a9bf557820f39f00c7", + "name": "pytest", + "requires": [], + "size": 184022, + "version": "2.6.0" + }, + "pytest-2.6.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "05340c7abf04b2cf2032308949ee4285", + "name": "pytest", + "requires": [], + "size": 178648, + "version": "2.6.1" + }, + "pytest-2.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "43f49c65685087eb3deebb06c959a9c7", + "name": "pytest", + "requires": [], + "size": 178363, + "version": "2.6.1" + }, + "pytest-2.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "e1212ab4fe3c9945da5ee888e9f1e5ea", + "name": "pytest", + "requires": [], + "size": 190335, + "version": "2.6.1" + }, + "pytest-2.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "49630a4b302f08c7284633351ee1a0d8", + "name": "pytest", + "requires": [], + "size": 184400, + "version": "2.6.1" + }, + "pytest-2.6.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "5d966c5463f71f48db72faf031e517a4", + "name": "pytest", + "requires": [], + "size": 179188, + "version": "2.6.2" + }, + "pytest-2.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "578fc118599bd2079448c11794995075", + "name": "pytest", + "requires": [], + "size": 179232, + "version": "2.6.2" + }, + "pytest-2.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "e1ba170c3c8fa889de852c15d159d300", + "name": "pytest", + "requires": [], + "size": 191431, + "version": "2.6.2" + }, + "pytest-2.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-05", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "2356aff2f7cbe0b6dc197c4adeadb5f1", + "name": "pytest", + "requires": [], + "size": 185264, + "version": "2.6.2" + }, + "pytest-2.6.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "520707ae76216a5cdb883fb9f60ce3dc", + "name": "pytest", + "requires": [], + "size": 181205, + "version": "2.6.3" + }, + "pytest-2.6.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "df3cad8f90a623fe1fde08d82f2c1fe0", + "name": "pytest", + "requires": [], + "size": 181379, + "version": "2.6.3" + }, + "pytest-2.6.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "1b1d7e1e0bd9edd800d70e19bf3e10c5", + "name": "pytest", + "requires": [], + "size": 194139, + "version": "2.6.3" + }, + "pytest-2.6.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "66e6ef875e8a1e3ab8a108b335978027", + "name": "pytest", + "requires": [], + "size": 187318, + "version": "2.6.3" + }, + "pytest-2.6.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "48c85255a11edb23bf5ccae332ed6f86", + "name": "pytest", + "requires": [], + "size": 182052, + "version": "2.6.4" + }, + "pytest-2.6.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "6158554094a50bf33cb6f151a36649f9", + "name": "pytest", + "requires": [], + "size": 182340, + "version": "2.6.4" + }, + "pytest-2.6.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "74becdca7efb3914bad4151e41c6c039", + "name": "pytest", + "requires": [], + "size": 195428, + "version": "2.6.4" + }, + "pytest-2.6.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "c5fec6a2cca9071e6aff3a9e29e75c45", + "name": "pytest", + "requires": [], + "size": 188335, + "version": "2.6.4" + }, + "pytest-2.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-07", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "134616d049c07ce896b37cf479481973", + "name": "pytest", + "requires": [], + "size": 186085, + "version": "2.7.0" + }, + "pytest-2.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-07", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "2b4fe53be2449e681bcd1732d4669a61", + "name": "pytest", + "requires": [], + "size": 185779, + "version": "2.7.0" + }, + "pytest-2.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-07", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "6cc53d3d22d5c8294344b83a25ad8273", + "name": "pytest", + "requires": [], + "size": 198129, + "version": "2.7.0" + }, + "pytest-2.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-07", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "49e1d860b574c81737ba192eb12d3fc9", + "name": "pytest", + "requires": [], + "size": 190960, + "version": "2.7.0" + }, + "pytest-2.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "392b69e6ca6951176a895d2e9268bfa3", + "name": "pytest", + "requires": [], + "size": 188150, + "version": "2.7.1" + }, + "pytest-2.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "e582173e2e3574e67f354d22d576b853", + "name": "pytest", + "requires": [], + "size": 187718, + "version": "2.7.1" + }, + "pytest-2.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "2752c40a78fc5dc6d65c141577fcaae4", + "name": "pytest", + "requires": [], + "size": 200053, + "version": "2.7.1" + }, + "pytest-2.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "5a7e131609e76fabdbdd7e8197678ba2", + "name": "pytest", + "requires": [], + "size": 192474, + "version": "2.7.1" + }, + "pytest-2.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "argparse", + "py", + "python 2.6*" + ], + "license": "MIT", + "md5": "42e28975d77609b9bd86a0b79e5c445a", + "name": "pytest", + "requires": [], + "size": 189480, + "version": "2.7.2" + }, + "pytest-2.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "37649b641cfc5027ea135d5f875e0cb6", + "name": "pytest", + "requires": [], + "size": 188987, + "version": "2.7.2" + }, + "pytest-2.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "py", + "python 3.3*" + ], + "license": "MIT", + "md5": "4147f37c3cc1ef86560853683c6583e5", + "name": "pytest", + "requires": [], + "size": 201164, + "version": "2.7.2" + }, + "pytest-2.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "adb64ec059363fb8c26fb44d0281a935", + "name": "pytest", + "requires": [], + "size": 193387, + "version": "2.7.2" + }, + "pytest-2.7.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "py", + "python 3.5*" + ], + "license": "MIT", + "md5": "8afc5a594226b2e65599651b448e632a", + "name": "pytest", + "requires": [], + "size": 192520, + "version": "2.7.2" + }, + "pytest-2.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "bf079e5c5cd87a8c4e6c956cb5b81fff", + "name": "pytest", + "requires": [], + "size": 221090, + "version": "2.8.0" + }, + "pytest-2.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "45e1ca4a531ad927563a978d59bb1bf6", + "name": "pytest", + "requires": [], + "size": 222152, + "version": "2.8.0" + }, + "pytest-2.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "py", + "python 3.5*" + ], + "license": "MIT", + "md5": "0c7a8fc6e502cd2e351ea4d16697ce74", + "name": "pytest", + "requires": [], + "size": 221058, + "version": "2.8.0" + }, + "pytest-2.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "445b5d810a40b19b05c7175621ae6d0e", + "name": "pytest", + "requires": [], + "size": 223636, + "version": "2.8.1" + }, + "pytest-2.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "25436e4f74e801e820859d31c22fd9c2", + "name": "pytest", + "requires": [], + "size": 224260, + "version": "2.8.1" + }, + "pytest-2.8.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "py", + "python 3.5*" + ], + "license": "MIT", + "md5": "47a98e7f7250cb6315e01cb72079fd66", + "name": "pytest", + "requires": [], + "size": 223016, + "version": "2.8.1" + }, + "pytest-2.8.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "e839b6ea8bb7b5ae61696f1f2cd6a13d", + "name": "pytest", + "requires": [], + "size": 228677, + "version": "2.8.5" + }, + "pytest-2.8.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "fa4a8c598dfed4578dac2b8f279ad1a4", + "name": "pytest", + "requires": [], + "size": 231407, + "version": "2.8.5" + }, + "pytest-2.8.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "py", + "python 3.5*" + ], + "license": "MIT", + "md5": "eeabd95fc5052da20ede201923fc45b0", + "name": "pytest", + "requires": [], + "size": 230388, + "version": "2.8.5" + }, + "pytest-2.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "py", + "python 2.7*" + ], + "license": "MIT", + "md5": "bca8d88e255e836a9c8d45edfada7633", + "name": "pytest", + "requires": [], + "size": 244497, + "version": "2.9.1" + }, + "pytest-2.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "py", + "python 3.4*" + ], + "license": "MIT", + "md5": "fb1117a34e1c3569a206a036d4483991", + "name": "pytest", + "requires": [], + "size": 249305, + "version": "2.9.1" + }, + "pytest-2.9.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "py", + "python 3.5*" + ], + "license": "MIT", + "md5": "14e594f02eca153062855a4d042fd450", + "name": "pytest", + "requires": [], + "size": 248236, + "version": "2.9.1" + }, + "pytest-cache-1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "execnet 1.2.0", + "pytest", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "9b299197b84e84393f24752c656d8fc9", + "name": "pytest-cache", + "requires": [], + "size": 9394, + "version": "1.0" + }, + "pytest-cache-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "execnet 1.2.0", + "pytest", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "db6b4d1a2dec7e00e910a74dd33483e7", + "name": "pytest-cache", + "requires": [], + "size": 9341, + "version": "1.0" + }, + "pytest-cache-1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "execnet 1.2.0", + "pytest", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "87b8afe690dfb3bfc365d76ad9e707c2", + "name": "pytest-cache", + "requires": [], + "size": 9546, + "version": "1.0" + }, + "pytest-cache-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "execnet 1.2.0", + "pytest", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "5ba3083c49174163bdd7c5bf2ea46ac1", + "name": "pytest-cache", + "requires": [], + "size": 9528, + "version": "1.0" + }, + "pytest-cache-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "execnet 1.3.0", + "pytest", + "python 3.5*", + "setuptools" + ], + "license": "MIT", + "md5": "b37156a177b9e95770e4842cf48a368d", + "name": "pytest-cache", + "requires": [], + "size": 9221, + "version": "1.0" + }, + "pytest-pep8-1.0.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "pep8", + "pytest", + "pytest-cache 1.0", + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "4bf39c3ba136a551da6ae0eb472ebc8b", + "name": "pytest-pep8", + "requires": [], + "size": 6758, + "version": "1.0.6" + }, + "pytest-pep8-1.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "pep8", + "pytest", + "pytest-cache 1.0", + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "4e98019ab95db325fdc49e009cf6045b", + "name": "pytest-pep8", + "requires": [], + "size": 6712, + "version": "1.0.6" + }, + "pytest-pep8-1.0.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "pep8", + "pytest", + "pytest-cache 1.0", + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "9c12639535b0f3c870992311d720335a", + "name": "pytest-pep8", + "requires": [], + "size": 6890, + "version": "1.0.6" + }, + "pytest-pep8-1.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-20", + "depends": [ + "pep8", + "pytest", + "pytest-cache 1.0", + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "9e53ab5ee3b1912177ea5aaa0b6bd4c7", + "name": "pytest-pep8", + "requires": [], + "size": 6899, + "version": "1.0.6" + }, + "pytest-pep8-1.0.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "pep8", + "pytest", + "pytest-cache 1.0", + "python 3.5*", + "setuptools" + ], + "license": "MIT", + "md5": "58e153f1d07b1f6d261231ba01b08f65", + "name": "pytest-pep8", + "requires": [], + "size": 6550, + "version": "1.0.6" + }, + "python-1.0.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "PSF", + "md5": "bb61c8316c66153e9661cd35f58c126f", + "name": "python", + "requires": [], + "size": 379996, + "version": "1.0.1" + }, + "python-2.6.8-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "36cb286bf9b470350303b7bc26eb87d6", + "name": "python", + "requires": [], + "size": 10246534, + "version": "2.6.8" + }, + "python-2.6.8-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "bc0a7ad62dff90c1d7903495fbb78c53", + "name": "python", + "requires": [], + "size": 10245147, + "version": "2.6.8" + }, + "python-2.6.8-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "53d2f8fc4d9e2f1ae38183ed452b92c5", + "name": "python", + "requires": [], + "size": 10244124, + "version": "2.6.8" + }, + "python-2.6.8-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "ec07abac8be3024b3c824656c247ebbd", + "name": "python", + "requires": [], + "size": 10240725, + "version": "2.6.8" + }, + "python-2.6.8-5.tar.bz2": { + "build": "5", + "build_number": 5, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "122c3aeadf8514d62eca1ed65d82f243", + "name": "python", + "requires": [], + "size": 10912502, + "version": "2.6.8" + }, + "python-2.6.8-6.tar.bz2": { + "build": "6", + "build_number": 6, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "7f0665a0292f932d50459f1ad066dc64", + "name": "python", + "requires": [], + "size": 10899317, + "version": "2.6.8" + }, + "python-2.6.8-7.tar.bz2": { + "build": "7", + "build_number": 7, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "783e095b6d8aa645e40b532706dd327a", + "name": "python", + "requires": [], + "size": 10897040, + "version": "2.6.8" + }, + "python-2.6.9-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "bce560fff10ba981b194cac967ca3787", + "name": "python", + "requires": [], + "size": 10894802, + "version": "2.6.9" + }, + "python-2.6.9-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "82242e18c19f10ee2744d00b2c0daa45", + "name": "python", + "requires": [], + "size": 11264026, + "version": "2.6.9" + }, + "python-2.7.10-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "ee8c8e999477b88a7429f206feb232a0", + "name": "python", + "requires": [], + "size": 14111473, + "version": "2.7.10" + }, + "python-2.7.10-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-09-15", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "80e55adab511de2b9abd7c3ac9a55f62", + "name": "python", + "requires": [], + "size": 12534916, + "version": "2.7.10" + }, + "python-2.7.10-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-10-19", + "depends": [ + "openssl 1.0.2*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "d4ec5bd99dff3239dfc735704ef5bfe2", + "name": "python", + "requires": [], + "size": 12540633, + "version": "2.7.10" + }, + "python-2.7.10-d0.tar.bz2": { + "build": "d0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "features": "debug", + "license": "PSF", + "md5": "636d53f0d9f97000ca12dec8632d731b", + "name": "python", + "requires": [], + "size": 12233667, + "version": "2.7.10" + }, + "python-2.7.11-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-12-06", + "depends": [ + "openssl 1.0.2*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "5ce70292323e8179d946f87c5f823039", + "name": "python", + "requires": [], + "size": 12600664, + "version": "2.7.11" + }, + "python-2.7.11-d0.tar.bz2": { + "build": "d0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "openssl 1.0.2g", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "zlib 1.2*" + ], + "features": "debug", + "license": "PSF", + "md5": "bd3381789bcc6101389867ed094f9762", + "name": "python", + "requires": [], + "size": 10745323, + "version": "2.7.11" + }, + "python-2.7.3-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "2b60a572f4093846414571c1764c9cbd", + "name": "python", + "requires": [], + "size": 10839516, + "version": "2.7.3" + }, + "python-2.7.3-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "6899126921410be6ce60ab8133baceb5", + "name": "python", + "requires": [], + "size": 10837269, + "version": "2.7.3" + }, + "python-2.7.3-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "d8cabac3e946f5a03a0f676ef468a1b4", + "name": "python", + "requires": [], + "size": 10838030, + "version": "2.7.3" + }, + "python-2.7.3-5.tar.bz2": { + "build": "5", + "build_number": 5, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "18adcc66e15f393fc716420f2db8062e", + "name": "python", + "requires": [], + "size": 10839281, + "version": "2.7.3" + }, + "python-2.7.3-6.tar.bz2": { + "build": "6", + "build_number": 6, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "6ebf7556278486dd8b93b1e0b1e4dd7e", + "name": "python", + "requires": [], + "size": 11518337, + "version": "2.7.3" + }, + "python-2.7.3-7.tar.bz2": { + "build": "7", + "build_number": 7, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "03f4c9ef9b4ccbceee7835a7a378d098", + "name": "python", + "requires": [], + "size": 11474655, + "version": "2.7.3" + }, + "python-2.7.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "768620eac9c2bfc8b465e41872319bdd", + "name": "python", + "requires": [], + "size": 11606593, + "version": "2.7.4" + }, + "python-2.7.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "3fba4b14c6b5dda496359859c0d9493b", + "name": "python", + "requires": [], + "size": 11590195, + "version": "2.7.5" + }, + "python-2.7.5-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "f3be8980aea788e1d69d6ebd596fa527", + "name": "python", + "requires": [], + "size": 11590844, + "version": "2.7.5" + }, + "python-2.7.5-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "7e8c9a5b3432bb6bad2224f5fe745486", + "name": "python", + "requires": [], + "size": 11795349, + "version": "2.7.5" + }, + "python-2.7.5-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "40eca049ab024bf5da56e01304af90b5", + "name": "python", + "requires": [], + "size": 11797536, + "version": "2.7.5" + }, + "python-2.7.6-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "3a0d9674e8e3737ba025ec8ae86d83d0", + "name": "python", + "requires": [], + "size": 11785813, + "version": "2.7.6" + }, + "python-2.7.6-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "5919ba7c18507e4eb6f9c7bcdd3c302d", + "name": "python", + "requires": [], + "size": 11784028, + "version": "2.7.6" + }, + "python-2.7.6-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "de142228003c38187d29c583884f0c34", + "name": "python", + "requires": [], + "size": 11785711, + "version": "2.7.6" + }, + "python-2.7.7-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "0957db828c775cd4e06ad61fa057c761", + "name": "python", + "requires": [], + "size": 11816801, + "version": "2.7.7" + }, + "python-2.7.7-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "f903385e754d24dfc7da942999b4607a", + "name": "python", + "requires": [], + "size": 11816131, + "version": "2.7.7" + }, + "python-2.7.8-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "3473e8d1fcfcceb205266200a9d563aa", + "name": "python", + "requires": [], + "size": 11875857, + "version": "2.7.8" + }, + "python-2.7.8-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "78bd36cee04f8ff289c2b3178a30f078", + "name": "python", + "requires": [], + "size": 12433641, + "version": "2.7.8" + }, + "python-2.7.9-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-12-12", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "968af5f07e00d4cc62c0ac1748d57401", + "name": "python", + "requires": [], + "size": 13999622, + "version": "2.7.9" + }, + "python-2.7.9-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-12-15", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "c9c8146c8fbb1812121da4d4332530b1", + "name": "python", + "requires": [], + "size": 13998566, + "version": "2.7.9" + }, + "python-2.7.9-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-03-09", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "162b73e24bf0313e91712b54a0cd577a", + "name": "python", + "requires": [], + "size": 14001252, + "version": "2.7.9" + }, + "python-2.7.9-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2015-04-14", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "d596d264a5fe107d0d1d9467e6fd00cb", + "name": "python", + "requires": [], + "size": 14005111, + "version": "2.7.9" + }, + "python-2.7.9-d1.tar.bz2": { + "build": "d1", + "build_number": 1, + "date": "2015-02-03", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "features": "debug", + "license": "PSF", + "md5": "a054066a60180a16dc60ff338a3ddb19", + "name": "python", + "requires": [], + "size": 12124036, + "version": "2.7.9" + }, + "python-2.7.9-d2.tar.bz2": { + "build": "d2", + "build_number": 2, + "date": "2015-03-09", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "features": "debug", + "license": "PSF", + "md5": "51370c11205f0cac3bf8167b3c6b5003", + "name": "python", + "requires": [], + "size": 12122803, + "version": "2.7.9" + }, + "python-3.3.0-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "dfd1c09f5a9bf8d6cae73bdace1e9790", + "name": "python", + "requires": [], + "size": 18625734, + "version": "3.3.0" + }, + "python-3.3.0-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "e9a537b620ec3561ccc1e0e91f6b95f0", + "name": "python", + "requires": [], + "size": 19172669, + "version": "3.3.0" + }, + "python-3.3.0-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "988a0d0803ba618a8d10d6562478f6ce", + "name": "python", + "requires": [], + "size": 19172066, + "version": "3.3.0" + }, + "python-3.3.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "44bd0c16f0b4abeb881dbf41e145c5be", + "name": "python", + "requires": [], + "size": 19038800, + "version": "3.3.1" + }, + "python-3.3.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "154142d94d2c68f26d78c1afd24d8bf9", + "name": "python", + "requires": [], + "size": 19038627, + "version": "3.3.2" + }, + "python-3.3.2-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "e94c38f9cf520f3213c867b13e974ef1", + "name": "python", + "requires": [], + "size": 19050858, + "version": "3.3.2" + }, + "python-3.3.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "e559ff54b9e0fafdc5c33aff592acc55", + "name": "python", + "requires": [], + "size": 19396608, + "version": "3.3.3" + }, + "python-3.3.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "3678c9447cb5626c206bc10c0e0b151b", + "name": "python", + "requires": [], + "size": 19469907, + "version": "3.3.4" + }, + "python-3.3.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "ee920b19c97080cf75208d7c0e06da63", + "name": "python", + "requires": [], + "size": 19518396, + "version": "3.3.5" + }, + "python-3.3.5-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "47c73a30b8d11e6ebb4c05ba033fd38a", + "name": "python", + "requires": [], + "size": 20616474, + "version": "3.3.5" + }, + "python-3.3.5-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-31", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "349421922c40727eef0a9a71b09c977d", + "name": "python", + "requires": [], + "size": 20614977, + "version": "3.3.5" + }, + "python-3.3.5-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2014-09-02", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "bc42c0d3057f68f70fda5c15705b0c63", + "name": "python", + "requires": [], + "size": 20613732, + "version": "3.3.5" + }, + "python-3.3.5-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2015-06-04", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "86d0324122abe7e87a4bcad92d45a4ea", + "name": "python", + "requires": [], + "size": 20612017, + "version": "3.3.5" + }, + "python-3.4.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "7b8e9ae46858f300d0312acee25d998f", + "name": "python", + "requires": [], + "size": 22519994, + "version": "3.4.0" + }, + "python-3.4.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "39442e4173d72caa43b03da23835410f", + "name": "python", + "requires": [], + "size": 22481947, + "version": "3.4.1" + }, + "python-3.4.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "4f509f5fc6857ef5041ff1e9135c69bb", + "name": "python", + "requires": [], + "size": 23696660, + "version": "3.4.1" + }, + "python-3.4.1-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-31", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "5537094eb7fae11c357cf30401d7d275", + "name": "python", + "requires": [], + "size": 23725458, + "version": "3.4.1" + }, + "python-3.4.1-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2014-09-02", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "e48510d6c32b814996a5d54b542c6ffa", + "name": "python", + "requires": [], + "size": 23726127, + "version": "3.4.1" + }, + "python-3.4.1-4.tar.bz2": { + "build": "4", + "build_number": 4, + "date": "2014-09-10", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "e17fcc5e5b02d9bbf72c81eb82dff5eb", + "name": "python", + "requires": [], + "size": 23724014, + "version": "3.4.1" + }, + "python-3.4.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-10-21", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "30d6b651d30c563d5fdd4995b8da51ca", + "name": "python", + "requires": [], + "size": 23849028, + "version": "3.4.2" + }, + "python-3.4.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "88352b513002ad452b39d83def32cbb8", + "name": "python", + "requires": [], + "size": 24188610, + "version": "3.4.3" + }, + "python-3.4.3-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-06-04", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "system 5.8", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "7e64e790e8cf3b84ee7edc22935a1d2d", + "name": "python", + "requires": [], + "size": 24199773, + "version": "3.4.3" + }, + "python-3.4.3-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-10-19", + "depends": [ + "openssl 1.0.2*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "fd4db91fe2df1dfb47ba76fa0ddd6fab", + "name": "python", + "requires": [], + "size": 16028489, + "version": "3.4.3" + }, + "python-3.4.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "openssl 1.0.2*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "68d83d9a595e3eb26cb1142cadda7c7e", + "name": "python", + "requires": [], + "size": 16023279, + "version": "3.4.4" + }, + "python-3.5.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-09-13", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "db09005f86922883140c70db9e9940a8", + "name": "python", + "requires": [], + "size": 17449990, + "version": "3.5.0" + }, + "python-3.5.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-10-19", + "depends": [ + "openssl 1.0.2*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "853ea3bc7a7315bba1b5622b21ccdb80", + "name": "python", + "requires": [], + "size": 17451681, + "version": "3.5.0" + }, + "python-3.5.0rc4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "openssl 1.0.1*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "6ff22dddc5cd49ac9723e9197063c95c", + "name": "python", + "requires": [], + "size": 26459208, + "version": "3.5.0rc4" + }, + "python-3.5.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-12-07", + "depends": [ + "openssl 1.0.2*", + "readline 6.2*", + "sqlite", + "tk 8.5*", + "xz 5.0.5", + "zlib 1.2*" + ], + "license": "PSF", + "md5": "846915c108afc320545675e325f2c361", + "name": "python", + "requires": [], + "size": 17553518, + "version": "3.5.1" + }, + "python-daemon-2.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "docutils", + "lockfile >=0.10", + "python 2.7*", + "setuptools" + ], + "license": "Apache Software License", + "license_family": "GPL3", + "md5": "25dff49635b617077e2e0ed5f6f49aa8", + "name": "python-daemon", + "requires": [], + "size": 22384, + "version": "2.0.5" + }, + "python-daemon-2.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "docutils", + "lockfile >=0.10", + "python 3.4*", + "setuptools" + ], + "license": "Apache Software License", + "license_family": "GPL3", + "md5": "4022c485eb4b8812e7dd38aacdf48f8a", + "name": "python-daemon", + "requires": [], + "size": 22938, + "version": "2.0.5" + }, + "python-daemon-2.0.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "docutils", + "lockfile >=0.10", + "python 3.5*", + "setuptools" + ], + "license": "Apache Software License", + "license_family": "GPL3", + "md5": "99094f9a874d726465e61660cc53bbe2", + "name": "python-daemon", + "requires": [], + "size": 22850, + "version": "2.0.5" + }, + "python-daemon-2.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "lockfile >=0.10", + "python 2.7*" + ], + "license": "Apache Software License", + "license_family": "GPL3", + "md5": "4323f580d6c6028775a6b744edb8d77b", + "name": "python-daemon", + "requires": [], + "size": 33291, + "version": "2.1.1" + }, + "python-daemon-2.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "lockfile >=0.10", + "python 3.4*" + ], + "license": "Apache Software License", + "license_family": "GPL3", + "md5": "e1f16f9c36acb111d07e943c81a80cf0", + "name": "python-daemon", + "requires": [], + "size": 33810, + "version": "2.1.1" + }, + "python-daemon-2.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-23", + "depends": [ + "lockfile >=0.10", + "python 3.5*" + ], + "license": "Apache Software License", + "license_family": "GPL3", + "md5": "90b55da2743afe4da83992752f53945d", + "name": "python-daemon", + "requires": [], + "size": 33682, + "version": "2.1.1" + }, + "python-dateutil-2.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-19", + "depends": [ + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "6659f956f203ad28b820a58cd7c0ee88", + "name": "python-dateutil", + "requires": [], + "size": 222521, + "version": "2.4.1" + }, + "python-dateutil-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-19", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "8b0c2a43d634133fa5dfafd989b422a0", + "name": "python-dateutil", + "requires": [], + "size": 223294, + "version": "2.4.1" + }, + "python-dateutil-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-19", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "8750ccbc98efcaca9574101e93baa6ed", + "name": "python-dateutil", + "requires": [], + "size": 224114, + "version": "2.4.1" + }, + "python-dateutil-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-19", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "871a0342c080d827b22c92815dc0abaf", + "name": "python-dateutil", + "requires": [], + "size": 224503, + "version": "2.4.1" + }, + "python-dateutil-2.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "7a925dbc32980fc4afb06fdab1a23031", + "name": "python-dateutil", + "requires": [], + "size": 223807, + "version": "2.4.2" + }, + "python-dateutil-2.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "67138f2410bb8147a31601de0bffe43a", + "name": "python-dateutil", + "requires": [], + "size": 224175, + "version": "2.4.2" + }, + "python-dateutil-2.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "1887c48f63efbf339884f162f9876c1f", + "name": "python-dateutil", + "requires": [], + "size": 225428, + "version": "2.4.2" + }, + "python-dateutil-2.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "7e7f759bd868079d63d4d5fedaf9d2df", + "name": "python-dateutil", + "requires": [], + "size": 225997, + "version": "2.4.2" + }, + "python-dateutil-2.4.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "430dfa68a83946dd40314917fbd79aec", + "name": "python-dateutil", + "requires": [], + "size": 225129, + "version": "2.4.2" + }, + "python-dateutil-2.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "c4010c48bc1d87dfff18bfa568eb2840", + "name": "python-dateutil", + "requires": [], + "size": 239059, + "version": "2.5.0" + }, + "python-dateutil-2.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "9c3d6d117052ac5fa26fdcde274556d1", + "name": "python-dateutil", + "requires": [], + "size": 241013, + "version": "2.5.0" + }, + "python-dateutil-2.5.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "d80846844fc586ed5839ea7db71c483e", + "name": "python-dateutil", + "requires": [], + "size": 240556, + "version": "2.5.0" + }, + "python-dateutil-2.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "61e5f17720d8d90f4291d7b5c5b9518f", + "name": "python-dateutil", + "requires": [], + "size": 240967, + "version": "2.5.1" + }, + "python-dateutil-2.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "aab951acd0d8cbffb8efe8fcf3ff072c", + "name": "python-dateutil", + "requires": [], + "size": 242792, + "version": "2.5.1" + }, + "python-dateutil-2.5.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "5d5522c40ffe77e87c6d23d77b172e57", + "name": "python-dateutil", + "requires": [], + "size": 242323, + "version": "2.5.1" + }, + "python-dateutil-2.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "e891a36237b04de47ab673f0014cd6a4", + "name": "python-dateutil", + "requires": [], + "size": 241489, + "version": "2.5.2" + }, + "python-dateutil-2.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "ae59aebe2735f90c66e02470a8241b1f", + "name": "python-dateutil", + "requires": [], + "size": 243512, + "version": "2.5.2" + }, + "python-dateutil-2.5.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-03", + "depends": [ + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "b5b545ce03d78f839eea38b3f003bb61", + "name": "python-dateutil", + "requires": [], + "size": 242917, + "version": "2.5.2" + }, + "python-gdbm-1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-08-01", + "depends": [ + "gdbm 1.11", + "python 2.6*" + ], + "license": "PSF", + "md5": "71840c7635e8a1cee46d45bf4ed60073", + "name": "python-gdbm", + "requires": [], + "size": 16992, + "version": "1.0" + }, + "python-gdbm-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-01", + "depends": [ + "gdbm 1.11", + "python 2.7*" + ], + "license": "PSF", + "md5": "844bc7807f80917a9cb08ba800993490", + "name": "python-gdbm", + "requires": [], + "size": 17019, + "version": "1.0" + }, + "python-gflags-2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ed842d69bcf97e8ab2c27224836d9b01", + "name": "python-gflags", + "requires": [], + "size": 52561, + "version": "2.0" + }, + "python-ldap-2.4.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "openldap 2.4.36", + "python 2.7*" + ], + "license": "Python style", + "license_family": "PSF", + "md5": "3c4809b48a43e83daff5078f87fee134", + "name": "python-ldap", + "requires": [], + "size": 169143, + "version": "2.4.13" + }, + "python-memcached-1.57-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "python 2.7*", + "six" + ], + "license": "PSF", + "md5": "7d9ccdce0e717e88d5c4a55aba3acb00", + "name": "python-memcached", + "requires": [], + "size": 35358, + "version": "1.57" + }, + "python-memcached-1.57-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "python 3.4*", + "six" + ], + "license": "PSF", + "md5": "f10dda6121dee8dfaccd0e80be7e5d1a", + "name": "python-memcached", + "requires": [], + "size": 35806, + "version": "1.57" + }, + "python-memcached-1.57-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "python 3.5*", + "six" + ], + "license": "PSF", + "md5": "3084f610993e02bbf5d53b78daa97352", + "name": "python-memcached", + "requires": [], + "size": 35718, + "version": "1.57" + }, + "python-ntlm-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.6*" + ], + "license": "LGPL", + "md5": "eb41fa00d8b357262901cdafbf61d284", + "name": "python-ntlm", + "requires": [], + "size": 28359, + "version": "1.1.0" + }, + "python-ntlm-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.7*" + ], + "license": "LGPL", + "md5": "ddf03917b937f40a9299839488c3de66", + "name": "python-ntlm", + "requires": [], + "size": 28406, + "version": "1.1.0" + }, + "python-snappy-0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 2.7*", + "snappy" + ], + "license": "BSD", + "md5": "8eea1ff87a40f472caeaf5805e175fcc", + "name": "python-snappy", + "requires": [], + "size": 21262, + "version": "0.5" + }, + "python-snappy-0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 3.4*", + "snappy" + ], + "license": "BSD", + "md5": "e39bd3a8a37d0086e7d8bdcc573fa0c5", + "name": "python-snappy", + "requires": [], + "size": 21936, + "version": "0.5" + }, + "python-snappy-0.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 3.5*", + "snappy" + ], + "license": "BSD", + "md5": "cd62cd2e0638cf36b0b14804107392c8", + "name": "python-snappy", + "requires": [], + "size": 22033, + "version": "0.5" + }, + "pytz-2012d-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "8a9bd6ac19f7652369b7295cefdfb915", + "name": "pytz", + "requires": [], + "size": 214742, + "version": "2012d" + }, + "pytz-2012d-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "30ae11a0b22bba34e81c85cddebe4626", + "name": "pytz", + "requires": [], + "size": 214500, + "version": "2012d" + }, + "pytz-2012d-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "6c3d76be3330be84aebd6e490e9c0b26", + "name": "pytz", + "requires": [], + "size": 220582, + "version": "2012d" + }, + "pytz-2012j-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "95108e558c4f2d4dca07e60a3f7a17c0", + "name": "pytz", + "requires": [], + "size": 234537, + "version": "2012j" + }, + "pytz-2012j-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "70a098f4aaa0ac05047779a1570ce551", + "name": "pytz", + "requires": [], + "size": 234437, + "version": "2012j" + }, + "pytz-2012j-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "14a246b93ae0b6b693e29021a354fcc1", + "name": "pytz", + "requires": [], + "size": 235044, + "version": "2012j" + }, + "pytz-2013b-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "79d6add4e27f160165a86e1a82f6555d", + "name": "pytz", + "requires": [], + "size": 231710, + "version": "2013b" + }, + "pytz-2013b-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "3384a974b7785de273c64c8813504751", + "name": "pytz", + "requires": [], + "size": 231634, + "version": "2013b" + }, + "pytz-2013b-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "1dd91a59babe70ad21a3141f77898067", + "name": "pytz", + "requires": [], + "size": 232273, + "version": "2013b" + }, + "pytz-2014.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "a3e4bfe90bc915766da1099fa94d4efc", + "name": "pytz", + "requires": [], + "size": 175726, + "version": "2014.1" + }, + "pytz-2014.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "1d97afed822083c7a098051548cbdd7c", + "name": "pytz", + "requires": [], + "size": 175543, + "version": "2014.1" + }, + "pytz-2014.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "a0c22703a8878355431e8f7c96852305", + "name": "pytz", + "requires": [], + "size": 177394, + "version": "2014.1" + }, + "pytz-2014.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "ad4a2abc6c1d2a7047a2a8ec663810fd", + "name": "pytz", + "requires": [], + "size": 176164, + "version": "2014.2" + }, + "pytz-2014.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "967c70ff304f00ea33baf4cc54311b40", + "name": "pytz", + "requires": [], + "size": 175982, + "version": "2014.2" + }, + "pytz-2014.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "96d627b4a7e1021d5aafe8285e1e6b02", + "name": "pytz", + "requires": [], + "size": 177531, + "version": "2014.2" + }, + "pytz-2014.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "ef605888a56f25146ff7bbd6bd633cc9", + "name": "pytz", + "requires": [], + "size": 175650, + "version": "2014.2" + }, + "pytz-2014.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "a296c9074306c12acb96ad6381d42dc1", + "name": "pytz", + "requires": [], + "size": 176182, + "version": "2014.3" + }, + "pytz-2014.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "8af36569d645f50b654405cd0f040d5a", + "name": "pytz", + "requires": [], + "size": 175888, + "version": "2014.3" + }, + "pytz-2014.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "3d3c9c2be8d56b980cc858abb03c58d6", + "name": "pytz", + "requires": [], + "size": 178364, + "version": "2014.3" + }, + "pytz-2014.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "396160764a7af9ff7da23d9a6f30290e", + "name": "pytz", + "requires": [], + "size": 175334, + "version": "2014.3" + }, + "pytz-2014.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "ff9ba0bf702bf02a5d3a27621ce68d44", + "name": "pytz", + "requires": [], + "size": 176206, + "version": "2014.4" + }, + "pytz-2014.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "a91145d5dd0507e257920dd52db6fbd5", + "name": "pytz", + "requires": [], + "size": 176040, + "version": "2014.4" + }, + "pytz-2014.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "d81c5573e0e5bb9fb5fb09471bd8ab9d", + "name": "pytz", + "requires": [], + "size": 178515, + "version": "2014.4" + }, + "pytz-2014.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "c1ec6f285c1feaffe00b67682b727bfe", + "name": "pytz", + "requires": [], + "size": 175464, + "version": "2014.4" + }, + "pytz-2014.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "ce0dc13d3eb315d8b3a55692a7a02eb1", + "name": "pytz", + "requires": [], + "size": 179588, + "version": "2014.7" + }, + "pytz-2014.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5af2cc7b00d27a6ac9689a2cc8865c27", + "name": "pytz", + "requires": [], + "size": 179362, + "version": "2014.7" + }, + "pytz-2014.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "188fa36104139dbd5ec36bcc9a6fbbed", + "name": "pytz", + "requires": [], + "size": 182503, + "version": "2014.7" + }, + "pytz-2014.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "d8ebea982e236e75f739f83da8be2ca1", + "name": "pytz", + "requires": [], + "size": 179074, + "version": "2014.7" + }, + "pytz-2014.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-03", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "f5c5472b18c3db57dd9080e8a5b030f4", + "name": "pytz", + "requires": [], + "size": 179865, + "version": "2014.9" + }, + "pytz-2014.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-03", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "08cc031fa2b40641496dbf9806453420", + "name": "pytz", + "requires": [], + "size": 179596, + "version": "2014.9" + }, + "pytz-2014.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-03", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "16d70f0e6371d76d94b3ef6dd708f620", + "name": "pytz", + "requires": [], + "size": 182552, + "version": "2014.9" + }, + "pytz-2014.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-03", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6c465379bae30dfa975bc4189523c641", + "name": "pytz", + "requires": [], + "size": 179017, + "version": "2014.9" + }, + "pytz-2015.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-23", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "2f51d14468d08c3ef2f191b92e9fa938", + "name": "pytz", + "requires": [], + "size": 180075, + "version": "2015.2" + }, + "pytz-2015.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-23", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "f2079105f0a2fb3be7bcfcb3aa78627d", + "name": "pytz", + "requires": [], + "size": 179778, + "version": "2015.2" + }, + "pytz-2015.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-23", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "a6101a32e8e6f4d8f4f652a21b16112f", + "name": "pytz", + "requires": [], + "size": 182634, + "version": "2015.2" + }, + "pytz-2015.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-23", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "d9578926ef9808fa5889d24bc76e375b", + "name": "pytz", + "requires": [], + "size": 178998, + "version": "2015.2" + }, + "pytz-2015.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-13", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "0a33d3c871ba9ecbc1cd6e45b1642a46", + "name": "pytz", + "requires": [], + "size": 177983, + "version": "2015.4" + }, + "pytz-2015.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-13", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "f63ea03ebec3a9fade71571f4e38a9b9", + "name": "pytz", + "requires": [], + "size": 177823, + "version": "2015.4" + }, + "pytz-2015.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-13", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "cd09405678d33c04a71877afb9d891af", + "name": "pytz", + "requires": [], + "size": 180568, + "version": "2015.4" + }, + "pytz-2015.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-13", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "60c1b42f3ca9371d80e7ca95b81acd0d", + "name": "pytz", + "requires": [], + "size": 177489, + "version": "2015.4" + }, + "pytz-2015.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "6adcf4db5933c03b24a7dd90d9f66873", + "name": "pytz", + "requires": [], + "size": 177515, + "version": "2015.4" + }, + "pytz-2015.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "6922948747bfdac9d1849cb2aaac1d69", + "name": "pytz", + "requires": [], + "size": 177343, + "version": "2015.6" + }, + "pytz-2015.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "0a254a6cd1ac5f044d07fd6f5622defe", + "name": "pytz", + "requires": [], + "size": 179872, + "version": "2015.6" + }, + "pytz-2015.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "a6cad7f213209d53d774d47e520e73e7", + "name": "pytz", + "requires": [], + "size": 176998, + "version": "2015.6" + }, + "pytz-2015.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "a0ac0dc4666a68da299aec361e8ce680", + "name": "pytz", + "requires": [], + "size": 176920, + "version": "2015.6" + }, + "pytz-2015.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "fef3fd4c4ef9e07f774e1bbf7ebe9167", + "name": "pytz", + "requires": [], + "size": 177949, + "version": "2015.7" + }, + "pytz-2015.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "1c3848d57cfe912944940a592d667807", + "name": "pytz", + "requires": [], + "size": 180975, + "version": "2015.7" + }, + "pytz-2015.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "c2df8e0260b278a726b4e3e26006de93", + "name": "pytz", + "requires": [], + "size": 177512, + "version": "2015.7" + }, + "pytz-2015.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-03", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "92619c3449fa817b311f505be2e93b8e", + "name": "pytz", + "requires": [], + "size": 177505, + "version": "2015.7" + }, + "pytz-2016.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "8fa448323795e6d7e7ede6c313d30f21", + "name": "pytz", + "requires": [], + "size": 179765, + "version": "2016.1" + }, + "pytz-2016.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "399e907195c5ffb94725c707416f03a3", + "name": "pytz", + "requires": [], + "size": 178381, + "version": "2016.1" + }, + "pytz-2016.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "662ad9b59d73c2d7f759f4301e73d50e", + "name": "pytz", + "requires": [], + "size": 178279, + "version": "2016.1" + }, + "pytz-2016.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c0390204e78adf5e9e6383476000c12f", + "name": "pytz", + "requires": [], + "size": 180605, + "version": "2016.2" + }, + "pytz-2016.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "5a344850355d4d0bdab214dd78942500", + "name": "pytz", + "requires": [], + "size": 178714, + "version": "2016.2" + }, + "pytz-2016.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "2def096c8af30d8686e20f44dd0c8108", + "name": "pytz", + "requires": [], + "size": 178705, + "version": "2016.2" + }, + "pytz-2016.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "37dfd3351417f8df0794e5a12392923c", + "name": "pytz", + "requires": [], + "size": 181839, + "version": "2016.3" + }, + "pytz-2016.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "74b998399997d4051251c8b341fdf433", + "name": "pytz", + "requires": [], + "size": 180028, + "version": "2016.3" + }, + "pytz-2016.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "b0c45e078409fe22c6e17128e0b679c4", + "name": "pytz", + "requires": [], + "size": 179945, + "version": "2016.3" + }, + "pywget-2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.6*" + ], + "license": "Public-Domain", + "md5": "a7efe3ba3bc3791e5b44b07b04a37814", + "name": "pywget", + "requires": [], + "size": 10632, + "version": "2.2" + }, + "pywget-2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.7*" + ], + "license": "Public-Domain", + "md5": "9b508fe7294c16c67324631896068b97", + "name": "pywget", + "requires": [], + "size": 10556, + "version": "2.2" + }, + "pywget-2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.3*" + ], + "license": "Public-Domain", + "md5": "1d6273a98da2e197934df905823217bc", + "name": "pywget", + "requires": [], + "size": 10811, + "version": "2.2" + }, + "pywget-2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.4*" + ], + "license": "Public-Domain", + "md5": "ce20803edf64b0141a214a436f5fdbc5", + "name": "pywget", + "requires": [], + "size": 10815, + "version": "2.2" + }, + "pywget-2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Public-Domain", + "md5": "a6f03f5fe6504026b6c2ead66b86709d", + "name": "pywget", + "requires": [], + "size": 10536, + "version": "2.2" + }, + "pyyaml-3.10-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "yaml 0.1.4" + ], + "license": "MIT", + "md5": "b34e8b898a0e7f814ed7e531a0495f5a", + "name": "pyyaml", + "requires": [], + "size": 267040, + "version": "3.10" + }, + "pyyaml-3.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "yaml 0.1.4" + ], + "license": "MIT", + "md5": "92d23ec3e826aea22352638e8c441c37", + "name": "pyyaml", + "requires": [], + "size": 267796, + "version": "3.10" + }, + "pyyaml-3.10-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "yaml 0.1.4" + ], + "license": "MIT", + "md5": "21b6328575f7d727f2b3acd9b2c77e4e", + "name": "pyyaml", + "requires": [], + "size": 267411, + "version": "3.10" + }, + "pyyaml-3.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "yaml 0.1.4" + ], + "license": "MIT", + "md5": "e672e508d6e802efce1024066bf9d573", + "name": "pyyaml", + "requires": [], + "size": 287487, + "version": "3.10" + }, + "pyyaml-3.11-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "yaml 0.1.4" + ], + "license": "MIT", + "md5": "417d2cab394b7acd7f5a84eafec53b9a", + "name": "pyyaml", + "requires": [], + "size": 339456, + "version": "3.11" + }, + "pyyaml-3.11-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-06-19", + "depends": [ + "python 2.6*", + "yaml 0.1.6" + ], + "license": "MIT", + "md5": "1e38382989d88a03fca8545c78349562", + "name": "pyyaml", + "requires": [], + "size": 301943, + "version": "3.11" + }, + "pyyaml-3.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "yaml 0.1.4" + ], + "license": "MIT", + "md5": "8affbf2a8fa8c734a0c016de1a72f94e", + "name": "pyyaml", + "requires": [], + "size": 339658, + "version": "3.11" + }, + "pyyaml-3.11-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-06-19", + "depends": [ + "python 2.7*", + "yaml 0.1.6" + ], + "license": "MIT", + "md5": "fa59e2abe10056a99e82a036b2620767", + "name": "pyyaml", + "requires": [], + "size": 302508, + "version": "3.11" + }, + "pyyaml-3.11-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "yaml 0.1.4" + ], + "license": "MIT", + "md5": "bc686befb0f8d1df8fc05c07d6488b3f", + "name": "pyyaml", + "requires": [], + "size": 343571, + "version": "3.11" + }, + "pyyaml-3.11-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-06-19", + "depends": [ + "python 3.3*", + "yaml 0.1.6" + ], + "license": "MIT", + "md5": "9770f0a31b629b62abfbeb654c939cb8", + "name": "pyyaml", + "requires": [], + "size": 310717, + "version": "3.11" + }, + "pyyaml-3.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "yaml 0.1.4" + ], + "license": "MIT", + "md5": "aa4a9856808284a6385c53bc22c367c3", + "name": "pyyaml", + "requires": [], + "size": 361934, + "version": "3.11" + }, + "pyyaml-3.11-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-06-19", + "depends": [ + "python 3.4*", + "yaml 0.1.6" + ], + "license": "MIT", + "md5": "75c1495b3bb3e45921334711359deb46", + "name": "pyyaml", + "requires": [], + "size": 337597, + "version": "3.11" + }, + "pyyaml-3.11-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "yaml 0.1.6" + ], + "license": "MIT", + "md5": "3756a749c957c10f7ebc566295d0b54e", + "name": "pyyaml", + "requires": [], + "size": 336912, + "version": "3.11" + }, + "pyzmq-14.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 4.0.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "7d83dcd1e1f56b959e55fb58dedfc247", + "name": "pyzmq", + "requires": [], + "size": 604221, + "version": "14.0.1" + }, + "pyzmq-14.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 4.0.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "e0a327f4085888502a76d34746291f7f", + "name": "pyzmq", + "requires": [], + "size": 604027, + "version": "14.0.1" + }, + "pyzmq-14.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "zeromq 4.0.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "f0059277a8a591a87f97eb8246b500bb", + "name": "pyzmq", + "requires": [], + "size": 588136, + "version": "14.0.1" + }, + "pyzmq-14.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "377178fa5c3d778d72e929c21d0fd16d", + "name": "pyzmq", + "requires": [], + "size": 650273, + "version": "14.1.0" + }, + "pyzmq-14.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "0a26cc45ff588d16f3afd742d9767e01", + "name": "pyzmq", + "requires": [], + "size": 651023, + "version": "14.1.0" + }, + "pyzmq-14.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "e98b33c88ddf240d08d5f5fd3707c0f4", + "name": "pyzmq", + "requires": [], + "size": 661772, + "version": "14.1.0" + }, + "pyzmq-14.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "e553f2b7434d100cad455611e17d2d6a", + "name": "pyzmq", + "requires": [], + "size": 695583, + "version": "14.1.0" + }, + "pyzmq-14.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "2d1b11661aa41a8cf56e4a0b87cf831f", + "name": "pyzmq", + "requires": [], + "size": 650104, + "version": "14.1.1" + }, + "pyzmq-14.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "f538a241cb4c1edcdbd68c331574b64b", + "name": "pyzmq", + "requires": [], + "size": 651137, + "version": "14.1.1" + }, + "pyzmq-14.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "e08b48cb7d44e575e38a205aadca3a15", + "name": "pyzmq", + "requires": [], + "size": 661939, + "version": "14.1.1" + }, + "pyzmq-14.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "17e850ba97e71ec6a633ed574a941d1a", + "name": "pyzmq", + "requires": [], + "size": 695979, + "version": "14.1.1" + }, + "pyzmq-14.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "90aac740a366fe20c25a22462ebad877", + "name": "pyzmq", + "requires": [], + "size": 598106, + "version": "14.2.0" + }, + "pyzmq-14.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "5e9421aa08357eb0f0c21bde1c47fc6e", + "name": "pyzmq", + "requires": [], + "size": 598783, + "version": "14.2.0" + }, + "pyzmq-14.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "cf52027169826351060590da79a1c467", + "name": "pyzmq", + "requires": [], + "size": 608595, + "version": "14.2.0" + }, + "pyzmq-14.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "4cad0286661cd5a4440bce4e9671692a", + "name": "pyzmq", + "requires": [], + "size": 641143, + "version": "14.2.0" + }, + "pyzmq-14.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "e60a710165933caf00bab737d421fce3", + "name": "pyzmq", + "requires": [], + "size": 598184, + "version": "14.3.0" + }, + "pyzmq-14.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "abb7b564f48afda71c9b7f97c3d52ef4", + "name": "pyzmq", + "requires": [], + "size": 598860, + "version": "14.3.0" + }, + "pyzmq-14.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "38dbedab332154e82619f301ba41bd7d", + "name": "pyzmq", + "requires": [], + "size": 606198, + "version": "14.3.0" + }, + "pyzmq-14.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "ad619d3f750dd2b0ff3dc9a01df2856c", + "name": "pyzmq", + "requires": [], + "size": 637473, + "version": "14.3.0" + }, + "pyzmq-14.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "2d757f6840409dde48af1778fd5ad98c", + "name": "pyzmq", + "requires": [], + "size": 598568, + "version": "14.3.1" + }, + "pyzmq-14.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "94b7797efa9b6d58be780d4a74a86943", + "name": "pyzmq", + "requires": [], + "size": 598777, + "version": "14.3.1" + }, + "pyzmq-14.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "0bce19468d6ef42912aadb2051498f76", + "name": "pyzmq", + "requires": [], + "size": 605774, + "version": "14.3.1" + }, + "pyzmq-14.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "18a34d87f7e95a24d3efbf86b1b3a868", + "name": "pyzmq", + "requires": [], + "size": 636672, + "version": "14.3.1" + }, + "pyzmq-14.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 2.6*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "95073b114f925a00a678cbd17fc8fbb6", + "name": "pyzmq", + "requires": [], + "size": 669745, + "version": "14.4.0" + }, + "pyzmq-14.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 2.7*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "a67c8e8c2091f11b47c1357c95e8ef1b", + "name": "pyzmq", + "requires": [], + "size": 669745, + "version": "14.4.0" + }, + "pyzmq-14.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 3.3*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "209c69f1f6f2e4244e3dda77d92b0ef8", + "name": "pyzmq", + "requires": [], + "size": 680748, + "version": "14.4.0" + }, + "pyzmq-14.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 3.4*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "6d8870f150755ea7b262664fa9b1c7c5", + "name": "pyzmq", + "requires": [], + "size": 732952, + "version": "14.4.0" + }, + "pyzmq-14.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "python 2.6*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "8a0fcdaa4b65dcf7867d9e9aafe3edc0", + "name": "pyzmq", + "requires": [], + "size": 670064, + "version": "14.4.1" + }, + "pyzmq-14.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "python 2.7*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "ecd6fda6327086acd64eef508e3cd171", + "name": "pyzmq", + "requires": [], + "size": 669271, + "version": "14.4.1" + }, + "pyzmq-14.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "python 3.3*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "d2e266a662ee1d01efd765efe12746fd", + "name": "pyzmq", + "requires": [], + "size": 680134, + "version": "14.4.1" + }, + "pyzmq-14.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-31", + "depends": [ + "python 3.4*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "ae88bc233c401a1919b18ed16cafd499", + "name": "pyzmq", + "requires": [], + "size": 731435, + "version": "14.4.1" + }, + "pyzmq-14.5.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 2.6*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "6fe20229f9266fa3cbb86ad0e94be4d6", + "name": "pyzmq", + "requires": [], + "size": 670694, + "version": "14.5.0" + }, + "pyzmq-14.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 2.7*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "00fc84ffd6c406d222b97b4c3e114c8e", + "name": "pyzmq", + "requires": [], + "size": 670624, + "version": "14.5.0" + }, + "pyzmq-14.5.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 3.3*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "ccf1e55376e3486ec998b1ecf6f939d1", + "name": "pyzmq", + "requires": [], + "size": 680734, + "version": "14.5.0" + }, + "pyzmq-14.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 3.4*", + "zeromq 4.0.4" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "2fe29ff06db9acb14dc6598c1b7a9ac2", + "name": "pyzmq", + "requires": [], + "size": 731880, + "version": "14.5.0" + }, + "pyzmq-14.6.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "9d33034f2f85c2123de672d8c60ab922", + "name": "pyzmq", + "requires": [], + "size": 672034, + "version": "14.6.0" + }, + "pyzmq-14.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "85550347e423b8d7c2782b0ef4180d6f", + "name": "pyzmq", + "requires": [], + "size": 672440, + "version": "14.6.0" + }, + "pyzmq-14.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "d9c6c3c4a7bef54395e20fbf827d3f2a", + "name": "pyzmq", + "requires": [], + "size": 682561, + "version": "14.6.0" + }, + "pyzmq-14.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "4e6583e94be759bf54dccfc4b6dfaca8", + "name": "pyzmq", + "requires": [], + "size": 733339, + "version": "14.6.0" + }, + "pyzmq-14.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 2.6*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "f9fac8e94550a2dd4c399f219c920c5b", + "name": "pyzmq", + "requires": [], + "size": 695779, + "version": "14.7.0" + }, + "pyzmq-14.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 2.7*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "4293ec73391045fc33c68f02b4228ee2", + "name": "pyzmq", + "requires": [], + "size": 696104, + "version": "14.7.0" + }, + "pyzmq-14.7.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "python 2.7*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "481762b9ef378e3490b2123bf3da354f", + "name": "pyzmq", + "requires": [], + "size": 695728, + "version": "14.7.0" + }, + "pyzmq-14.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 3.3*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "77f3a92124ee58d06ceec1cf55c7fd28", + "name": "pyzmq", + "requires": [], + "size": 714446, + "version": "14.7.0" + }, + "pyzmq-14.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-18", + "depends": [ + "python 3.4*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "6ea4e14734447bf5f1ace4764076e9eb", + "name": "pyzmq", + "requires": [], + "size": 788518, + "version": "14.7.0" + }, + "pyzmq-14.7.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "python 3.4*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "3eb91e2998268cc9836c6c63463803c5", + "name": "pyzmq", + "requires": [], + "size": 787667, + "version": "14.7.0" + }, + "pyzmq-14.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "zeromq 4.0.5" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "2d4177ebef8b71b9e859f8facc6f77d7", + "name": "pyzmq", + "requires": [], + "size": 789871, + "version": "14.7.0" + }, + "pyzmq-14.7.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-10-20", + "depends": [ + "python 3.5*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "d62e9cccdd5d15e88b497ea16e55413d", + "name": "pyzmq", + "requires": [], + "size": 789320, + "version": "14.7.0" + }, + "pyzmq-15.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 2.7*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "c42da6abfb471237ba944843e48ca1f1", + "name": "pyzmq", + "requires": [], + "size": 720524, + "version": "15.1.0" + }, + "pyzmq-15.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.4*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "dd358aec4c3ac2b56568cbb7f0f5813d", + "name": "pyzmq", + "requires": [], + "size": 819540, + "version": "15.1.0" + }, + "pyzmq-15.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.5*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "aa34d2341d34de81b9e9e44c2270f70b", + "name": "pyzmq", + "requires": [], + "size": 800830, + "version": "15.1.0" + }, + "pyzmq-15.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "python 2.7*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "7c7e51123cb740a466a2b9997082fd5a", + "name": "pyzmq", + "requires": [], + "size": 721249, + "version": "15.2.0" + }, + "pyzmq-15.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "python 3.4*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "b4f05954413a8ee2f2ef96d4694af390", + "name": "pyzmq", + "requires": [], + "size": 831229, + "version": "15.2.0" + }, + "pyzmq-15.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "python 3.5*", + "zeromq 4.1.3" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "e4cf4ccfbb5c57f1f6dd98e77dce0205", + "name": "pyzmq", + "requires": [], + "size": 810799, + "version": "15.2.0" + }, + "pyzmq-2.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 2.2.0" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "df6dc7009ba38f33b78ac3a3110e6464", + "name": "pyzmq", + "requires": [], + "size": 501417, + "version": "2.2.0" + }, + "pyzmq-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 2.2.0" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "20fa73e7c1e6f24087c7ebbf83d326f5", + "name": "pyzmq", + "requires": [], + "size": 502043, + "version": "2.2.0" + }, + "pyzmq-2.2.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 2.2.0" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "b85e5e750e257cc43e92097b047d7397", + "name": "pyzmq", + "requires": [], + "size": 571083, + "version": "2.2.0.1" + }, + "pyzmq-2.2.0.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zeromq 2.2.0" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "e166f1c7613bc36baf4d859479b53ee6", + "name": "pyzmq", + "requires": [], + "size": 571137, + "version": "2.2.0.1" + }, + "pyzmq-2.2.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 2.2.0" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "19ac6f621cd305316d099cc29ea13473", + "name": "pyzmq", + "requires": [], + "size": 571210, + "version": "2.2.0.1" + }, + "pyzmq-2.2.0.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zeromq 2.2.0" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "847bb0fe28f07b2d82909982dcb7ea84", + "name": "pyzmq", + "requires": [], + "size": 571606, + "version": "2.2.0.1" + }, + "pyzmq-2.2.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "zeromq 2.2.0" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "04ef35196838aec4197df2c8938fc76f", + "name": "pyzmq", + "requires": [], + "size": 512451, + "version": "2.2.0.1" + }, + "pyzmq-2.2.0.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "zeromq 2.2.0" + ], + "license": "LGPL and BSD", + "license_family": "LGPL", + "md5": "60c3363d8b711c3f421a39e95d634264", + "name": "pyzmq", + "requires": [], + "size": 571919, + "version": "2.2.0.1" + }, + "qgrid-0.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-17", + "depends": [ + "ipywidgets ==4.1.1", + "notebook ==4.1.0", + "pandas ==0.17.1", + "python 2.7*" + ], + "license": "Apache", + "md5": "e7971ce826d435079f07c520c6632b7f", + "name": "qgrid", + "requires": [], + "size": 55764, + "version": "0.2.0" + }, + "qgrid-0.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-17", + "depends": [ + "ipywidgets ==4.1.1", + "notebook ==4.1.0", + "pandas ==0.17.1", + "python 3.4*" + ], + "license": "Apache", + "md5": "9fafd2e79e8791f845fb484388a4d788", + "name": "qgrid", + "requires": [], + "size": 56021, + "version": "0.2.0" + }, + "qgrid-0.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-17", + "depends": [ + "ipywidgets ==4.1.1", + "notebook ==4.1.0", + "pandas ==0.17.1", + "python 3.5*" + ], + "license": "Apache", + "md5": "ca61024a2910357d76a4623d0b254557", + "name": "qgrid", + "requires": [], + "size": 56068, + "version": "0.2.0" + }, + "qgrid-0.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-22", + "depends": [ + "ipywidgets >=4.1.1", + "notebook >=4.1.0", + "pandas >=0.17.1", + "python 2.7*" + ], + "license": "Apache", + "md5": "f6f733badc32285f3643902259dc68ba", + "name": "qgrid", + "requires": [], + "size": 65047, + "version": "0.3.1" + }, + "qgrid-0.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-22", + "depends": [ + "ipywidgets >=4.1.1", + "notebook >=4.1.0", + "pandas >=0.17.1", + "python 3.4*" + ], + "license": "Apache", + "md5": "f0b82cf5bcd884ab77a9ec153082ebaf", + "name": "qgrid", + "requires": [], + "size": 65346, + "version": "0.3.1" + }, + "qgrid-0.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-22", + "depends": [ + "ipywidgets >=4.1.1", + "notebook >=4.1.0", + "pandas >=0.17.1", + "python 3.5*" + ], + "license": "Apache", + "md5": "af3a1171e7918b28020ad2d16b4f50de", + "name": "qgrid", + "requires": [], + "size": 65324, + "version": "0.3.1" + }, + "qt-4.7.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "LGPL", + "md5": "325d9c2a0de32ef8b7b9efe883a2e3b7", + "name": "qt", + "requires": [], + "size": 31107980, + "version": "4.7.4" + }, + "qt-4.8.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "LGPL", + "md5": "6fff5c0fe720040d847590027c64d4c6", + "name": "qt", + "requires": [], + "size": 34435905, + "version": "4.8.5" + }, + "qt-4.8.6-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "fontconfig >=2.11.1", + "freetype >=2.5.2", + "openssl" + ], + "license": "LGPL", + "md5": "3e22180f1681401a23a79e17bcf1ad76", + "name": "qt", + "requires": [], + "size": 36886467, + "version": "4.8.6" + }, + "qt-4.8.6-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-04-09", + "depends": [ + "fontconfig >=2.11.1", + "freetype >=2.5.2", + "openssl" + ], + "license": "LGPL", + "md5": "4aed4dca4d1505dc2461b83bc918bb90", + "name": "qt", + "requires": [], + "size": 38195178, + "version": "4.8.6" + }, + "qt-4.8.6-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-05-07", + "depends": [ + "fontconfig >=2.11.1", + "freetype >=2.5.2", + "openssl" + ], + "license": "LGPL", + "md5": "95b50ac90bb4c9efba32227efd74d794", + "name": "qt", + "requires": [], + "size": 38194203, + "version": "4.8.6" + }, + "qt-4.8.6-3.tar.bz2": { + "build": "3", + "build_number": 3, + "date": "2015-05-31", + "depends": [ + "fontconfig >=2.11.1", + "freetype >=2.5.2", + "openssl" + ], + "license": "LGPL", + "md5": "b781198c13af54ed2e31025c96d2b144", + "name": "qt", + "requires": [], + "size": 38091961, + "version": "4.8.6" + }, + "qt-4.8.7-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-09-22", + "depends": [ + "fontconfig >=2.11.1", + "freetype >=2.5.2", + "libpng 1.6*", + "openssl" + ], + "license": "LGPL", + "md5": "9747f40bb70d4dfaa5f07257b8c345b9", + "name": "qt", + "requires": [], + "size": 38176191, + "version": "4.8.7" + }, + "qtawesome-0.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-23", + "depends": [ + "python 2.7*", + "qtpy", + "six" + ], + "license": "MIT", + "md5": "543fa7c81db097f018cbd201d20fdca8", + "name": "qtawesome", + "requires": [], + "size": 156285, + "version": "0.3.2" + }, + "qtawesome-0.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-23", + "depends": [ + "python 3.4*", + "qtpy", + "six" + ], + "license": "MIT", + "md5": "0d1ee29a90659d8bf723b0e485a7286f", + "name": "qtawesome", + "requires": [], + "size": 156521, + "version": "0.3.2" + }, + "qtawesome-0.3.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-23", + "depends": [ + "python 3.5*", + "qtpy", + "six" + ], + "license": "MIT", + "md5": "fe2924aa9637c96a4c76594d5e5daa82", + "name": "qtawesome", + "requires": [], + "size": 156497, + "version": "0.3.2" + }, + "qtawesome-0.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 2.7*", + "qtpy", + "six" + ], + "license": "MIT", + "md5": "6a708ab38df9da60ee46ee1897445754", + "name": "qtawesome", + "requires": [], + "size": 156258, + "version": "0.3.3" + }, + "qtawesome-0.3.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 3.4*", + "qtpy", + "six" + ], + "license": "MIT", + "md5": "5fbb231b24ab9cffa53a1886fe4adefa", + "name": "qtawesome", + "requires": [], + "size": 156549, + "version": "0.3.3" + }, + "qtawesome-0.3.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 3.5*", + "qtpy", + "six" + ], + "license": "MIT", + "md5": "14a50b6f4e81f2e8cb4f9541f36761dd", + "name": "qtawesome", + "requires": [], + "size": 156474, + "version": "0.3.3" + }, + "qtconsole-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "jupyter_client", + "jupyter_core", + "pygments", + "pyqt", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "bc69c951048473cf8c14cead0fa73b03", + "name": "qtconsole", + "requires": [], + "size": 122897, + "version": "4.0.0" + }, + "qtconsole-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "ipykernel", + "jupyter_client", + "jupyter_core", + "pygments", + "pyqt", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "f6e2e90b233ab1d6335b681687e4b635", + "name": "qtconsole", + "requires": [], + "size": 126601, + "version": "4.0.0" + }, + "qtconsole-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "ipykernel", + "jupyter_client", + "jupyter_core", + "pygments", + "pyqt", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "fd726da0db5e048f3697bb40680ab583", + "name": "qtconsole", + "requires": [], + "size": 127469, + "version": "4.0.1" + }, + "qtconsole-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "ipykernel", + "jupyter_client", + "jupyter_core", + "pygments", + "pyqt", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "678bf217ff457132a8a332a27736948a", + "name": "qtconsole", + "requires": [], + "size": 131271, + "version": "4.0.1" + }, + "qtconsole-4.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipykernel", + "jupyter_client", + "jupyter_core", + "pygments", + "pyqt", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "72b664b29ad4b7f736429aa0cdcc84df", + "name": "qtconsole", + "requires": [], + "size": 130692, + "version": "4.0.1" + }, + "qtconsole-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "2b32277fc08e9ca32107fbd04cd1fab6", + "name": "qtconsole", + "requires": [], + "size": 128092, + "version": "4.1.0" + }, + "qtconsole-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "fe1fe6703fba8764834c573cef83ae10", + "name": "qtconsole", + "requires": [], + "size": 132069, + "version": "4.1.0" + }, + "qtconsole-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "34ec856241d6cb89e2bfeae8df66de05", + "name": "qtconsole", + "requires": [], + "size": 131423, + "version": "4.1.0" + }, + "qtconsole-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 2.7*", + "traitlets" + ], + "license": "BSD", + "md5": "f138c8c08731b0dc8e5c693b788d41b7", + "name": "qtconsole", + "requires": [], + "size": 128598, + "version": "4.1.1" + }, + "qtconsole-4.1.1-py27_1.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py27_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 2.7*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "a2b97145e39854ad9cbad012f7f79ae2", + "name": "qtconsole", + "requires": [], + "size": 205429, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.1.1" + }, + "qtconsole-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.4*", + "traitlets" + ], + "license": "BSD", + "md5": "ee45189b192320b67890fec32e97dc25", + "name": "qtconsole", + "requires": [], + "size": 132360, + "version": "4.1.1" + }, + "qtconsole-4.1.1-py34_1.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py34_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.4*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "bcb740a4f1ff7cee772f308931d44e29", + "name": "qtconsole", + "requires": [], + "size": 209582, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.1.1" + }, + "qtconsole-4.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.5*", + "traitlets" + ], + "license": "BSD", + "md5": "1ee25beda6c7c0b6c66d876471c12081", + "name": "qtconsole", + "requires": [], + "size": 131486, + "version": "4.1.1" + }, + "qtconsole-4.1.1-py35_1.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py35_1", + "build_number": 1, + "date": "2016-03-15", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.5*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "a54bac6d8ef4e693f8753c74a1f0ab84", + "name": "qtconsole", + "requires": [], + "size": 209138, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.1.1" + }, + "qtconsole-4.2.0-py27_0.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py27_0", + "build_number": 0, + "date": "2016-03-22", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 2.7*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "eab251805c02531695c2f830f341a3d8", + "name": "qtconsole", + "requires": [], + "size": 163103, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.2.0" + }, + "qtconsole-4.2.0-py34_0.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py34_0", + "build_number": 0, + "date": "2016-03-22", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.4*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "70fe25752e32b1078e26d0e08172e007", + "name": "qtconsole", + "requires": [], + "size": 167015, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.2.0" + }, + "qtconsole-4.2.0-py35_0.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py35_0", + "build_number": 0, + "date": "2016-03-22", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.5*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "c2f88de7af3a1175d854df7492a41340", + "name": "qtconsole", + "requires": [], + "size": 166446, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.2.0" + }, + "qtconsole-4.2.1-py27_0.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 2.7*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "eef237598f73b015b4452443b662da00", + "name": "qtconsole", + "requires": [], + "size": 163040, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.2.1" + }, + "qtconsole-4.2.1-py34_0.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.4*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "a533ae58bfa8d57cb8de10d5f9560b34", + "name": "qtconsole", + "requires": [], + "size": 167125, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.2.1" + }, + "qtconsole-4.2.1-py35_0.tar.bz2": { + "app_entry": "jupyter-qtconsole", + "app_type": "desk", + "build": "py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "ipykernel >=4.1", + "jupyter_client >=4.1", + "jupyter_core", + "pygments", + "pyqt", + "python 3.5*", + "traitlets" + ], + "icon": "df7feebede9861a203b480c119e38b49.png", + "license": "BSD", + "md5": "90bc06b151298e4a1bfde3c4636a88f6", + "name": "qtconsole", + "requires": [], + "size": 166705, + "summary": "Jupyter Qt console", + "type": "app", + "version": "4.2.1" + }, + "qtpy-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-23", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "0a3b0d0834fa792fe4b9324871d211c0", + "name": "qtpy", + "requires": [], + "size": 16525, + "version": "1.0" + }, + "qtpy-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-23", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6d2925d6107d8f4a5008de8031e6f2f9", + "name": "qtpy", + "requires": [], + "size": 17045, + "version": "1.0" + }, + "qtpy-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-23", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "66afb7d37c94678a84d0d6627cca9401", + "name": "qtpy", + "requires": [], + "size": 17039, + "version": "1.0" + }, + "quandl-2.8.5-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.6*" + ], + "license": "MIT", + "md5": "9ad3037acc8e32f7d90ff8ad9059b71e", + "name": "quandl", + "requires": [], + "size": 11164, + "version": "2.8.5" + }, + "quandl-2.8.5-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "MIT", + "md5": "da295f96f433e5985e33891433f60177", + "name": "quandl", + "requires": [], + "size": 11189, + "version": "2.8.5" + }, + "quandl-2.8.5-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "MIT", + "md5": "3d06ca67a166194ac809a8815b2c7210", + "name": "quandl", + "requires": [], + "size": 11382, + "version": "2.8.5" + }, + "quandl-2.8.5-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "MIT", + "md5": "5527526c9c1e03b9fd85281a91826c0c", + "name": "quandl", + "requires": [], + "size": 11407, + "version": "2.8.5" + }, + "quandl-2.8.6-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.6*" + ], + "license": "MIT", + "md5": "06dcf3d7a1f16dfd29f4bc637bfaa523", + "name": "quandl", + "requires": [], + "size": 10878, + "version": "2.8.6" + }, + "quandl-2.8.6-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "MIT", + "md5": "2b56e42d82165b00dbe9f34bbb96031f", + "name": "quandl", + "requires": [], + "size": 10876, + "version": "2.8.6" + }, + "quandl-2.8.6-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "MIT", + "md5": "05f8176864e467d22ac0cbd6ebde53ed", + "name": "quandl", + "requires": [], + "size": 11081, + "version": "2.8.6" + }, + "quandl-2.8.6-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-05", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "MIT", + "md5": "a46964ddecbba47a65bc1fb924ceffe6", + "name": "quandl", + "requires": [], + "size": 11091, + "version": "2.8.6" + }, + "quandl-2.8.7-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.6*" + ], + "license": "MIT", + "md5": "71e40a867e00d697abf0dda7bfd00903", + "name": "quandl", + "requires": [], + "size": 10926, + "version": "2.8.7" + }, + "quandl-2.8.7-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "MIT", + "md5": "91271f8895357ddd57f76c67c1afe15f", + "name": "quandl", + "requires": [], + "size": 10931, + "version": "2.8.7" + }, + "quandl-2.8.7-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "MIT", + "md5": "1d3d0e2fdab56c196b1c6f7d67cf084d", + "name": "quandl", + "requires": [], + "size": 11151, + "version": "2.8.7" + }, + "quandl-2.8.7-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "MIT", + "md5": "68aadb20f46e472741081e6380ae1f5e", + "name": "quandl", + "requires": [], + "size": 11124, + "version": "2.8.7" + }, + "quandl-2.8.8-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.6*" + ], + "license": "MIT", + "md5": "60d2e3a1327eff3e5bc10bb600fe6189", + "name": "quandl", + "requires": [], + "size": 10937, + "version": "2.8.8" + }, + "quandl-2.8.8-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "MIT", + "md5": "f4bb083ad9d27cadaae369981428b805", + "name": "quandl", + "requires": [], + "size": 10939, + "version": "2.8.8" + }, + "quandl-2.8.8-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "MIT", + "md5": "0e806266f78cd41080e15272200977f7", + "name": "quandl", + "requires": [], + "size": 11159, + "version": "2.8.8" + }, + "quandl-2.8.8-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "MIT", + "md5": "25717b25f0062cf2d4259628f4b873f9", + "name": "quandl", + "requires": [], + "size": 11164, + "version": "2.8.8" + }, + "quandl-2.8.8-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.5*" + ], + "license": "MIT", + "md5": "435c8fd14a9ffebdf2b3773d9d5581c2", + "name": "quandl", + "requires": [], + "size": 11142, + "version": "2.8.8" + }, + "quandl-2.8.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "numpy", + "pandas", + "python 2.7*", + "requests" + ], + "license": "MIT", + "md5": "2faf45b2d23b5d3adaa6b720fddb9fad", + "name": "quandl", + "requires": [], + "size": 10756, + "version": "2.8.9" + }, + "quandl-2.8.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "numpy", + "pandas", + "python 3.4*", + "requests" + ], + "license": "MIT", + "md5": "397e8dd80dd9ebed19b962a0a06c835e", + "name": "quandl", + "requires": [], + "size": 10931, + "version": "2.8.9" + }, + "quandl-2.8.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "numpy", + "pandas", + "python 3.5*", + "requests" + ], + "license": "MIT", + "md5": "8a9cc254d7fc4cf6cef5fc1098061061", + "name": "quandl", + "requires": [], + "size": 10889, + "version": "2.8.9" + }, + "queuelib-1.2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "663eb316cc835c238a0ed766dc246ac2", + "name": "queuelib", + "requires": [], + "size": 17038, + "version": "1.2.2" + }, + "queuelib-1.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "beae9592de676ac2096ffe1f378224fe", + "name": "queuelib", + "requires": [], + "size": 16944, + "version": "1.2.2" + }, + "queuelib-1.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a4ba0a13f688e0b83d992a189ed8f34c", + "name": "queuelib", + "requires": [], + "size": 17754, + "version": "1.2.2" + }, + "queuelib-1.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b1721ad0ce9fbf01d9721c1dce0f3b22", + "name": "queuelib", + "requires": [], + "size": 17607, + "version": "1.2.2" + }, + "queuelib-1.2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "2685d57612f977e8dddf38d7076b14eb", + "name": "queuelib", + "requires": [], + "size": 12209, + "version": "1.2.2" + }, + "queuelib-1.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3994edad7e9848449283bab9b3956e3d", + "name": "queuelib", + "requires": [], + "size": 13769, + "version": "1.4.2" + }, + "queuelib-1.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "2e68d5c536cf0d0ed66f5ed5e5097fab", + "name": "queuelib", + "requires": [], + "size": 14518, + "version": "1.4.2" + }, + "queuelib-1.4.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "0085e4d46a2b6beae51b2b36852e08fd", + "name": "queuelib", + "requires": [], + "size": 14462, + "version": "1.4.2" + }, + "rasterio-0.24.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "affine 1.1.0", + "cligj 0.1.0", + "enum34", + "gdal 1.11.2", + "numpy 1.9*", + "python 2.6*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "08a1d269ab966dde45f088d7fd2dcf1e", + "name": "rasterio", + "requires": [], + "size": 2557104, + "version": "0.24.0" + }, + "rasterio-0.24.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "affine 1.1.0", + "cligj 0.1.0", + "enum34", + "gdal 1.11.2", + "numpy 1.9*", + "python 2.7*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "c9d2eaa73dfb8f7b7ed5908a94e307ef", + "name": "rasterio", + "requires": [], + "size": 2562254, + "version": "0.24.0" + }, + "rasterio-0.24.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "affine 1.1.0", + "cligj 0.1.0", + "enum34", + "gdal 1.11.2", + "numpy 1.9*", + "python 3.3*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "0117bc1a12dc53d3cf0afbf3c52ad217", + "name": "rasterio", + "requires": [], + "size": 2554294, + "version": "0.24.0" + }, + "rasterio-0.24.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-28", + "depends": [ + "affine 1.1.0", + "cligj 0.1.0", + "gdal 1.11.2", + "numpy 1.9*", + "python 3.4*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "license_family": "BSD", + "md5": "f9c783b6250054cc80a394a324c859be", + "name": "rasterio", + "requires": [], + "size": 2879093, + "version": "0.24.0" + }, + "rasterio-0.25.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "affine 1.2.0", + "cligj 0.2.0", + "enum34", + "libgdal 2.0.0", + "numpy 1.10*", + "python 2.7*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "md5": "66685812be268bd2d1b02b35afdfc126", + "name": "rasterio", + "requires": [], + "size": 2581967, + "version": "0.25.0" + }, + "rasterio-0.25.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "affine 1.2.0", + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.10*", + "python 3.4*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "md5": "07e1c4330fc206c2c7dd2336da6f107c", + "name": "rasterio", + "requires": [], + "size": 2881710, + "version": "0.25.0" + }, + "rasterio-0.25.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "affine 1.2.0", + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.10*", + "python 3.5*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "md5": "d56e2911dbc10b08dbfbb72cf886e4a4", + "name": "rasterio", + "requires": [], + "size": 2853978, + "version": "0.25.0" + }, + "rasterio-0.25.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "affine 1.1.0", + "cligj 0.2.0", + "enum34", + "libgdal 2.0.0", + "numpy 1.9*", + "python 2.6*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "md5": "f81b5a08aef965c4aefb4b49bbbe1147", + "name": "rasterio", + "requires": [], + "size": 2577997, + "version": "0.25.0" + }, + "rasterio-0.25.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "affine 1.1.0", + "cligj 0.2.0", + "enum34", + "libgdal 2.0.0", + "numpy 1.9*", + "python 2.7*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "md5": "6d9cacc4dfc29b851f202aa9f6c3aef5", + "name": "rasterio", + "requires": [], + "size": 2582502, + "version": "0.25.0" + }, + "rasterio-0.25.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "affine 1.1.0", + "cligj 0.2.0", + "enum34", + "libgdal 2.0.0", + "numpy 1.9*", + "python 3.3*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "md5": "c1291e75da95bc32ed27094f1f936478", + "name": "rasterio", + "requires": [], + "size": 2564131, + "version": "0.25.0" + }, + "rasterio-0.25.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-23", + "depends": [ + "affine 1.1.0", + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.9*", + "python 3.4*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "md5": "54dad2ded55977c350a30998a020974c", + "name": "rasterio", + "requires": [], + "size": 2881407, + "version": "0.25.0" + }, + "rasterio-0.25.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "affine 1.1.0", + "cligj 0.2.0", + "libgdal 2.0.0", + "numpy 1.9*", + "python 3.5*", + "setuptools", + "snuggs 1.3.1" + ], + "license": "BSD", + "md5": "3e97083adf44011c887729349ee9cdbd", + "name": "rasterio", + "requires": [], + "size": 2854514, + "version": "0.25.0" + }, + "readline-6.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "GPL3", + "md5": "ad4b6289f37467613726b14e9d4d1cf7", + "name": "readline", + "requires": [], + "size": 619277, + "version": "6.2" + }, + "readline-6.2-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2014-08-22", + "depends": [], + "license": "GPL3", + "md5": "d050607fb2934282470d06872e0e6cce", + "name": "readline", + "requires": [], + "size": 620292, + "version": "6.2" + }, + "redis-2.4.15-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3676c03def0bd69f3c2f4e0b04663395", + "name": "redis", + "requires": [], + "size": 1785116, + "version": "2.4.15" + }, + "redis-2.6.9-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "782e9f06d9755bcf6fc1c380313fa801", + "name": "redis", + "requires": [], + "size": 2296713, + "version": "2.6.9" + }, + "redis-py-2.10.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-02", + "depends": [ + "python 2.6*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "2732b580dc6c60d976937335d6bd7527", + "name": "redis-py", + "requires": [], + "size": 71703, + "version": "2.10.3" + }, + "redis-py-2.10.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-02", + "depends": [ + "python 2.7*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "fb09ef4da011287778a26dda54827378", + "name": "redis-py", + "requires": [], + "size": 71622, + "version": "2.10.3" + }, + "redis-py-2.10.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-02", + "depends": [ + "python 3.3*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "7b847921d474aa3a6cc684d4ec7036b7", + "name": "redis-py", + "requires": [], + "size": 74314, + "version": "2.10.3" + }, + "redis-py-2.10.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-02", + "depends": [ + "python 3.4*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "f8637de45085ac63c67e19f131818f04", + "name": "redis-py", + "requires": [], + "size": 74494, + "version": "2.10.3" + }, + "redis-py-2.10.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "3e54f7f3931a4a3c4cd2626187e3edfc", + "name": "redis-py", + "requires": [], + "size": 73732, + "version": "2.10.3" + }, + "redis-py-2.4.13-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "redis 2.4.15" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "109d6de0f32187e3b1a93a768fcba814", + "name": "redis-py", + "requires": [], + "size": 35793, + "version": "2.4.13" + }, + "redis-py-2.4.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "redis 2.4.15" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "6228ac3c2cea5e7483e0facac5cd8bb9", + "name": "redis-py", + "requires": [], + "size": 35833, + "version": "2.4.13" + }, + "redis-py-2.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "8908f55a18f5c43d217987218b0c116c", + "name": "redis-py", + "requires": [], + "size": 42924, + "version": "2.7.2" + }, + "redis-py-2.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "24092ad0f94f88dc17ffc4c6ddcf943d", + "name": "redis-py", + "requires": [], + "size": 42931, + "version": "2.7.2" + }, + "redis-py-2.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "3944ceadb73e4468fa15756c02149846", + "name": "redis-py", + "requires": [], + "size": 45063, + "version": "2.7.2" + }, + "redis-py-2.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "f570620938fe4040b28b073c4a720efa", + "name": "redis-py", + "requires": [], + "size": 55490, + "version": "2.9.1" + }, + "redis-py-2.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "94c2b0cd9f8fd62ef290aa1c963e11eb", + "name": "redis-py", + "requires": [], + "size": 55467, + "version": "2.9.1" + }, + "redis-py-2.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "23b5a1b31699a82def26afd6e079c990", + "name": "redis-py", + "requires": [], + "size": 57529, + "version": "2.9.1" + }, + "redis-py-2.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "redis 2.6.9" + ], + "license": "MIT (https://github.com/andymccurdy/redis-py/blob/master/LICENSE)", + "license_family": "MIT", + "md5": "8d86f975731d6be5297f0cde8a441cdc", + "name": "redis-py", + "requires": [], + "size": 57614, + "version": "2.9.1" + }, + "reportlab-3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8839bd7736be8497281702b736f2d969", + "name": "reportlab", + "requires": [], + "size": 2311094, + "version": "3.0" + }, + "reportlab-3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "4b8715e0bc96033fb23e41efc1527405", + "name": "reportlab", + "requires": [], + "size": 2349937, + "version": "3.0" + }, + "reportlab-3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "be9ca41348af9a2a2d3cc5fed44a91af", + "name": "reportlab", + "requires": [], + "size": 2331285, + "version": "3.0" + }, + "reportlab-3.1.44-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "fcc9c53b525b17628cd1fa3d3d38dc35", + "name": "reportlab", + "requires": [], + "size": 2357393, + "version": "3.1.44" + }, + "reportlab-3.1.44-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "8ca67cb92ba52e5f7dff38af3171c4cf", + "name": "reportlab", + "requires": [], + "size": 2390041, + "version": "3.1.44" + }, + "reportlab-3.1.44-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b352440dd282c4ba0380df4673252ad5", + "name": "reportlab", + "requires": [], + "size": 2377195, + "version": "3.1.44" + }, + "reportlab-3.1.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "a211e4f2c64635b987896d76cfffb3a4", + "name": "reportlab", + "requires": [], + "size": 2314646, + "version": "3.1.8" + }, + "reportlab-3.1.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "be17332980f85856f32563c9f65932d0", + "name": "reportlab", + "requires": [], + "size": 2353358, + "version": "3.1.8" + }, + "reportlab-3.1.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "72eb10cfca68c8c1b8418d6e15b6d6a4", + "name": "reportlab", + "requires": [], + "size": 2335091, + "version": "3.1.8" + }, + "reportlab-3.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "5bf003523054b513a21be81fa1bef4b2", + "name": "reportlab", + "requires": [], + "size": 2358499, + "version": "3.2.0" + }, + "reportlab-3.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e98242ecfe2f95e472c3b6685f55256e", + "name": "reportlab", + "requires": [], + "size": 2392047, + "version": "3.2.0" + }, + "reportlab-3.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8b57a156b41e616ab74c9ca2ababe50b", + "name": "reportlab", + "requires": [], + "size": 2378752, + "version": "3.2.0" + }, + "reportlab-3.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "134b6b2bb0a10f735b623aa00223d38b", + "name": "reportlab", + "requires": [], + "size": 2371922, + "version": "3.2.0" + }, + "reportlab-3.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "pillow >=2.4.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "de8fc5c0a1d7397c4cbee737b8727518", + "name": "reportlab", + "requires": [], + "size": 2353241, + "version": "3.3.0" + }, + "reportlab-3.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "pillow >=2.4.0", + "python 3.4*" + ], + "license": "BSD", + "md5": "d33e4f98df04935fa53be1bb0d54a4be", + "name": "reportlab", + "requires": [], + "size": 2368063, + "version": "3.3.0" + }, + "reportlab-3.3.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "pillow >=2.4.0", + "python 3.5*" + ], + "license": "BSD", + "md5": "8ae5c12935c9a8eb8e6541ced568d7b8", + "name": "reportlab", + "requires": [], + "size": 2361328, + "version": "3.3.0" + }, + "repoze.lru-0.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c3648e88c572d7a034c45ae3319a2539", + "name": "repoze.lru", + "requires": [], + "size": 15630, + "version": "0.6" + }, + "repoze.lru-0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8aa8844b0b79e4b9848e710b83fc8b22", + "name": "repoze.lru", + "requires": [], + "size": 15602, + "version": "0.6" + }, + "repoze.lru-0.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e57157d711ef2d1ab4f18e4364ab0620", + "name": "repoze.lru", + "requires": [], + "size": 15968, + "version": "0.6" + }, + "repoze.lru-0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "2023e8fd94da15868f662b3f5960e653", + "name": "repoze.lru", + "requires": [], + "size": 15981, + "version": "0.6" + }, + "repoze.lru-0.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "b870c043525d6c547f8975c44b06bc94", + "name": "repoze.lru", + "requires": [], + "size": 16033, + "version": "0.6" + }, + "requests-0.13.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "df6fac6d215a172b503d438decdf977f", + "name": "requests", + "requires": [], + "size": 534909, + "version": "0.13.9" + }, + "requests-0.13.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "2a7f6942effb91ce4baa6cafd85392c4", + "name": "requests", + "requires": [], + "size": 535556, + "version": "0.13.9" + }, + "requests-0.13.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "c6942e727424ec6f05af8216800cece9", + "name": "requests", + "requires": [], + "size": 494381, + "version": "0.13.9" + }, + "requests-1.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "ffb1b7faa91f23ef76cd509bcd785d0a", + "name": "requests", + "requires": [], + "size": 493460, + "version": "1.1.0" + }, + "requests-1.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "9d7e3b1656eeda3f760c5c8bda769735", + "name": "requests", + "requires": [], + "size": 493466, + "version": "1.1.0" + }, + "requests-1.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "12a9ecc8d3005a5c1712717612c82cd5", + "name": "requests", + "requires": [], + "size": 489967, + "version": "1.1.0" + }, + "requests-1.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "5dd7390ea2e01df1b03e35bbb0a8176b", + "name": "requests", + "requires": [], + "size": 497025, + "version": "1.2.0" + }, + "requests-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "72c9711abcd5df1da512d52a4d46e0fc", + "name": "requests", + "requires": [], + "size": 497481, + "version": "1.2.0" + }, + "requests-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "3315319fd81326c863b238a0968260c3", + "name": "requests", + "requires": [], + "size": 498281, + "version": "1.2.0" + }, + "requests-1.2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "1ad24a19f1412f86cff384106cfb2a8a", + "name": "requests", + "requires": [], + "size": 509414, + "version": "1.2.3" + }, + "requests-1.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "d76a382e096981339af17b7de70a329f", + "name": "requests", + "requires": [], + "size": 509018, + "version": "1.2.3" + }, + "requests-1.2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "7a7461f39bf0eb27a83e39db1256575c", + "name": "requests", + "requires": [], + "size": 513502, + "version": "1.2.3" + }, + "requests-2.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "afc5b735b41e749a123b6b60b780b289", + "name": "requests", + "requires": [], + "size": 573145, + "version": "2.1.0" + }, + "requests-2.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "e9893b7e4bc36d4d1634d5bec50a87f2", + "name": "requests", + "requires": [], + "size": 573376, + "version": "2.1.0" + }, + "requests-2.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "87f14a0adb7bcf8a113b3063188499f2", + "name": "requests", + "requires": [], + "size": 569177, + "version": "2.1.0" + }, + "requests-2.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "0d696b0c70e0e4f9f89cddcced580dd3", + "name": "requests", + "requires": [], + "size": 574070, + "version": "2.2.0" + }, + "requests-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "8255df445595ba1ecb36313c5ae2559b", + "name": "requests", + "requires": [], + "size": 573724, + "version": "2.2.0" + }, + "requests-2.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "0506074a35cc937ec5643b78de2d58f3", + "name": "requests", + "requires": [], + "size": 568628, + "version": "2.2.0" + }, + "requests-2.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "33c4ae4dcedfd5a0d8b0abee38639955", + "name": "requests", + "requires": [], + "size": 576604, + "version": "2.2.1" + }, + "requests-2.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "eb1f021736a7ae9137c156ca31c5934e", + "name": "requests", + "requires": [], + "size": 576474, + "version": "2.2.1" + }, + "requests-2.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "f5cd40663d12cfdb7a03e0c2adcc9042", + "name": "requests", + "requires": [], + "size": 571069, + "version": "2.2.1" + }, + "requests-2.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "ed46e75fe78582a819ab3623f6440cdf", + "name": "requests", + "requires": [], + "size": 607731, + "version": "2.2.1" + }, + "requests-2.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "587948f0e3e3d72d2248f0f9a33c1211", + "name": "requests", + "requires": [], + "size": 582206, + "version": "2.3.0" + }, + "requests-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "1517e4b26ce0c6720615daeae6ffdfb7", + "name": "requests", + "requires": [], + "size": 581745, + "version": "2.3.0" + }, + "requests-2.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "b9872a33d7382d325eb8c80d3325c37b", + "name": "requests", + "requires": [], + "size": 577248, + "version": "2.3.0" + }, + "requests-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "40362007cf69c84b68a80d771d64a3e2", + "name": "requests", + "requires": [], + "size": 614453, + "version": "2.3.0" + }, + "requests-2.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-29", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "1226b1a1415997b2ff3ce63541ef6158", + "name": "requests", + "requires": [], + "size": 590816, + "version": "2.4.0" + }, + "requests-2.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-29", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "37a5acafb87211fe2c8d63650d5df4de", + "name": "requests", + "requires": [], + "size": 591140, + "version": "2.4.0" + }, + "requests-2.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-29", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "8a9dccb4b990700c391e9d39f8d43b72", + "name": "requests", + "requires": [], + "size": 585985, + "version": "2.4.0" + }, + "requests-2.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-29", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "b92d943499cd244bbc4b61befb0df4ed", + "name": "requests", + "requires": [], + "size": 623691, + "version": "2.4.0" + }, + "requests-2.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "5bb391b2f630bf9c0733b0d2c95acb66", + "name": "requests", + "requires": [], + "size": 591029, + "version": "2.4.1" + }, + "requests-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "bd0dec52572a338fa4fe76c6a6132754", + "name": "requests", + "requires": [], + "size": 591187, + "version": "2.4.1" + }, + "requests-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "feabf6a49e23c920ea4811bbf640e686", + "name": "requests", + "requires": [], + "size": 586673, + "version": "2.4.1" + }, + "requests-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "8e1e48bc4e381e0468a3160dd41673eb", + "name": "requests", + "requires": [], + "size": 624253, + "version": "2.4.1" + }, + "requests-2.4.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-06", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "f67f1699a5deda9323b83970d00aa326", + "name": "requests", + "requires": [], + "size": 592995, + "version": "2.4.3" + }, + "requests-2.4.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-06", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "a6f829da6a52f87d88ddeba69837d606", + "name": "requests", + "requires": [], + "size": 592616, + "version": "2.4.3" + }, + "requests-2.4.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-06", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "88000818fe1248293c3598fc511f29b5", + "name": "requests", + "requires": [], + "size": 588041, + "version": "2.4.3" + }, + "requests-2.4.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-06", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "2f5d9fb1dfd02c786bd9a5dc1d1458e9", + "name": "requests", + "requires": [], + "size": 623957, + "version": "2.4.3" + }, + "requests-2.5.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "36344ef509817d627a1f02be47a6bd95", + "name": "requests", + "requires": [], + "size": 600362, + "version": "2.5.0" + }, + "requests-2.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "ee79587ae926a1c164f254dd533bca31", + "name": "requests", + "requires": [], + "size": 600251, + "version": "2.5.0" + }, + "requests-2.5.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "913893d257392673284a765966e49811", + "name": "requests", + "requires": [], + "size": 594506, + "version": "2.5.0" + }, + "requests-2.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "167996d436d796305fd1285aa547c6e5", + "name": "requests", + "requires": [], + "size": 630985, + "version": "2.5.0" + }, + "requests-2.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-23", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "075701c671988d476cf11ef584aede90", + "name": "requests", + "requires": [], + "size": 600580, + "version": "2.5.1" + }, + "requests-2.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-23", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "f0bdaf3885fb7c36394f110dfbf155f1", + "name": "requests", + "requires": [], + "size": 600584, + "version": "2.5.1" + }, + "requests-2.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-23", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "158a176fcfbc9a470d5ec0086d1845b1", + "name": "requests", + "requires": [], + "size": 594810, + "version": "2.5.1" + }, + "requests-2.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-23", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "f7c6b4171133776b127f92a2b7a60544", + "name": "requests", + "requires": [], + "size": 631301, + "version": "2.5.1" + }, + "requests-2.5.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "9868d09e96286def4d889b0be55ca0d7", + "name": "requests", + "requires": [], + "size": 607756, + "version": "2.5.2" + }, + "requests-2.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "23c2a079ce638c1b34fef35690c5bf30", + "name": "requests", + "requires": [], + "size": 608711, + "version": "2.5.2" + }, + "requests-2.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "55c2787d18167ef752c255934114229a", + "name": "requests", + "requires": [], + "size": 605097, + "version": "2.5.2" + }, + "requests-2.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-23", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "7f1cf31fe543f308cf71df169572ab46", + "name": "requests", + "requires": [], + "size": 642370, + "version": "2.5.2" + }, + "requests-2.5.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "87903620a67c1fe8757a713694ceb2ff", + "name": "requests", + "requires": [], + "size": 606981, + "version": "2.5.3" + }, + "requests-2.5.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "b25de9742c7c9b6dcc4007f49a5cfb0c", + "name": "requests", + "requires": [], + "size": 606870, + "version": "2.5.3" + }, + "requests-2.5.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "973fdcfdc4498771c3ae27a46632ddcd", + "name": "requests", + "requires": [], + "size": 599939, + "version": "2.5.3" + }, + "requests-2.5.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-24", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "27dc1f602e2d4638ec311fc8fceb4e83", + "name": "requests", + "requires": [], + "size": 636363, + "version": "2.5.3" + }, + "requests-2.6.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-16", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "d45b5165e328269b716ea5b15a7771bc", + "name": "requests", + "requires": [], + "size": 607262, + "version": "2.6.0" + }, + "requests-2.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-16", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "e583f924bbd6227ee90e91effddf5cd9", + "name": "requests", + "requires": [], + "size": 607896, + "version": "2.6.0" + }, + "requests-2.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-16", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "3614523bae40bf8fe94583efcb69ceb4", + "name": "requests", + "requires": [], + "size": 601028, + "version": "2.6.0" + }, + "requests-2.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-16", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "81381fbf2091771ecd55f8a290ea93ea", + "name": "requests", + "requires": [], + "size": 637536, + "version": "2.6.0" + }, + "requests-2.6.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "a07d1de3954e4002aaa613697da3ab2d", + "name": "requests", + "requires": [], + "size": 607024, + "version": "2.6.2" + }, + "requests-2.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "7539e4c58336085c869fff428006c2c9", + "name": "requests", + "requires": [], + "size": 607176, + "version": "2.6.2" + }, + "requests-2.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "e4f7d195ae2d27998158c78da3a5390d", + "name": "requests", + "requires": [], + "size": 601436, + "version": "2.6.2" + }, + "requests-2.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "2dcb9d811d00045bef61d52c441e4b70", + "name": "requests", + "requires": [], + "size": 636888, + "version": "2.6.2" + }, + "requests-2.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "705dd553424a60ec2559082775884cc2", + "name": "requests", + "requires": [], + "size": 607994, + "version": "2.7.0" + }, + "requests-2.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "b0f209ae04853b865ca5afd5159c0c27", + "name": "requests", + "requires": [], + "size": 607799, + "version": "2.7.0" + }, + "requests-2.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "b996e5ebc18ea5680a84a5ec1ebeb95c", + "name": "requests", + "requires": [], + "size": 601537, + "version": "2.7.0" + }, + "requests-2.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "d546252dd1575a5ffc384bd5f8dd8383", + "name": "requests", + "requires": [], + "size": 638299, + "version": "2.7.0" + }, + "requests-2.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "46f1465a3bb0609c8abad590d1d14f7b", + "name": "requests", + "requires": [], + "size": 636778, + "version": "2.7.0" + }, + "requests-2.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "68db317afc4382cbc8e7473c463e694f", + "name": "requests", + "requires": [], + "size": 613326, + "version": "2.8.0" + }, + "requests-2.8.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "6f22891c5c8f71c0ffb3cabb5c6b3ae5", + "name": "requests", + "requires": [], + "size": 606646, + "version": "2.8.0" + }, + "requests-2.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "dff6f046a2fe09da2d2772c7a4b8bdb0", + "name": "requests", + "requires": [], + "size": 644198, + "version": "2.8.0" + }, + "requests-2.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "f26274cd42be1b87814f7749f010024c", + "name": "requests", + "requires": [], + "size": 643579, + "version": "2.8.0" + }, + "requests-2.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-13", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "56c27e7ace7cf54c8f0aff366aa0dc61", + "name": "requests", + "requires": [], + "size": 617776, + "version": "2.8.1" + }, + "requests-2.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-13", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "d38dd6f7e6dc7121ebcb908de33b89cd", + "name": "requests", + "requires": [], + "size": 617089, + "version": "2.8.1" + }, + "requests-2.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-13", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "766c29734a9165b27e7c8a0fb66e0fb3", + "name": "requests", + "requires": [], + "size": 662743, + "version": "2.8.1" + }, + "requests-2.8.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-13", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "c598c700f5c762f7ed46dd256f0ba26c", + "name": "requests", + "requires": [], + "size": 661580, + "version": "2.8.1" + }, + "requests-2.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "53cf4920621684bf001bdb75a6f78ae4", + "name": "requests", + "requires": [], + "size": 618905, + "version": "2.9.0" + }, + "requests-2.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "acda1588f345060cf1177c5d007ac108", + "name": "requests", + "requires": [], + "size": 623540, + "version": "2.9.0" + }, + "requests-2.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "2b3267eb40e697407b3f902abaabb64c", + "name": "requests", + "requires": [], + "size": 662801, + "version": "2.9.0" + }, + "requests-2.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-15", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "0566cab1408436a08405d3bad4b4b99b", + "name": "requests", + "requires": [], + "size": 662059, + "version": "2.9.0" + }, + "requests-2.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "7e1012a63baa93640bfde3f2b2f441ca", + "name": "requests", + "requires": [], + "size": 619131, + "version": "2.9.1" + }, + "requests-2.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "bc909fcab1af686a2877ec6fc7f62d63", + "name": "requests", + "requires": [], + "size": 623914, + "version": "2.9.1" + }, + "requests-2.9.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "ec83d98664bc86a067e3f21190c997a8", + "name": "requests", + "requires": [], + "size": 662089, + "version": "2.9.1" + }, + "requests-2.9.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "6d308d9df3354a46989034eb0f96f286", + "name": "requests", + "requires": [], + "size": 663490, + "version": "2.9.1" + }, + "requests-kerberos-0.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "pykerberos >=1.1.8,<2.0.0", + "python 2.7*", + "requests >=1.1.0" + ], + "license": "Other", + "md5": "a4a5c442a6ac630317df88e8e9584d44", + "name": "requests-kerberos", + "requires": [], + "size": 9925, + "version": "0.8.0" + }, + "requests-kerberos-0.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "pykerberos >=1.1.8,<2.0.0", + "python 3.4*", + "requests >=1.1.0" + ], + "license": "Other", + "md5": "ba12e63ec450a427a8681eb4122a4f76", + "name": "requests-kerberos", + "requires": [], + "size": 10129, + "version": "0.8.0" + }, + "requests-kerberos-0.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-16", + "depends": [ + "pykerberos >=1.1.8,<2.0.0", + "python 3.5*", + "requests >=1.1.0" + ], + "license": "Other", + "md5": "d978b2cdeb709ff317b480019bb7b41e", + "name": "requests-kerberos", + "requires": [], + "size": 10147, + "version": "0.8.0" + }, + "rope-0.9.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "304f60b18f3b6ab733921b3794984718", + "name": "rope", + "requires": [], + "size": 230293, + "version": "0.9.4" + }, + "rope-0.9.4-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "f00e339e75a79829063e766231db85fa", + "name": "rope", + "requires": [], + "size": 230213, + "version": "0.9.4" + }, + "rope-0.9.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "d8f8560f18e5c80f66c44598e5b6264d", + "name": "rope", + "requires": [], + "size": 230048, + "version": "0.9.4" + }, + "rope-0.9.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "e6017d8b755b05462880c7d30cf581e1", + "name": "rope", + "requires": [], + "size": 230214, + "version": "0.9.4" + }, + "rope-0.9.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "ee5151ec9c02d8b8d17320d24f6adc6a", + "name": "rope", + "requires": [], + "size": 220962, + "version": "0.9.4" + }, + "rope-0.9.4-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "97885abfbfaa8c1ae9580b793f4b40dc", + "name": "rope", + "requires": [], + "size": 245172, + "version": "0.9.4" + }, + "rope-0.9.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "4fd99170b3db1eabfd3c7bd1c0a61b3c", + "name": "rope", + "requires": [], + "size": 220342, + "version": "0.9.4" + }, + "rope-0.9.4-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "5dd601b00a7e887d695ecf1b0703a914", + "name": "rope", + "requires": [], + "size": 244685, + "version": "0.9.4" + }, + "rope-0.9.4-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "GPL", + "license_family": "GPL2", + "md5": "f30efeb3f2be83e4dbdedfb0da6d3dc0", + "name": "rope", + "requires": [], + "size": 243091, + "version": "0.9.4" + }, + "routes-2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.6*", + "repoze.lru 0.6" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "dc176290ceedb61c08f4eb4da7ad3dee", + "name": "routes", + "requires": [], + "size": 48822, + "version": "2.1" + }, + "routes-2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 2.7*", + "repoze.lru 0.6" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "bf64580be8d334067c0acb8e510c7e83", + "name": "routes", + "requires": [], + "size": 49014, + "version": "2.1" + }, + "routes-2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.3*", + "repoze.lru 0.6" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "292fbdcbaa28f2f45f0fd9a88c16b09d", + "name": "routes", + "requires": [], + "size": 49981, + "version": "2.1" + }, + "routes-2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "python 3.4*", + "repoze.lru 0.6" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "2b56b37ea54a84bb5f4cc07d30b4d464", + "name": "routes", + "requires": [], + "size": 50147, + "version": "2.1" + }, + "routes-2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "repoze.lru 0.6" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "e9d07a07b8bd0deae4060e8001b68481", + "name": "routes", + "requires": [], + "size": 49907, + "version": "2.1" + }, + "routes-2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 2.7*", + "repoze.lru", + "six" + ], + "license": "MIT", + "md5": "b06db581f390602d521a0f2ef35470ec", + "name": "routes", + "requires": [], + "size": 49181, + "version": "2.2" + }, + "routes-2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 3.4*", + "repoze.lru", + "six" + ], + "license": "MIT", + "md5": "1f90c45362aa0e3f504f9e75709fb814", + "name": "routes", + "requires": [], + "size": 50130, + "version": "2.2" + }, + "routes-2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "python 3.5*", + "repoze.lru", + "six" + ], + "license": "MIT", + "md5": "601eed9ccafec93e498362de1bc54269", + "name": "routes", + "requires": [], + "size": 49764, + "version": "2.2" + }, + "ruamel_yaml-0.11.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 2.7*", + "yaml 0.1.6" + ], + "license": "MIT", + "md5": "5a59fb14015b12344f293361554ee96d", + "name": "ruamel_yaml", + "requires": [], + "size": 360102, + "version": "0.11.7" + }, + "ruamel_yaml-0.11.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 3.4*", + "yaml 0.1.6" + ], + "license": "MIT", + "md5": "f5deebd34a395a692a87153bc2415401", + "name": "ruamel_yaml", + "requires": [], + "size": 393577, + "version": "0.11.7" + }, + "ruamel_yaml-0.11.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 3.5*", + "yaml 0.1.6" + ], + "license": "MIT", + "md5": "b0100c8bfdb549bd79c8b728bcf58d5b", + "name": "ruamel_yaml", + "requires": [], + "size": 386572, + "version": "0.11.7" + }, + "runipy-0.0.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "748c33dc867c28a29a4d4b6e27b05298", + "name": "runipy", + "requires": [], + "size": 10065, + "version": "0.0.8" + }, + "runipy-0.0.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "2b5c2ad16df26d9f93b085660f2f04d6", + "name": "runipy", + "requires": [], + "size": 10165, + "version": "0.0.8" + }, + "runipy-0.0.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "98fafc7e78b28ba429398428f52163fa", + "name": "runipy", + "requires": [], + "size": 10061, + "version": "0.0.8" + }, + "runipy-0.0.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "fc58d27d7a832ac429109dbc9a1568de", + "name": "runipy", + "requires": [], + "size": 10576, + "version": "0.0.9" + }, + "runipy-0.0.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "cd68176b5048a1470d46b9d6b84c9409", + "name": "runipy", + "requires": [], + "size": 10706, + "version": "0.0.9" + }, + "runipy-0.0.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "636f1a5cf83090d6944ca3584fb38c25", + "name": "runipy", + "requires": [], + "size": 10563, + "version": "0.0.9" + }, + "runipy-0.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "95a0342691c91120f196afeb194b5437", + "name": "runipy", + "requires": [], + "size": 11326, + "version": "0.1.0" + }, + "runipy-0.1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "c4bf9acc4d3f4d9a7b3a408251a25bbb", + "name": "runipy", + "requires": [], + "size": 11429, + "version": "0.1.0" + }, + "runipy-0.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "a52852d017412b60784318bcb2e2e60c", + "name": "runipy", + "requires": [], + "size": 11323, + "version": "0.1.0" + }, + "runipy-0.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "3f3393a78264f35cdb0618c529a130a2", + "name": "runipy", + "requires": [], + "size": 11578, + "version": "0.1.1" + }, + "runipy-0.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 3.3*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "38c109e221e315066c29d8885ce7350f", + "name": "runipy", + "requires": [], + "size": 11713, + "version": "0.1.1" + }, + "runipy-0.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "jinja2", + "pygments", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "BSD", + "md5": "648849efdff678c15e1b5315132dce94", + "name": "runipy", + "requires": [], + "size": 11575, + "version": "0.1.1" + }, + "runipy-0.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "ipython-notebook", + "python 2.7*" + ], + "license": "BSD", + "md5": "b388a982565c037397fe936781e8b5e1", + "name": "runipy", + "requires": [], + "size": 9391, + "version": "0.1.3" + }, + "runipy-0.1.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "ipython-notebook", + "python 3.3*" + ], + "license": "BSD", + "md5": "3f4ee4a61ddd4bc873ffe06bca799dc7", + "name": "runipy", + "requires": [], + "size": 9512, + "version": "0.1.3" + }, + "runipy-0.1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "ipython-notebook", + "python 3.4*" + ], + "license": "BSD", + "md5": "729570b787ed9abcaa48b6ce15364160", + "name": "runipy", + "requires": [], + "size": 9501, + "version": "0.1.3" + }, + "runipy-0.1.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipython-notebook", + "python 3.5*" + ], + "license": "BSD", + "md5": "b269c2f6bbfb9fde64b3c2bb39b37dae", + "name": "runipy", + "requires": [], + "size": 9227, + "version": "0.1.3" + }, + "sas7bdat-2.0.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 2.6*", + "six" + ], + "license": "MIT", + "md5": "2ffb1a8833aae07fb57b1fe672ee73d5", + "name": "sas7bdat", + "requires": [], + "size": 26045, + "version": "2.0.4" + }, + "sas7bdat-2.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 2.7*", + "six" + ], + "license": "MIT", + "md5": "06b8c44df6b9d347b1db626d2defa0a9", + "name": "sas7bdat", + "requires": [], + "size": 25995, + "version": "2.0.4" + }, + "sas7bdat-2.0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 3.3*", + "six" + ], + "license": "MIT", + "md5": "fd5116187da87f265db2bd4c6aa30385", + "name": "sas7bdat", + "requires": [], + "size": 26634, + "version": "2.0.4" + }, + "sas7bdat-2.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 3.4*", + "six" + ], + "license": "MIT", + "md5": "70e2a0eedcf26e6d1c5c84d3fb4db12b", + "name": "sas7bdat", + "requires": [], + "size": 26785, + "version": "2.0.4" + }, + "sas7bdat-2.0.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "six" + ], + "license": "MIT", + "md5": "ad7530024a0f85e01989ea373e274172", + "name": "sas7bdat", + "requires": [], + "size": 26725, + "version": "2.0.4" + }, + "sas7bdat-2.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 2.7*", + "six" + ], + "license": "MIT", + "md5": "757035d8d08eead0af17a92150f8687b", + "name": "sas7bdat", + "requires": [], + "size": 25950, + "version": "2.0.6" + }, + "sas7bdat-2.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.4*", + "six" + ], + "license": "MIT", + "md5": "1409cf75b83b3c062264ddb66ba41723", + "name": "sas7bdat", + "requires": [], + "size": 26727, + "version": "2.0.6" + }, + "sas7bdat-2.0.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "python 3.5*", + "six" + ], + "license": "MIT", + "md5": "7d84761343bf3af1e4e7cbc3eb8d3ac8", + "name": "sas7bdat", + "requires": [], + "size": 26585, + "version": "2.0.6" + }, + "scikit-bio-0.1.3-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "future 0.12.1", + "matplotlib", + "numpy 1.8*", + "pandas", + "python 2.7*" + ], + "license": "BSD", + "md5": "b6ffec98ab4eaff9322c65a36114f040", + "name": "scikit-bio", + "requires": [], + "size": 771265, + "version": "0.1.3" + }, + "scikit-bio-0.1.3-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "future 0.12.1", + "matplotlib", + "numpy 1.8*", + "pandas", + "python 3.3*" + ], + "license": "BSD", + "md5": "6c1cb8cafad698b9b57caacce62f422c", + "name": "scikit-bio", + "requires": [], + "size": 724529, + "version": "0.1.3" + }, + "scikit-bio-0.1.3-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "future 0.12.1", + "matplotlib", + "numpy 1.8*", + "pandas", + "python 3.4*" + ], + "license": "BSD", + "md5": "bf0127e37abea23b8f0c25e77235ef6f", + "name": "scikit-bio", + "requires": [], + "size": 725899, + "version": "0.1.3" + }, + "scikit-bio-0.2.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "future 0.12.4", + "matplotlib", + "natsort 3.4.1", + "numpy 1.8*", + "pandas", + "python 2.7*" + ], + "license": "BSD", + "md5": "7b3a40d0cf72da5b56cc86bb1f41868e", + "name": "scikit-bio", + "requires": [], + "size": 752796, + "version": "0.2.0" + }, + "scikit-bio-0.2.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "future 0.12.4", + "matplotlib", + "natsort 3.4.1", + "numpy 1.8*", + "pandas", + "python 3.3*" + ], + "license": "BSD", + "md5": "5203796440dabd345eaf981d7b01853f", + "name": "scikit-bio", + "requires": [], + "size": 738110, + "version": "0.2.0" + }, + "scikit-bio-0.2.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "future 0.12.4", + "matplotlib", + "natsort 3.4.1", + "numpy 1.8*", + "pandas", + "python 3.4*" + ], + "license": "BSD", + "md5": "23d4bf0875672170b2cca8d5e3bf0a9b", + "name": "scikit-bio", + "requires": [], + "size": 746504, + "version": "0.2.0" + }, + "scikit-bio-0.2.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "future 0.13.0", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "BSD", + "md5": "b5fd245f08bda52a1d3b574dafc6fc1e", + "name": "scikit-bio", + "requires": [], + "size": 772819, + "version": "0.2.0" + }, + "scikit-bio-0.2.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "future 0.13.0", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "BSD", + "md5": "9ccc242b8d7c729731e38275aad94a98", + "name": "scikit-bio", + "requires": [], + "size": 757512, + "version": "0.2.0" + }, + "scikit-bio-0.2.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-11", + "depends": [ + "future 0.13.0", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "BSD", + "md5": "275b36d69143bcc0a017752b4f55c057", + "name": "scikit-bio", + "requires": [], + "size": 773007, + "version": "0.2.0" + }, + "scikit-bio-0.2.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "future 0.14.1", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 2.7*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "c676f59f5b069aa45a293fbd511f3f56", + "name": "scikit-bio", + "requires": [], + "size": 927132, + "version": "0.2.1" + }, + "scikit-bio-0.2.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "future 0.14.1", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 3.3*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "cc825ea429fe1613b1477497a317a0f9", + "name": "scikit-bio", + "requires": [], + "size": 932840, + "version": "0.2.1" + }, + "scikit-bio-0.2.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "future 0.14.1", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 3.4*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "ad445c17fcbd5754f2178e97c36af088", + "name": "scikit-bio", + "requires": [], + "size": 931113, + "version": "0.2.1" + }, + "scikit-bio-0.2.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-09", + "depends": [ + "future 0.14.2", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 2.7*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "57e7a4a5b2dc457d2f993c7f290b2ed6", + "name": "scikit-bio", + "requires": [], + "size": 968047, + "version": "0.2.2" + }, + "scikit-bio-0.2.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-09", + "depends": [ + "future 0.14.2", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 3.3*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "bb7e6ec92ff559bc3e200305b02a1d3a", + "name": "scikit-bio", + "requires": [], + "size": 981860, + "version": "0.2.2" + }, + "scikit-bio-0.2.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-09", + "depends": [ + "future 0.14.2", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 3.4*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "8502f17e205da33fd8ab3585526a63c6", + "name": "scikit-bio", + "requires": [], + "size": 973794, + "version": "0.2.2" + }, + "scikit-bio-0.2.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "future 0.14.3", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 2.7*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "e4cc4e8f3328ebf17db783628510abab", + "name": "scikit-bio", + "requires": [], + "size": 969694, + "version": "0.2.3" + }, + "scikit-bio-0.2.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "future 0.14.3", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 3.3*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "60b36c80f5f484431741070d4f7f396a", + "name": "scikit-bio", + "requires": [], + "size": 983584, + "version": "0.2.3" + }, + "scikit-bio-0.2.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-17", + "depends": [ + "future 0.14.3", + "ipython", + "matplotlib", + "natsort 3.5.0", + "numpy 1.9*", + "pandas", + "python 3.4*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "4f99f708aa09d2af6e3f99f005768454", + "name": "scikit-bio", + "requires": [], + "size": 976184, + "version": "0.2.3" + }, + "scikit-bio-0.4.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.15.2", + "ipython", + "lockfile 0.10.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.10*", + "pandas", + "python 2.7*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "21564c6a58a09716870e840819597bde", + "name": "scikit-bio", + "requires": [], + "size": 1002479, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.15.2", + "ipython", + "lockfile 0.10.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.10*", + "pandas", + "python 3.4*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "72d4d994c05f29306a974e0a3ffc4ec2", + "name": "scikit-bio", + "requires": [], + "size": 1000192, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.15.2", + "ipython", + "lockfile 0.10.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.10*", + "pandas", + "python 3.5*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "d1a5fa2aca9aa0368c4e6f600cb7d7bd", + "name": "scikit-bio", + "requires": [], + "size": 998669, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.15.2", + "ipython", + "lockfile 0.12.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.11*", + "pandas", + "python 2.7*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "1e9cff0321c995e7ec6a8ba1488da29b", + "name": "scikit-bio", + "requires": [], + "size": 1003144, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.15.2", + "ipython", + "lockfile 0.12.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.11*", + "pandas", + "python 3.4*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "352f2afa89c946b053748872db7c27c9", + "name": "scikit-bio", + "requires": [], + "size": 1000973, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.15.2", + "ipython", + "lockfile 0.12.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.11*", + "pandas", + "python 3.5*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "7eeccb31fe250723e529d6149c57c183", + "name": "scikit-bio", + "requires": [], + "size": 991866, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.14.3", + "ipython", + "lockfile 0.10.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.9*", + "pandas", + "python 2.7*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "4c7662c98a4295482e2b7a746a9ded7b", + "name": "scikit-bio", + "requires": [], + "size": 1002668, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.14.3", + "ipython", + "lockfile 0.10.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.9*", + "pandas", + "python 3.3*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "9c1a1f517b77d521848ffcfebeab0492", + "name": "scikit-bio", + "requires": [], + "size": 993581, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-13", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.14.3", + "ipython", + "lockfile 0.10.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.9*", + "pandas", + "python 3.4*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "58e894490c10fb4b50554176b2f77298", + "name": "scikit-bio", + "requires": [], + "size": 999721, + "version": "0.4.0" + }, + "scikit-bio-0.4.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "bz2file 0.98", + "cachecontrol 0.11.5", + "contextlib2 0.4.0", + "decorator", + "future 0.15.0", + "ipython", + "lockfile 0.10.2", + "matplotlib", + "natsort 4.0.3", + "nose", + "numpy 1.9*", + "pandas", + "python 3.5*", + "scipy", + "six" + ], + "license": "BSD", + "md5": "fbe12f5e523564e3a5ce67dc172b873a", + "name": "scikit-bio", + "requires": [], + "size": 998312, + "version": "0.4.0" + }, + "scikit-image-0.10.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "eeb512c7e0de7bd4bf6aeb16034ebbfc", + "name": "scikit-image", + "requires": [], + "size": 22440413, + "version": "0.10.0" + }, + "scikit-image-0.10.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7250c70fd0d3af47df9b0fa7394c989e", + "name": "scikit-image", + "requires": [], + "size": 22429556, + "version": "0.10.0" + }, + "scikit-image-0.10.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ade0221865dc3327df3ce6def9b6858a", + "name": "scikit-image", + "requires": [], + "size": 21987053, + "version": "0.10.0" + }, + "scikit-image-0.10.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2f5a642a4191427b5459db3a0cdd5de1", + "name": "scikit-image", + "requires": [], + "size": 22727620, + "version": "0.10.0" + }, + "scikit-image-0.10.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3b3b00a9800512536b060cc24719f0f2", + "name": "scikit-image", + "requires": [], + "size": 22298320, + "version": "0.10.1" + }, + "scikit-image-0.10.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4df9ee35a39c29c551b3b75a1070984a", + "name": "scikit-image", + "requires": [], + "size": 22295957, + "version": "0.10.1" + }, + "scikit-image-0.10.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "fb1185e8f8091df52861d42a9e0150f5", + "name": "scikit-image", + "requires": [], + "size": 21873122, + "version": "0.10.1" + }, + "scikit-image-0.10.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "78c30d645823913a58baf921aa012e18", + "name": "scikit-image", + "requires": [], + "size": 22533645, + "version": "0.10.1" + }, + "scikit-image-0.10.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "38046c75e6db820be6474ca8621ccfe6", + "name": "scikit-image", + "requires": [], + "size": 22669887, + "version": "0.10.1" + }, + "scikit-image-0.10.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "adc72c6e1d630bc1a1056d2adcff9df4", + "name": "scikit-image", + "requires": [], + "size": 22678294, + "version": "0.10.1" + }, + "scikit-image-0.10.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "76c8917b86bb0e28b9319ad93bb3267c", + "name": "scikit-image", + "requires": [], + "size": 22185410, + "version": "0.10.1" + }, + "scikit-image-0.10.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9ecf158e36d108c43d5682afd843be2f", + "name": "scikit-image", + "requires": [], + "size": 23004057, + "version": "0.10.1" + }, + "scikit-image-0.11.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 2.6*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7370557badeaea132e81fa4e8847b6f7", + "name": "scikit-image", + "requires": [], + "size": 24983320, + "version": "0.11.0" + }, + "scikit-image-0.11.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "63b0f69de83d527a415a964c8f6c243f", + "name": "scikit-image", + "requires": [], + "size": 24994094, + "version": "0.11.0" + }, + "scikit-image-0.11.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 3.3*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9a339f4d6b011994bbaf2d9383ac524a", + "name": "scikit-image", + "requires": [], + "size": 24457738, + "version": "0.11.0" + }, + "scikit-image-0.11.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1feffe2b7fb61e198be6a5f7faefbf8e", + "name": "scikit-image", + "requires": [], + "size": 25298188, + "version": "0.11.0" + }, + "scikit-image-0.11.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 2.6*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3e8bd81c5ec5a3c937f30616c8f079bf", + "name": "scikit-image", + "requires": [], + "size": 24983793, + "version": "0.11.2" + }, + "scikit-image-0.11.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6530c83c18628949a99574846e56cc9e", + "name": "scikit-image", + "requires": [], + "size": 24991344, + "version": "0.11.2" + }, + "scikit-image-0.11.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 3.3*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "29170165eb7bb7bfb058b96212d4ff3b", + "name": "scikit-image", + "requires": [], + "size": 24456723, + "version": "0.11.2" + }, + "scikit-image-0.11.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "53fe20123920ae4f0afaf85ff1d29c66", + "name": "scikit-image", + "requires": [], + "size": 25296732, + "version": "0.11.2" + }, + "scikit-image-0.11.3-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.10*", + "pillow", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "968d4551c69ae66f4cdcf85ab31226fb", + "name": "scikit-image", + "requires": [], + "size": 25168367, + "version": "0.11.3" + }, + "scikit-image-0.11.3-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.10*", + "pillow", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "fc6fd13aa99bbcd72fdca8bb48af1067", + "name": "scikit-image", + "requires": [], + "size": 25461046, + "version": "0.11.3" + }, + "scikit-image-0.11.3-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.10*", + "pillow", + "python 3.5*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4236909ad01b13aa8533da27950bf48c", + "name": "scikit-image", + "requires": [], + "size": 25459000, + "version": "0.11.3" + }, + "scikit-image-0.11.3-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 2.6*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "78b8d478adb60083be2ce899d20c2197", + "name": "scikit-image", + "requires": [], + "size": 24986665, + "version": "0.11.3" + }, + "scikit-image-0.11.3-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "95e7142016c710fd2c944ec067d26c49", + "name": "scikit-image", + "requires": [], + "size": 24991284, + "version": "0.11.3" + }, + "scikit-image-0.11.3-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 3.3*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "cd00bd54727d052a54ded8873653ba13", + "name": "scikit-image", + "requires": [], + "size": 24459270, + "version": "0.11.3" + }, + "scikit-image-0.11.3-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0d8b39bb51edea68c3c8c38bf651f3ac", + "name": "scikit-image", + "requires": [], + "size": 25296555, + "version": "0.11.3" + }, + "scikit-image-0.11.3-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.9*", + "pillow", + "python 3.5*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4ab19055278a7c1f1efead0c3520c3d0", + "name": "scikit-image", + "requires": [], + "size": 25461083, + "version": "0.11.3" + }, + "scikit-image-0.12.3-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.10*", + "pillow", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2fd090ae3e3283300a55aef4fbff1a9c", + "name": "scikit-image", + "requires": [], + "size": 27634517, + "version": "0.12.3" + }, + "scikit-image-0.12.3-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.10*", + "pillow", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "84b5c8e6771d65f740454c95822a60aa", + "name": "scikit-image", + "requires": [], + "size": 28010111, + "version": "0.12.3" + }, + "scikit-image-0.12.3-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-03-08", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.10*", + "pillow", + "python 3.5*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "af8089a23f9b18816af0f0eb71c06f8f", + "name": "scikit-image", + "requires": [], + "size": 27882036, + "version": "0.12.3" + }, + "scikit-image-0.12.3-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.11*", + "pillow", + "python 2.7*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0cb91844fc2aadbd4f6eea73ba580aa4", + "name": "scikit-image", + "requires": [], + "size": 27632525, + "version": "0.12.3" + }, + "scikit-image-0.12.3-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.11*", + "pillow", + "python 3.4*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "eef7d4d79577033de47e5472469ca94e", + "name": "scikit-image", + "requires": [], + "size": 28008747, + "version": "0.12.3" + }, + "scikit-image-0.12.3-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "matplotlib", + "networkx", + "numpy 1.11*", + "pillow", + "python 3.5*", + "scipy", + "six" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "711c2fd804c140b97ec65cf8fa1485d5", + "name": "scikit-image", + "requires": [], + "size": 27885802, + "version": "0.12.3" + }, + "scikit-image-0.7.2-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "cba50f561cd26be8b91800f93a6d0895", + "name": "scikit-image", + "requires": [], + "size": 4977609, + "version": "0.7.2" + }, + "scikit-image-0.7.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "65df3cdfb1a5895a516b04bd3c269327", + "name": "scikit-image", + "requires": [], + "size": 4975788, + "version": "0.7.2" + }, + "scikit-image-0.7.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4cd3101eaa62ce46e333a379a08e7513", + "name": "scikit-image", + "requires": [], + "size": 4982189, + "version": "0.7.2" + }, + "scikit-image-0.7.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b301d1daf8e497e33d1c96a4f1e3b583", + "name": "scikit-image", + "requires": [], + "size": 4978053, + "version": "0.7.2" + }, + "scikit-image-0.7.2-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "421fb14c186d2ff79524058677bac3ba", + "name": "scikit-image", + "requires": [], + "size": 4689579, + "version": "0.7.2" + }, + "scikit-image-0.8.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "06922561edebb2bf020d6f170da048a1", + "name": "scikit-image", + "requires": [], + "size": 6032045, + "version": "0.8.0" + }, + "scikit-image-0.8.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1011f9aa17af3250e93112388765bcad", + "name": "scikit-image", + "requires": [], + "size": 6041101, + "version": "0.8.0" + }, + "scikit-image-0.8.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "5f08565538f02d93e9d2b915921bbeb3", + "name": "scikit-image", + "requires": [], + "size": 6040869, + "version": "0.8.0" + }, + "scikit-image-0.8.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9d44675a0d0f456fd44b946980527f13", + "name": "scikit-image", + "requires": [], + "size": 6049620, + "version": "0.8.0" + }, + "scikit-image-0.8.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6e131918c06bc226176dba215989d065", + "name": "scikit-image", + "requires": [], + "size": 5633991, + "version": "0.8.0" + }, + "scikit-image-0.8.2-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "07ea0838ce39c5dab1e8405002b98ee3", + "name": "scikit-image", + "requires": [], + "size": 6041134, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "da6acee292ef33f7f8dba5f621c4163d", + "name": "scikit-image", + "requires": [], + "size": 6172081, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np16py26_2.tar.bz2": { + "build": "np16py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3535be5d065eac3cb31e5c881356bbcd", + "name": "scikit-image", + "requires": [], + "size": 6173181, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "148e4be6c8e4303627358c50957edbc0", + "name": "scikit-image", + "requires": [], + "size": 6048229, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a3d8b5bf339fb526e799cc8821841540", + "name": "scikit-image", + "requires": [], + "size": 6171386, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np16py27_2.tar.bz2": { + "build": "np16py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1a3b18b650a4495927169dc089e82287", + "name": "scikit-image", + "requires": [], + "size": 6164608, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "07c06f12d24c23b4ccdb12f4b5803b03", + "name": "scikit-image", + "requires": [], + "size": 6049305, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ac9558d9a9d4280e75ab757d645fbc49", + "name": "scikit-image", + "requires": [], + "size": 6177791, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py26_2.tar.bz2": { + "build": "np17py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ebdc4cbdbf2bd76d3aec2777891e9696", + "name": "scikit-image", + "requires": [], + "size": 6178675, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "fd22d1d98f773f7d50b53165f91b7806", + "name": "scikit-image", + "requires": [], + "size": 6058067, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6a146e3c252f1ae424f096123cc5d3bf", + "name": "scikit-image", + "requires": [], + "size": 6178120, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py27_2.tar.bz2": { + "build": "np17py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e41acee560e37e6e3984f29b847200fc", + "name": "scikit-image", + "requires": [], + "size": 6172277, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7d132ce0ce8c27320058911d8842aad3", + "name": "scikit-image", + "requires": [], + "size": 5639661, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "312fc9052bfc579c2ac3d629b478f6d6", + "name": "scikit-image", + "requires": [], + "size": 5688091, + "version": "0.8.2" + }, + "scikit-image-0.8.2-np17py33_2.tar.bz2": { + "build": "np17py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d0d19d2ae3d840f7bfd62faba8958dc2", + "name": "scikit-image", + "requires": [], + "size": 5689246, + "version": "0.8.2" + }, + "scikit-image-0.9.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c3605e64fd3fd82d82fe286744c6c2ec", + "name": "scikit-image", + "requires": [], + "size": 11927199, + "version": "0.9.1" + }, + "scikit-image-0.9.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f204c1d1703ec4cdb2783996fc055c67", + "name": "scikit-image", + "requires": [], + "size": 11930651, + "version": "0.9.1" + }, + "scikit-image-0.9.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b34b64cfc26bd2a38592fc8407c1c9bc", + "name": "scikit-image", + "requires": [], + "size": 11932598, + "version": "0.9.1" + }, + "scikit-image-0.9.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "36e4180b420728b2bb65306a315fd89d", + "name": "scikit-image", + "requires": [], + "size": 11935925, + "version": "0.9.1" + }, + "scikit-image-0.9.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0a4e87e265ab1cb0cccf71413eb39de3", + "name": "scikit-image", + "requires": [], + "size": 11395275, + "version": "0.9.1" + }, + "scikit-image-0.9.3-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1d1843e03cb8b5e348e256596860e061", + "name": "scikit-image", + "requires": [], + "size": 11929085, + "version": "0.9.3" + }, + "scikit-image-0.9.3-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "34cef50d679ce358b35c959c5dda7cd9", + "name": "scikit-image", + "requires": [], + "size": 11930878, + "version": "0.9.3" + }, + "scikit-image-0.9.3-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "907dc0254455a997da6705141662b23a", + "name": "scikit-image", + "requires": [], + "size": 11936178, + "version": "0.9.3" + }, + "scikit-image-0.9.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "77f37f14e95740d61f523dad873330fe", + "name": "scikit-image", + "requires": [], + "size": 11938533, + "version": "0.9.3" + }, + "scikit-image-0.9.3-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0c6ada97f63a033c36a2c58d1a82a774", + "name": "scikit-image", + "requires": [], + "size": 11397397, + "version": "0.9.3" + }, + "scikit-image-0.9.3-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "123a48c5c12e7b34d5f07179d1b27773", + "name": "scikit-image", + "requires": [], + "size": 12048280, + "version": "0.9.3" + }, + "scikit-image-0.9.3-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "381ada8e210362682a8a1373fe84814c", + "name": "scikit-image", + "requires": [], + "size": 12050259, + "version": "0.9.3" + }, + "scikit-image-0.9.3-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "5c7ad03d6e1cc39f93a9bea8e782f18c", + "name": "scikit-image", + "requires": [], + "size": 11522789, + "version": "0.9.3" + }, + "scikit-image-0.9.3-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "67c9bd065b51a1acd3b8435a25be0c77", + "name": "scikit-image", + "requires": [], + "size": 12807860, + "version": "0.9.3" + }, + "scikit-learn-0.11-np15py26_ce0.tar.bz2": { + "build": "np15py26_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7977e4e7895609d232ffcd3d937d902a", + "name": "scikit-learn", + "requires": [], + "size": 3426746, + "version": "0.11" + }, + "scikit-learn-0.11-np15py27_ce0.tar.bz2": { + "build": "np15py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ca680c76332277bdffca5681cda580dc", + "name": "scikit-learn", + "requires": [], + "size": 3432837, + "version": "0.11" + }, + "scikit-learn-0.11-np16py26_ce0.tar.bz2": { + "build": "np16py26_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1220773c8b408e7661fc3412f0414bc1", + "name": "scikit-learn", + "requires": [], + "size": 3439904, + "version": "0.11" + }, + "scikit-learn-0.11-np16py27_ce0.tar.bz2": { + "build": "np16py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "503a1210d0e1facf7a6e170bec58e901", + "name": "scikit-learn", + "requires": [], + "size": 3418181, + "version": "0.11" + }, + "scikit-learn-0.11-np17py26_ce0.tar.bz2": { + "build": "np17py26_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0f267ba9aa6b161a0c57a6c0120ce4ca", + "name": "scikit-learn", + "requires": [], + "size": 3434981, + "version": "0.11" + }, + "scikit-learn-0.11-np17py27_ce0.tar.bz2": { + "build": "np17py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "dfd34f131363a4e75356818ba7faae5e", + "name": "scikit-learn", + "requires": [], + "size": 3423990, + "version": "0.11" + }, + "scikit-learn-0.12.1-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8e6e0147bd376cac9e74ccfbd4395414", + "name": "scikit-learn", + "requires": [], + "size": 3706644, + "version": "0.12.1" + }, + "scikit-learn-0.12.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ef80aa0c10fea6c1745f341cf6af5918", + "name": "scikit-learn", + "requires": [], + "size": 3706659, + "version": "0.12.1" + }, + "scikit-learn-0.12.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1e263958942f993d2cac0a977c39b382", + "name": "scikit-learn", + "requires": [], + "size": 3707053, + "version": "0.12.1" + }, + "scikit-learn-0.12.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c7f5d9efb2cb7f3ab01fe862ea69d06d", + "name": "scikit-learn", + "requires": [], + "size": 3707256, + "version": "0.12.1" + }, + "scikit-learn-0.12.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1bb726916045e0ac2c526408829555bb", + "name": "scikit-learn", + "requires": [], + "size": 3706424, + "version": "0.12.1" + }, + "scikit-learn-0.12.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8697d623de836786cf52ba575e3d15ab", + "name": "scikit-learn", + "requires": [], + "size": 3710201, + "version": "0.12.1" + }, + "scikit-learn-0.13-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "49baf194cd93c324474bcdae4af0a455", + "name": "scikit-learn", + "requires": [], + "size": 4621054, + "version": "0.13" + }, + "scikit-learn-0.13-np15py26_1.tar.bz2": { + "build": "np15py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6c8bef225166c76c932ae0f03d88ea66", + "name": "scikit-learn", + "requires": [], + "size": 4614852, + "version": "0.13" + }, + "scikit-learn-0.13-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b97ec4061c80b933ff943c72e0621117", + "name": "scikit-learn", + "requires": [], + "size": 4614682, + "version": "0.13" + }, + "scikit-learn-0.13-np15py27_1.tar.bz2": { + "build": "np15py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "18d08c837e4dfad16e26b62535fbe8c1", + "name": "scikit-learn", + "requires": [], + "size": 4609674, + "version": "0.13" + }, + "scikit-learn-0.13-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7fb1267e238141bbc97403497ee3cb9b", + "name": "scikit-learn", + "requires": [], + "size": 4623671, + "version": "0.13" + }, + "scikit-learn-0.13-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1e5f74c856957e6e05c9906e3f9b914d", + "name": "scikit-learn", + "requires": [], + "size": 4615700, + "version": "0.13" + }, + "scikit-learn-0.13-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "318a88ca78a89b6c6d9316661cc01e0f", + "name": "scikit-learn", + "requires": [], + "size": 4617268, + "version": "0.13" + }, + "scikit-learn-0.13-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "89da93938f3ada083cf14e462f24446d", + "name": "scikit-learn", + "requires": [], + "size": 4613971, + "version": "0.13" + }, + "scikit-learn-0.13-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f8777e7f5224d75d2bf5f312cb694f25", + "name": "scikit-learn", + "requires": [], + "size": 4626203, + "version": "0.13" + }, + "scikit-learn-0.13-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6b8201560fea6dedce6ceb2065f839a3", + "name": "scikit-learn", + "requires": [], + "size": 4620086, + "version": "0.13" + }, + "scikit-learn-0.13-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8f11627544b735d0ebde69a91951e0b2", + "name": "scikit-learn", + "requires": [], + "size": 4620511, + "version": "0.13" + }, + "scikit-learn-0.13-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "99a469b39058b9e3a7aba397ef895439", + "name": "scikit-learn", + "requires": [], + "size": 4615798, + "version": "0.13" + }, + "scikit-learn-0.13.1-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a990c6d1e7d98a20887be5f8ba86058b", + "name": "scikit-learn", + "requires": [], + "size": 4594976, + "version": "0.13.1" + }, + "scikit-learn-0.13.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1c49c180e37caf0b5c26afea39856cb5", + "name": "scikit-learn", + "requires": [], + "size": 4588502, + "version": "0.13.1" + }, + "scikit-learn-0.13.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "dcb841e6bb5821b004f00d06fa910728", + "name": "scikit-learn", + "requires": [], + "size": 4596933, + "version": "0.13.1" + }, + "scikit-learn-0.13.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8f7caba17dc6552517e1ddbef866315f", + "name": "scikit-learn", + "requires": [], + "size": 4591652, + "version": "0.13.1" + }, + "scikit-learn-0.13.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e31ad177e69dd70321980d350659e0e6", + "name": "scikit-learn", + "requires": [], + "size": 4599730, + "version": "0.13.1" + }, + "scikit-learn-0.13.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "55561b7a9a266497ea413d312ab13728", + "name": "scikit-learn", + "requires": [], + "size": 4596213, + "version": "0.13.1" + }, + "scikit-learn-0.14.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "bf9a9b3274e1a1fd6a95b64a987d86aa", + "name": "scikit-learn", + "requires": [], + "size": 6482806, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8f1d43582ae8152c14b5451af4ff93bf", + "name": "scikit-learn", + "requires": [], + "size": 6483067, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6b5ebf4ac9f37af0628345adf6de35ed", + "name": "scikit-learn", + "requires": [], + "size": 6477337, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0d2c5c8230bf060d1e042047282d6311", + "name": "scikit-learn", + "requires": [], + "size": 6477138, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "092085e13ddf919b58177e0e67561ac8", + "name": "scikit-learn", + "requires": [], + "size": 6485632, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "94aa5fd66daf75bc55313fa2a52ec24e", + "name": "scikit-learn", + "requires": [], + "size": 6485779, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "20b5edd4fe61fa1488ec8dc8ee2894d3", + "name": "scikit-learn", + "requires": [], + "size": 6481129, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "65851a99f3b662a92b6e8afc48518cbb", + "name": "scikit-learn", + "requires": [], + "size": 6481129, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "947417fe740f2e1a76e6dd26902b1ea3", + "name": "scikit-learn", + "requires": [], + "size": 6125263, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "eac9a73b3fa49f7bde3c9910b7aaeb76", + "name": "scikit-learn", + "requires": [], + "size": 6125531, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np18py26_1.tar.bz2": { + "build": "np18py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b3cffa3ab71ef29f9b09c3111743e57a", + "name": "scikit-learn", + "requires": [], + "size": 6483589, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np18py27_1.tar.bz2": { + "build": "np18py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "cc5b835dd391afd03a19475f696aa5e7", + "name": "scikit-learn", + "requires": [], + "size": 6484500, + "version": "0.14.1" + }, + "scikit-learn-0.14.1-np18py33_1.tar.bz2": { + "build": "np18py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4f4e83f8da0c39256d33bb317fa08cd7", + "name": "scikit-learn", + "requires": [], + "size": 6127633, + "version": "0.14.1" + }, + "scikit-learn-0.15.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9b87699af82e6e7440b7274c32731c99", + "name": "scikit-learn", + "requires": [], + "size": 7279048, + "version": "0.15.0" + }, + "scikit-learn-0.15.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "5e2b0f48aab82f4a2d35f89fbe931a9d", + "name": "scikit-learn", + "requires": [], + "size": 7275921, + "version": "0.15.0" + }, + "scikit-learn-0.15.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e6064d80e17a523fc5f2fbaf5ad883e7", + "name": "scikit-learn", + "requires": [], + "size": 6999643, + "version": "0.15.0" + }, + "scikit-learn-0.15.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c0baa4730f5bdb230207b465196dd035", + "name": "scikit-learn", + "requires": [], + "size": 7321772, + "version": "0.15.0" + }, + "scikit-learn-0.15.0b1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a1c29de71d0ba19ae985475828d1de39", + "name": "scikit-learn", + "requires": [], + "size": 7305027, + "version": "0.15.0b1" + }, + "scikit-learn-0.15.0b1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7277f511382d1ed945d2ab62002c3f04", + "name": "scikit-learn", + "requires": [], + "size": 7310139, + "version": "0.15.0b1" + }, + "scikit-learn-0.15.0b1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0416cb30beba5168472163b6de32303c", + "name": "scikit-learn", + "requires": [], + "size": 7026516, + "version": "0.15.0b1" + }, + "scikit-learn-0.15.0b1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "496645b31f688d75349eb25340fc47df", + "name": "scikit-learn", + "requires": [], + "size": 7326255, + "version": "0.15.0b1" + }, + "scikit-learn-0.15.0b2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b98a215adc57ab41e51ba7fc218f8cc4", + "name": "scikit-learn", + "requires": [], + "size": 7273921, + "version": "0.15.0b2" + }, + "scikit-learn-0.15.0b2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d19372d8e4d7bafea75120e4caec193e", + "name": "scikit-learn", + "requires": [], + "size": 7278055, + "version": "0.15.0b2" + }, + "scikit-learn-0.15.0b2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6efe5fe254319e028358af9271b69fc5", + "name": "scikit-learn", + "requires": [], + "size": 6986270, + "version": "0.15.0b2" + }, + "scikit-learn-0.15.0b2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "bde9ce2eb2f6df186507d58e0a05dced", + "name": "scikit-learn", + "requires": [], + "size": 7310190, + "version": "0.15.0b2" + }, + "scikit-learn-0.15.1-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "55b58d162e251c53a71771b3431e9d4a", + "name": "scikit-learn", + "requires": [], + "size": 7278023, + "version": "0.15.1" + }, + "scikit-learn-0.15.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8751dee587506ae656aee17681bc9079", + "name": "scikit-learn", + "requires": [], + "size": 7276751, + "version": "0.15.1" + }, + "scikit-learn-0.15.1-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7dbb44f36bf99e786d9847ca4d8e70d5", + "name": "scikit-learn", + "requires": [], + "size": 7000640, + "version": "0.15.1" + }, + "scikit-learn-0.15.1-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "numpy 1.8*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2c07014c559182eab3d821010d5958e5", + "name": "scikit-learn", + "requires": [], + "size": 7329566, + "version": "0.15.1" + }, + "scikit-learn-0.15.2-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "nose", + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b673ffd4bab9a088a4e629202e2d40d9", + "name": "scikit-learn", + "requires": [], + "size": 7887753, + "version": "0.15.2" + }, + "scikit-learn-0.15.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "nose", + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2faec611f05d4e6bef3d67e9e8c82201", + "name": "scikit-learn", + "requires": [], + "size": 7882052, + "version": "0.15.2" + }, + "scikit-learn-0.15.2-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "nose", + "numpy 1.8*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "39e0536f70c1ba30edc450c7c36f1422", + "name": "scikit-learn", + "requires": [], + "size": 7468467, + "version": "0.15.2" + }, + "scikit-learn-0.15.2-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-09-08", + "depends": [ + "nose", + "numpy 1.8*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7bb98251370bdb830f6f02633909417f", + "name": "scikit-learn", + "requires": [], + "size": 7905861, + "version": "0.15.2" + }, + "scikit-learn-0.15.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "nose", + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "531037cc4b15f3867a6a1133d26b6125", + "name": "scikit-learn", + "requires": [], + "size": 7888287, + "version": "0.15.2" + }, + "scikit-learn-0.15.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "nose", + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b14cdd6cac7561a508d9e418493f17e8", + "name": "scikit-learn", + "requires": [], + "size": 7881799, + "version": "0.15.2" + }, + "scikit-learn-0.15.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "nose", + "numpy 1.9*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3775825b9375db64f3b1a9877ead99f0", + "name": "scikit-learn", + "requires": [], + "size": 7469269, + "version": "0.15.2" + }, + "scikit-learn-0.15.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-10", + "depends": [ + "nose", + "numpy 1.9*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e4b9c8e2726dbc4fd9e26dc94aa40b80", + "name": "scikit-learn", + "requires": [], + "size": 7905240, + "version": "0.15.2" + }, + "scikit-learn-0.16.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-30", + "depends": [ + "nose", + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c6833f865e347c250d3031da038017c5", + "name": "scikit-learn", + "requires": [], + "size": 8252970, + "version": "0.16.0" + }, + "scikit-learn-0.16.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-30", + "depends": [ + "nose", + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a39a159c9e9df4d6b4082089a878239b", + "name": "scikit-learn", + "requires": [], + "size": 8248004, + "version": "0.16.0" + }, + "scikit-learn-0.16.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-30", + "depends": [ + "nose", + "numpy 1.9*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "899d4121f18c1169e0df6fc259debde8", + "name": "scikit-learn", + "requires": [], + "size": 7949123, + "version": "0.16.0" + }, + "scikit-learn-0.16.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-30", + "depends": [ + "nose", + "numpy 1.9*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "49ed8aed62204e684b7a5b15bc8a3043", + "name": "scikit-learn", + "requires": [], + "size": 8354573, + "version": "0.16.0" + }, + "scikit-learn-0.16.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "nose", + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a63de70001572f56c5c4a4166407ae6a", + "name": "scikit-learn", + "requires": [], + "size": 8215686, + "version": "0.16.1" + }, + "scikit-learn-0.16.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "nose", + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "08351bd011047bc057677c2f0cd50554", + "name": "scikit-learn", + "requires": [], + "size": 8309940, + "version": "0.16.1" + }, + "scikit-learn-0.16.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "nose", + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2537a82b4f51ebbb610cee6a3d6b683b", + "name": "scikit-learn", + "requires": [], + "size": 8309227, + "version": "0.16.1" + }, + "scikit-learn-0.16.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-15", + "depends": [ + "nose", + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "34ca74da0afe82eaf996a0fe20746f22", + "name": "scikit-learn", + "requires": [], + "size": 8247760, + "version": "0.16.1" + }, + "scikit-learn-0.16.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-15", + "depends": [ + "nose", + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "db5ebcde5186a7632c5778e7d9c5d663", + "name": "scikit-learn", + "requires": [], + "size": 8254741, + "version": "0.16.1" + }, + "scikit-learn-0.16.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-15", + "depends": [ + "nose", + "numpy 1.9*", + "python 3.3*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4af3f595d7440e2c60695a1fb59f117b", + "name": "scikit-learn", + "requires": [], + "size": 7951003, + "version": "0.16.1" + }, + "scikit-learn-0.16.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-15", + "depends": [ + "nose", + "numpy 1.9*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7da17b72c5ac895ba5eff49fc9c31a51", + "name": "scikit-learn", + "requires": [], + "size": 8358758, + "version": "0.16.1" + }, + "scikit-learn-0.16.1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "nose", + "numpy 1.9*", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "23acdd26b2af055ffa31392108c7bc42", + "name": "scikit-learn", + "requires": [], + "size": 8307888, + "version": "0.16.1" + }, + "scikit-learn-0.17-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-05", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ecfdf4266fa6c58ff2e9a043544fdf8f", + "name": "scikit-learn", + "requires": [], + "size": 9217088, + "version": "0.17" + }, + "scikit-learn-0.17-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2015-11-05", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "26372bf68950e235072002a1cac608d8", + "name": "scikit-learn", + "requires": [], + "size": 9056960, + "version": "0.17" + }, + "scikit-learn-0.17-np110py27_2.tar.bz2": { + "build": "np110py27_2", + "build_number": 2, + "date": "2016-01-11", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "781dab9d92d09036c8e6fde8a3ede8b6", + "name": "scikit-learn", + "requires": [], + "size": 9057645, + "version": "0.17" + }, + "scikit-learn-0.17-np110py27_nomkl_2.tar.bz2": { + "build": "np110py27_nomkl_2", + "build_number": 2, + "date": "2016-01-20", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 2.7*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "4c90314b381f17c54996502d10f54ddf", + "name": "scikit-learn", + "requires": [], + "size": 9057171, + "version": "0.17" + }, + "scikit-learn-0.17-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-05", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "97f8a2982d2cdbcac7a20ee012b1133b", + "name": "scikit-learn", + "requires": [], + "size": 9382235, + "version": "0.17" + }, + "scikit-learn-0.17-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2015-11-05", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "bb8a7c711a023c1c13d84b5282d287cb", + "name": "scikit-learn", + "requires": [], + "size": 9205841, + "version": "0.17" + }, + "scikit-learn-0.17-np110py34_2.tar.bz2": { + "build": "np110py34_2", + "build_number": 2, + "date": "2016-01-11", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b975ffa7b288aec1c210aad2b1828eb9", + "name": "scikit-learn", + "requires": [], + "size": 9207293, + "version": "0.17" + }, + "scikit-learn-0.17-np110py34_nomkl_2.tar.bz2": { + "build": "np110py34_nomkl_2", + "build_number": 2, + "date": "2016-01-20", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.4*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ec7d2c29a2cca13bfef006b87a497077", + "name": "scikit-learn", + "requires": [], + "size": 9206004, + "version": "0.17" + }, + "scikit-learn-0.17-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-05", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e7a249d0a85d27dd860abb3ff64e43cc", + "name": "scikit-learn", + "requires": [], + "size": 9385886, + "version": "0.17" + }, + "scikit-learn-0.17-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2015-11-05", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "41b1939e8dafc947f91eb0927377a0b1", + "name": "scikit-learn", + "requires": [], + "size": 9207829, + "version": "0.17" + }, + "scikit-learn-0.17-np110py35_2.tar.bz2": { + "build": "np110py35_2", + "build_number": 2, + "date": "2016-01-11", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6ccc1af8980a836a32a7313e50fb8c20", + "name": "scikit-learn", + "requires": [], + "size": 9113125, + "version": "0.17" + }, + "scikit-learn-0.17-np110py35_nomkl_2.tar.bz2": { + "build": "np110py35_nomkl_2", + "build_number": 2, + "date": "2016-01-21", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.5*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "89175f263c33b8053474288662ebafed", + "name": "scikit-learn", + "requires": [], + "size": 9112648, + "version": "0.17" + }, + "scikit-learn-0.17.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "199602473ca356ba979be3f4372b21b8", + "name": "scikit-learn", + "requires": [], + "size": 9060083, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np110py27_nomkl_0.tar.bz2": { + "build": "np110py27_nomkl_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 2.7*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "631b5375ef92d093023e2350aaf32e41", + "name": "scikit-learn", + "requires": [], + "size": 9060688, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d95d92d7c716623e741668b608e022e0", + "name": "scikit-learn", + "requires": [], + "size": 9210548, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np110py34_nomkl_0.tar.bz2": { + "build": "np110py34_nomkl_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.4*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "475d78d0b83a749d0f937b7c2c20f56c", + "name": "scikit-learn", + "requires": [], + "size": 9211471, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c1b043b508b01ce3bfc78a863335b031", + "name": "scikit-learn", + "requires": [], + "size": 9115269, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np110py35_nomkl_0.tar.bz2": { + "build": "np110py35_nomkl_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.5*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "47f24ffc8784d8bd62a75ac8cb2557ec", + "name": "scikit-learn", + "requires": [], + "size": 9114753, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.11*", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "738ddc14461227ebb09b7a752d6ff66f", + "name": "scikit-learn", + "requires": [], + "size": 9059975, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np111py27_nomkl_0.tar.bz2": { + "build": "np111py27_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "openblas 0.2.14", + "python 2.7*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "fea14f02bd9bc3d5f07e10cf356a21ff", + "name": "scikit-learn", + "requires": [], + "size": 9060421, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.11*", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "34992f0f36a193e4be859daa54276521", + "name": "scikit-learn", + "requires": [], + "size": 9212904, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np111py34_nomkl_0.tar.bz2": { + "build": "np111py34_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "openblas 0.2.14", + "python 3.4*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "8bbe105910771cc99520fcddf26e18cb", + "name": "scikit-learn", + "requires": [], + "size": 9211048, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "mkl 11.3.1", + "numpy 1.11*", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b0dda227694f763e6b81c08ab631bc01", + "name": "scikit-learn", + "requires": [], + "size": 9117722, + "version": "0.17.1" + }, + "scikit-learn-0.17.1-np111py35_nomkl_0.tar.bz2": { + "build": "np111py35_nomkl_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "numpy 1.11*", + "openblas 0.2.14", + "python 3.5*", + "scipy" + ], + "features": "nomkl", + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d70c5db4b24c79491789357d32f5cc84", + "name": "scikit-learn", + "requires": [], + "size": 9117849, + "version": "0.17.1" + }, + "scikit-rf-0.14.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-03", + "depends": [ + "ipython", + "matplotlib", + "python 2.7*", + "scipy" + ], + "license": "new BSD", + "license_family": "BSD", + "md5": "adfae76f60c3e8e293167bcef1d7b3fd", + "name": "scikit-rf", + "requires": [], + "size": 732716, + "version": "0.14.1" + }, + "scikit-rf-0.14.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-03", + "depends": [ + "ipython", + "matplotlib", + "python 3.4*", + "scipy" + ], + "license": "new BSD", + "license_family": "BSD", + "md5": "ded5ff30d92d781003666c00ed82e7bc", + "name": "scikit-rf", + "requires": [], + "size": 810073, + "version": "0.14.1" + }, + "scikit-rf-0.14.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ipython", + "matplotlib", + "python 3.5*", + "scipy" + ], + "license": "new BSD", + "license_family": "BSD", + "md5": "27d73c9ed8681fc89f2e0037662132b6", + "name": "scikit-rf", + "requires": [], + "size": 809829, + "version": "0.14.1" + }, + "scikits-image-0.6.1-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*", + "scipy" + ], + "license_family": "BSD", + "md5": "ab74ada33820d2abdf8235096d37e2c3", + "name": "scikits-image", + "requires": [], + "size": 3710128, + "version": "0.6.1" + }, + "scikits-image-0.6.1-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*", + "scipy" + ], + "license_family": "BSD", + "md5": "9b19dc97a8f6f26aa63a809349b9e526", + "name": "scikits-image", + "requires": [], + "size": 3708623, + "version": "0.6.1" + }, + "scikits-image-0.6.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license_family": "BSD", + "md5": "6a1c611a172b238a82d5f8cc0cae587c", + "name": "scikits-image", + "requires": [], + "size": 3706192, + "version": "0.6.1" + }, + "scikits-image-0.6.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license_family": "BSD", + "md5": "2bb8a5c9a7492603620cc045fd32297e", + "name": "scikits-image", + "requires": [], + "size": 3712269, + "version": "0.6.1" + }, + "scikits-image-0.6.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license_family": "BSD", + "md5": "b2d5b4b3e81cf208e5d6622478838850", + "name": "scikits-image", + "requires": [], + "size": 3714925, + "version": "0.6.1" + }, + "scikits-image-0.6.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license_family": "BSD", + "md5": "8111b013a26115e20abd699702d4effb", + "name": "scikits-image", + "requires": [], + "size": 3711628, + "version": "0.6.1" + }, + "scikits-image-0.7.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license_family": "BSD", + "md5": "dc9df8492326f992680eb9ad5298d143", + "name": "scikits-image", + "requires": [], + "size": 4973092, + "version": "0.7.1" + }, + "scikits-image-0.7.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license_family": "BSD", + "md5": "e12ba32e8a7003d60dec7d2c5c82b71c", + "name": "scikits-image", + "requires": [], + "size": 4972954, + "version": "0.7.1" + }, + "scikits-image-0.7.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license_family": "BSD", + "md5": "31c7cf90712e6d46be4026b1c7d39eca", + "name": "scikits-image", + "requires": [], + "size": 4979436, + "version": "0.7.1" + }, + "scikits-image-0.7.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license_family": "BSD", + "md5": "7de89aabc21a89b697818a879e356b39", + "name": "scikits-image", + "requires": [], + "size": 4975297, + "version": "0.7.1" + }, + "scipy-0.11.0-np15py26_2.tar.bz2": { + "build": "np15py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD", + "md5": "cff2a102a33725ea467520f22a6571af", + "name": "scipy", + "requires": [], + "size": 22139654, + "version": "0.11.0" + }, + "scipy-0.11.0-np15py26_3.tar.bz2": { + "build": "np15py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD", + "md5": "dc8d71d67648ae82ecacba90fbe44aab", + "name": "scipy", + "requires": [], + "size": 22136466, + "version": "0.11.0" + }, + "scipy-0.11.0-np15py26_ce1.tar.bz2": { + "build": "np15py26_ce1", + "build_number": 1, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD", + "md5": "b4f39f84fd0c5eb5e82eb071c14bf86e", + "name": "scipy", + "requires": [], + "size": 22138457, + "version": "0.11.0" + }, + "scipy-0.11.0-np15py27_2.tar.bz2": { + "build": "np15py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6d92430fadd23baa352603f7c649c0eb", + "name": "scipy", + "requires": [], + "size": 22151562, + "version": "0.11.0" + }, + "scipy-0.11.0-np15py27_3.tar.bz2": { + "build": "np15py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c5cd20c4eb454958c991a6845ef0bfbf", + "name": "scipy", + "requires": [], + "size": 22147492, + "version": "0.11.0" + }, + "scipy-0.11.0-np15py27_ce1.tar.bz2": { + "build": "np15py27_ce1", + "build_number": 1, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0f40ca678fda6eb4ea970595d1e5b802", + "name": "scipy", + "requires": [], + "size": 22146001, + "version": "0.11.0" + }, + "scipy-0.11.0-np16py26_2.tar.bz2": { + "build": "np16py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "c9642d1f3b056efda3309e2cfcfba82a", + "name": "scipy", + "requires": [], + "size": 22185608, + "version": "0.11.0" + }, + "scipy-0.11.0-np16py26_3.tar.bz2": { + "build": "np16py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "245e074e0946177035a899e0a30c3c2a", + "name": "scipy", + "requires": [], + "size": 22178203, + "version": "0.11.0" + }, + "scipy-0.11.0-np16py26_ce1.tar.bz2": { + "build": "np16py26_ce1", + "build_number": 1, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "0ec735b80ef224345e123ecb7d06c9b7", + "name": "scipy", + "requires": [], + "size": 22184030, + "version": "0.11.0" + }, + "scipy-0.11.0-np16py27_2.tar.bz2": { + "build": "np16py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "3505642e0778f8565cbe60f08321bf53", + "name": "scipy", + "requires": [], + "size": 22174655, + "version": "0.11.0" + }, + "scipy-0.11.0-np16py27_3.tar.bz2": { + "build": "np16py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "bfc9751ebd814f559fda08c8bd41e7d7", + "name": "scipy", + "requires": [], + "size": 22171253, + "version": "0.11.0" + }, + "scipy-0.11.0-np16py27_ce1.tar.bz2": { + "build": "np16py27_ce1", + "build_number": 1, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "2fdb17e4e08b614938c7fb828abfb73d", + "name": "scipy", + "requires": [], + "size": 22173519, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py26_2.tar.bz2": { + "build": "np17py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "eebaa054145fa449ee98f4d0fbd9cf92", + "name": "scipy", + "requires": [], + "size": 20729101, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py26_3.tar.bz2": { + "build": "np17py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "1d25eead614e411371d750485efc728b", + "name": "scipy", + "requires": [], + "size": 20721580, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py26_ce1.tar.bz2": { + "build": "np17py26_ce1", + "build_number": 1, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "936c5ab8eae9122d9d294500b4e39a31", + "name": "scipy", + "requires": [], + "size": 22197053, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py27_2.tar.bz2": { + "build": "np17py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "5874807da07347e59948a54f90a37292", + "name": "scipy", + "requires": [], + "size": 20709451, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py27_3.tar.bz2": { + "build": "np17py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "228431846b37357d8fd25caed635e8eb", + "name": "scipy", + "requires": [], + "size": 20705349, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py27_ce0.tar.bz2": { + "build": "np17py27_ce0", + "build_number": 0, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "b82e64af508c1a390810c6aefd46e3a6", + "name": "scipy", + "requires": [], + "size": 21816655, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py27_ce1.tar.bz2": { + "build": "np17py27_ce1", + "build_number": 1, + "build_target": "ce", + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0a19ee4e9da8f5c485c157894b655339", + "name": "scipy", + "requires": [], + "size": 22191077, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py33_2.tar.bz2": { + "build": "np17py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "390468d02318c12e19362e9014f576ea", + "name": "scipy", + "requires": [], + "size": 20350782, + "version": "0.11.0" + }, + "scipy-0.11.0-np17py33_3.tar.bz2": { + "build": "np17py33_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "36e9a501dc44caa5abc0fbd13e927c58", + "name": "scipy", + "requires": [], + "size": 20351002, + "version": "0.11.0" + }, + "scipy-0.12.0-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.6*" + ], + "license": "BSD", + "md5": "8f27d9659fe830a82ebdcfbbb5354d07", + "name": "scipy", + "requires": [], + "size": 25327118, + "version": "0.12.0" + }, + "scipy-0.12.0-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.5*", + "python 2.7*" + ], + "license": "BSD", + "md5": "6503c0ba5dc46dfab147f3562834168c", + "name": "scipy", + "requires": [], + "size": 25331083, + "version": "0.12.0" + }, + "scipy-0.12.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "69cac964dd93980e3ed58c7648914758", + "name": "scipy", + "requires": [], + "size": 25340447, + "version": "0.12.0" + }, + "scipy-0.12.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "b601204654b2de7986689e0d56e7e445", + "name": "scipy", + "requires": [], + "size": 25350208, + "version": "0.12.0" + }, + "scipy-0.12.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "25b56ecf60ab72030370844538d10a8e", + "name": "scipy", + "requires": [], + "size": 25328181, + "version": "0.12.0" + }, + "scipy-0.12.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0d5e37dbde0adce8e5560f64d067c325", + "name": "scipy", + "requires": [], + "size": 25343061, + "version": "0.12.0" + }, + "scipy-0.12.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "67e21261d3b51dd24d3b39a36a85a04a", + "name": "scipy", + "requires": [], + "size": 24857426, + "version": "0.12.0" + }, + "scipy-0.12.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "ed9b35c6f01157c0a5d580089f4f3e01", + "name": "scipy", + "requires": [], + "size": 25306611, + "version": "0.12.0" + }, + "scipy-0.12.0b1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "20ff9c9b9acbef3964900bf8dc0cbd3b", + "name": "scipy", + "requires": [], + "size": 23784996, + "version": "0.12.0b1" + }, + "scipy-0.12.0b1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "63a751e059e9e8b4301a327fa803bf42", + "name": "scipy", + "requires": [], + "size": 23795955, + "version": "0.12.0b1" + }, + "scipy-0.13.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "242c2d2385b21e84d6528aff9db82a8d", + "name": "scipy", + "requires": [], + "size": 29239362, + "version": "0.13.0" + }, + "scipy-0.13.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "9967f3bd969e7db55cef4c77b5c0bf5a", + "name": "scipy", + "requires": [], + "size": 29244988, + "version": "0.13.0" + }, + "scipy-0.13.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "5a25f4fc5516f79cd2125189ca56031d", + "name": "scipy", + "requires": [], + "size": 29229779, + "version": "0.13.0" + }, + "scipy-0.13.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "c711441fbfd577b7e80abbd080320cbb", + "name": "scipy", + "requires": [], + "size": 29236242, + "version": "0.13.0" + }, + "scipy-0.13.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "108fa96097a2a4bf25cbd2c6fee8f826", + "name": "scipy", + "requires": [], + "size": 28351946, + "version": "0.13.0" + }, + "scipy-0.13.1-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "a3ab2bf8f72c219cfe3e8732eadda2d0", + "name": "scipy", + "requires": [], + "size": 29243166, + "version": "0.13.1" + }, + "scipy-0.13.1-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*" + ], + "license": "BSD", + "md5": "558c7ac177129dd502560290875f4303", + "name": "scipy", + "requires": [], + "size": 29246314, + "version": "0.13.1" + }, + "scipy-0.13.1-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "8dd7e75bad04fad11a615ae490b1424c", + "name": "scipy", + "requires": [], + "size": 29247900, + "version": "0.13.1" + }, + "scipy-0.13.1-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*" + ], + "license": "BSD", + "md5": "113216454ab8e9cef8aeeb30eb7c607e", + "name": "scipy", + "requires": [], + "size": 29245755, + "version": "0.13.1" + }, + "scipy-0.13.1-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "11ce863e9031955183cb869bd5535f53", + "name": "scipy", + "requires": [], + "size": 29216235, + "version": "0.13.1" + }, + "scipy-0.13.1-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "704ae6bcb72ba75b6dd2e5bb1b8c2f3d", + "name": "scipy", + "requires": [], + "size": 29216930, + "version": "0.13.1" + }, + "scipy-0.13.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "63725f562be4f801a145613680ff6789", + "name": "scipy", + "requires": [], + "size": 29239522, + "version": "0.13.1" + }, + "scipy-0.13.1-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "b3bddd6b970e8b27afaa2a1f98c1f893", + "name": "scipy", + "requires": [], + "size": 29238150, + "version": "0.13.1" + }, + "scipy-0.13.1-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "0258fc72b9438bd30dae8969a84adb35", + "name": "scipy", + "requires": [], + "size": 28356804, + "version": "0.13.1" + }, + "scipy-0.13.1-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "e8a926e75cd64e855e5d3ab41a8f8362", + "name": "scipy", + "requires": [], + "size": 28358968, + "version": "0.13.1" + }, + "scipy-0.13.2-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "20140ab812d2dfdca5f4b460bfa17ffa", + "name": "scipy", + "requires": [], + "size": 29510465, + "version": "0.13.2" + }, + "scipy-0.13.2-np17py26_2.tar.bz2": { + "build": "np17py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*" + ], + "license": "BSD", + "md5": "d79d75b0acc10cfac61340262f8f230d", + "name": "scipy", + "requires": [], + "size": 29513010, + "version": "0.13.2" + }, + "scipy-0.13.2-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d56d59cd017eab9fe600892be9647e1d", + "name": "scipy", + "requires": [], + "size": 29517730, + "version": "0.13.2" + }, + "scipy-0.13.2-np17py27_2.tar.bz2": { + "build": "np17py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "0e66c00fff0843103dfee610c0c16c3a", + "name": "scipy", + "requires": [], + "size": 29514927, + "version": "0.13.2" + }, + "scipy-0.13.2-np17py33_1.tar.bz2": { + "build": "np17py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "fb652103d94d3c1faa7742da8254f7bf", + "name": "scipy", + "requires": [], + "size": 28398582, + "version": "0.13.2" + }, + "scipy-0.13.2-np17py33_2.tar.bz2": { + "build": "np17py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 3.3*" + ], + "license": "BSD", + "md5": "ac1409ec50743c0e0c44d6a8867401d2", + "name": "scipy", + "requires": [], + "size": 28403805, + "version": "0.13.2" + }, + "scipy-0.13.3-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "8801681deb0ccf017f9d47d8ee67f67f", + "name": "scipy", + "requires": [], + "size": 29561326, + "version": "0.13.3" + }, + "scipy-0.13.3-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "3d7567e5de021d15af98640b5324246f", + "name": "scipy", + "requires": [], + "size": 29559757, + "version": "0.13.3" + }, + "scipy-0.13.3-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "230c46507b2b852bc21ae228ea2a835e", + "name": "scipy", + "requires": [], + "size": 28439796, + "version": "0.13.3" + }, + "scipy-0.13.3-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "ad4d72e34eb53f737ae547496fc0f0dd", + "name": "scipy", + "requires": [], + "size": 28984739, + "version": "0.13.3" + }, + "scipy-0.14.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*" + ], + "license": "BSD", + "md5": "0059928c18f799df92bf192566a759a1", + "name": "scipy", + "requires": [], + "size": 31055051, + "version": "0.14.0" + }, + "scipy-0.14.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "aac9f72b2ec42fa3931b8cb94a395b61", + "name": "scipy", + "requires": [], + "size": 31084604, + "version": "0.14.0" + }, + "scipy-0.14.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.3*" + ], + "license": "BSD", + "md5": "f92f94e9e46bc2990a8fad16657067be", + "name": "scipy", + "requires": [], + "size": 29820423, + "version": "0.14.0" + }, + "scipy-0.14.0-np18py34_0.tar.bz2": { + "build": "np18py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 3.4*" + ], + "license": "BSD", + "md5": "1a5cd024a714643be5fa5241cd0b4091", + "name": "scipy", + "requires": [], + "size": 30297262, + "version": "0.14.0" + }, + "scipy-0.14.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "a70e6d8654848092223669394224b130", + "name": "scipy", + "requires": [], + "size": 36234274, + "version": "0.14.0" + }, + "scipy-0.14.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "37af0ee5bea05882fdf90a034fb7ecfd", + "name": "scipy", + "requires": [], + "size": 36233585, + "version": "0.14.0" + }, + "scipy-0.14.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "af6af37ad566074ec0066a07e13b23c1", + "name": "scipy", + "requires": [], + "size": 35223226, + "version": "0.14.0" + }, + "scipy-0.14.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "7de0d904c1a4bd21219ba8b99c406773", + "name": "scipy", + "requires": [], + "size": 35716493, + "version": "0.14.0" + }, + "scipy-0.15.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "8faa161619ca5db333ceed9f2a1a36f3", + "name": "scipy", + "requires": [], + "size": 38740626, + "version": "0.15.0" + }, + "scipy-0.15.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "4757ec7e1a46d48c21549a01faac77c0", + "name": "scipy", + "requires": [], + "size": 38756150, + "version": "0.15.0" + }, + "scipy-0.15.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "b63287eec1648809d6ffb4d738db3cbc", + "name": "scipy", + "requires": [], + "size": 37687955, + "version": "0.15.0" + }, + "scipy-0.15.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "ad959406f5ffab611b9ff06228688422", + "name": "scipy", + "requires": [], + "size": 38245287, + "version": "0.15.0" + }, + "scipy-0.15.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "82bd9ef8a0af5743697689745211b645", + "name": "scipy", + "requires": [], + "size": 38719871, + "version": "0.15.1" + }, + "scipy-0.15.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "8f92fbdff984c3d5f8074b9c6a7f413a", + "name": "scipy", + "requires": [], + "size": 38750842, + "version": "0.15.1" + }, + "scipy-0.15.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "241ac4bb1e3d5df353309484fbb638b6", + "name": "scipy", + "requires": [], + "size": 37742847, + "version": "0.15.1" + }, + "scipy-0.15.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "68692bc491c563637b49a44165016de1", + "name": "scipy", + "requires": [], + "size": 38326514, + "version": "0.15.1" + }, + "scipy-0.16.0-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "d38eb7451fb2818c9e105eeaedb9fbbb", + "name": "scipy", + "requires": [], + "size": 25088446, + "version": "0.16.0" + }, + "scipy-0.16.0-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.4*" + ], + "license": "BSD", + "md5": "ce1bfa99bf2fbb976c9175cdfcab1544", + "name": "scipy", + "requires": [], + "size": 24577385, + "version": "0.16.0" + }, + "scipy-0.16.0-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.5*" + ], + "license": "BSD", + "md5": "c575b675e72a71712636a8433bbbe82f", + "name": "scipy", + "requires": [], + "size": 24564075, + "version": "0.16.0" + }, + "scipy-0.16.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "numpy 1.9*", + "python 2.6*" + ], + "license": "BSD", + "md5": "a0edd8d25aafc100a17ef6f00866b2b2", + "name": "scipy", + "requires": [], + "size": 40958422, + "version": "0.16.0" + }, + "scipy-0.16.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e63434c9830dd2781fc36ed635947126", + "name": "scipy", + "requires": [], + "size": 40973131, + "version": "0.16.0" + }, + "scipy-0.16.0-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-08-20", + "depends": [ + "numpy 1.9*", + "openblas 0.2.14", + "python 2.7*" + ], + "license": "BSD", + "md5": "734cc3f31bbc3b9a0e09620ad893ab4a", + "name": "scipy", + "requires": [], + "size": 29559968, + "version": "0.16.0" + }, + "scipy-0.16.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "numpy 1.9*", + "python 3.3*" + ], + "license": "BSD", + "md5": "6a426cf7bf1e9fc3045ff07edaef2132", + "name": "scipy", + "requires": [], + "size": 39948751, + "version": "0.16.0" + }, + "scipy-0.16.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "61063b2dbc98975e2e25358f9b0aac17", + "name": "scipy", + "requires": [], + "size": 40627764, + "version": "0.16.0" + }, + "scipy-0.16.0-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-08-20", + "depends": [ + "numpy 1.9*", + "openblas 0.2.14", + "python 3.4*" + ], + "license": "BSD", + "md5": "3f273a9bc80735f78c4ec7b4869f4d53", + "name": "scipy", + "requires": [], + "size": 29204809, + "version": "0.16.0" + }, + "scipy-0.16.0-np19py35_1.tar.bz2": { + "build": "np19py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "openblas 0.2.14", + "python 3.5*" + ], + "license": "BSD", + "md5": "2c5fda16082f7a653a1490ad4abcd95e", + "name": "scipy", + "requires": [], + "size": 29204825, + "version": "0.16.0" + }, + "scipy-0.16.1-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2016-01-11", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*", + "libgfortran 1.0" + ], + "license": "BSD", + "md5": "ab2d597c1bdf85dc89a6d1257ddd5a92", + "name": "scipy", + "requires": [], + "size": 29609253, + "version": "0.16.1" + }, + "scipy-0.16.1-np110py27_nomkl_1.tar.bz2": { + "build": "np110py27_nomkl_1", + "build_number": 1, + "date": "2016-01-20", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 2.7*", + "libgfortran 1.0" + ], + "features": "nomkl", + "license": "BSD", + "md5": "5f0fec169ba1ee002565371e56b59910", + "name": "scipy", + "requires": [], + "size": 29635129, + "version": "0.16.1" + }, + "scipy-0.16.1-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2016-01-11", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*", + "libgfortran 1.0" + ], + "license": "BSD", + "md5": "e57dd1da6b4a8a15fc199afe2eeba6d5", + "name": "scipy", + "requires": [], + "size": 29253236, + "version": "0.16.1" + }, + "scipy-0.16.1-np110py34_nomkl_1.tar.bz2": { + "build": "np110py34_nomkl_1", + "build_number": 1, + "date": "2016-01-20", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.4*", + "libgfortran 1.0" + ], + "features": "nomkl", + "license": "BSD", + "md5": "477332a8f1b58cbefa9986aa1460fe8b", + "name": "scipy", + "requires": [], + "size": 29259377, + "version": "0.16.1" + }, + "scipy-0.16.1-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2016-01-11", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*", + "libgfortran 1.0" + ], + "license": "BSD", + "md5": "e1ad325c5f9dd1f4374f42a60b3488b5", + "name": "scipy", + "requires": [], + "size": 29115976, + "version": "0.16.1" + }, + "scipy-0.16.1-np110py35_nomkl_1.tar.bz2": { + "build": "np110py35_nomkl_1", + "build_number": 1, + "date": "2016-01-21", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.5*", + "libgfortran 1.0" + ], + "features": "nomkl", + "license": "BSD", + "md5": "e17b54716bf16c1c0e2874f626699138", + "name": "scipy", + "requires": [], + "size": 29116991, + "version": "0.16.1" + }, + "scipy-0.17.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "1a6d0753610118f56fc60e60bf5553ea", + "name": "scipy", + "requires": [], + "size": 31087485, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py27_1.tar.bz2": { + "build": "np110py27_1", + "build_number": 1, + "date": "2016-02-05", + "depends": [ + "libgfortran 1.0", + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e512720d01d26aa93af1f15ff1a10958", + "name": "scipy", + "requires": [], + "size": 31084021, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py27_2.tar.bz2": { + "build": "np110py27_2", + "build_number": 2, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.10*", + "python 2.7*" + ], + "license": "BSD", + "md5": "885c586a57e0d0014315a880a8b56f99", + "name": "scipy", + "requires": [], + "size": 31528548, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py27_nomkl_0.tar.bz2": { + "build": "np110py27_nomkl_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "830517d55bdfd3c6ffce1abf725939a6", + "name": "scipy", + "requires": [], + "size": 31084379, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py27_nomkl_1.tar.bz2": { + "build": "np110py27_nomkl_1", + "build_number": 1, + "date": "2016-02-05", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "9799df9d01be4bc80b9e090c4555d29a", + "name": "scipy", + "requires": [], + "size": 31080482, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py27_nomkl_2.tar.bz2": { + "build": "np110py27_nomkl_2", + "build_number": 2, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "numpy 1.10*", + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "98e6efa9cfe7be7232519416b548d325", + "name": "scipy", + "requires": [], + "size": 31515945, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "dfce02f1462ea963df1bab5f8d15a237", + "name": "scipy", + "requires": [], + "size": 30705333, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py34_1.tar.bz2": { + "build": "np110py34_1", + "build_number": 1, + "date": "2016-02-05", + "depends": [ + "libgfortran 1.0", + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "bdf66071759c673b110a5f1c3bb6dc62", + "name": "scipy", + "requires": [], + "size": 30712424, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py34_2.tar.bz2": { + "build": "np110py34_2", + "build_number": 2, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.10*", + "python 3.4*" + ], + "license": "BSD", + "md5": "9b46c5a5cf706c233705331136fc1f7e", + "name": "scipy", + "requires": [], + "size": 31137204, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py34_nomkl_0.tar.bz2": { + "build": "np110py34_nomkl_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "359f5c27afe5aeec88783b247ca5dfc6", + "name": "scipy", + "requires": [], + "size": 30709144, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py34_nomkl_1.tar.bz2": { + "build": "np110py34_nomkl_1", + "build_number": 1, + "date": "2016-02-05", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "a2fe539e3e49c20291e8f54eebaa569d", + "name": "scipy", + "requires": [], + "size": 30711654, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py34_nomkl_2.tar.bz2": { + "build": "np110py34_nomkl_2", + "build_number": 2, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "numpy 1.10*", + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "a79ff9c2de84cccdee9447798a963f45", + "name": "scipy", + "requires": [], + "size": 31130255, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "802a87c032532760f4876b2d78af9f64", + "name": "scipy", + "requires": [], + "size": 30488520, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py35_1.tar.bz2": { + "build": "np110py35_1", + "build_number": 1, + "date": "2016-02-05", + "depends": [ + "libgfortran 1.0", + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "2be7be0483e87c262a6ad8094a074b83", + "name": "scipy", + "requires": [], + "size": 30492865, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py35_2.tar.bz2": { + "build": "np110py35_2", + "build_number": 2, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.10*", + "python 3.5*" + ], + "license": "BSD", + "md5": "b2eba47ffee1c8f441e480dede5eeac4", + "name": "scipy", + "requires": [], + "size": 30951977, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py35_nomkl_0.tar.bz2": { + "build": "np110py35_nomkl_0", + "build_number": 0, + "date": "2016-01-25", + "depends": [ + "numpy 1.10*", + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "51939ada512ec93f9231227b042a414e", + "name": "scipy", + "requires": [], + "size": 30488863, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py35_nomkl_1.tar.bz2": { + "build": "np110py35_nomkl_1", + "build_number": 1, + "date": "2016-02-05", + "depends": [ + "libgfortran 1.0", + "numpy 1.10*", + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "c5301ae1d7212fc1246986abfeff155a", + "name": "scipy", + "requires": [], + "size": 30485723, + "version": "0.17.0" + }, + "scipy-0.17.0-np110py35_nomkl_2.tar.bz2": { + "build": "np110py35_nomkl_2", + "build_number": 2, + "date": "2016-03-03", + "depends": [ + "libgfortran 3.0", + "numpy 1.10*", + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "a58821543cc0ab3438cc5230d0b956f6", + "name": "scipy", + "requires": [], + "size": 30933203, + "version": "0.17.0" + }, + "scipy-0.17.0-np111py27_2.tar.bz2": { + "build": "np111py27_2", + "build_number": 2, + "date": "2016-03-31", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.11*", + "python 2.7*" + ], + "license": "BSD", + "md5": "185accff006e20ca2eef859730d08c60", + "name": "scipy", + "requires": [], + "size": 31537398, + "version": "0.17.0" + }, + "scipy-0.17.0-np111py27_nomkl_2.tar.bz2": { + "build": "np111py27_nomkl_2", + "build_number": 2, + "date": "2016-03-31", + "depends": [ + "libgfortran 3.0", + "numpy 1.11*", + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "3397dae1328492642fe37d890cbd41dc", + "name": "scipy", + "requires": [], + "size": 31529140, + "version": "0.17.0" + }, + "scipy-0.17.0-np111py34_2.tar.bz2": { + "build": "np111py34_2", + "build_number": 2, + "date": "2016-03-31", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.11*", + "python 3.4*" + ], + "license": "BSD", + "md5": "406e739d60f3aa49db3c1c352c3853f2", + "name": "scipy", + "requires": [], + "size": 31160113, + "version": "0.17.0" + }, + "scipy-0.17.0-np111py34_nomkl_2.tar.bz2": { + "build": "np111py34_nomkl_2", + "build_number": 2, + "date": "2016-03-31", + "depends": [ + "libgfortran 3.0", + "numpy 1.11*", + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "f181f8d912494d2efefb52cd5251e890", + "name": "scipy", + "requires": [], + "size": 31150365, + "version": "0.17.0" + }, + "scipy-0.17.0-np111py35_2.tar.bz2": { + "build": "np111py35_2", + "build_number": 2, + "date": "2016-03-31", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.11*", + "python 3.5*" + ], + "license": "BSD", + "md5": "3bbdac768c34b8abca43e1ea105ecc4c", + "name": "scipy", + "requires": [], + "size": 30948488, + "version": "0.17.0" + }, + "scipy-0.17.0-np111py35_nomkl_2.tar.bz2": { + "build": "np111py35_nomkl_2", + "build_number": 2, + "date": "2016-03-31", + "depends": [ + "libgfortran 3.0", + "numpy 1.11*", + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "6fc96a6f1344b2cd729e5c6981be2164", + "name": "scipy", + "requires": [], + "size": 30945636, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2016-02-11", + "depends": [ + "libgfortran 1.0", + "mkl 11.3.1", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "e0b715586b0edfa1af97294896232de3", + "name": "scipy", + "requires": [], + "size": 31016416, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py27_2.tar.bz2": { + "build": "np19py27_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.9*", + "python 2.7*" + ], + "license": "BSD", + "md5": "5cc4599e37fc370183ef45036a393282", + "name": "scipy", + "requires": [], + "size": 31401613, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py27_nomkl_2.tar.bz2": { + "build": "np19py27_nomkl_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "numpy 1.9*", + "openblas 0.2.14", + "python 2.7*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "e8a76131f1bdae65cecc20b1fcd58cbf", + "name": "scipy", + "requires": [], + "size": 31406774, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2016-02-11", + "depends": [ + "libgfortran 1.0", + "mkl 11.3.1", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "138893079891b14a5e3cf20b26ef2a50", + "name": "scipy", + "requires": [], + "size": 30607642, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py34_2.tar.bz2": { + "build": "np19py34_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.9*", + "python 3.4*" + ], + "license": "BSD", + "md5": "54770a6334fc7f6864e5204e529e02b8", + "name": "scipy", + "requires": [], + "size": 31062129, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py34_nomkl_2.tar.bz2": { + "build": "np19py34_nomkl_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "numpy 1.9*", + "openblas 0.2.14", + "python 3.4*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "ba5c113921991bad8a4beb9f459f24ac", + "name": "scipy", + "requires": [], + "size": 31071636, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py35_1.tar.bz2": { + "build": "np19py35_1", + "build_number": 1, + "date": "2016-02-11", + "depends": [ + "libgfortran 1.0", + "mkl 11.3.1", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "da96b85b1675bff789c2b69fb55f7983", + "name": "scipy", + "requires": [], + "size": 30467900, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py35_2.tar.bz2": { + "build": "np19py35_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "mkl 11.3.1", + "numpy 1.9*", + "python 3.5*" + ], + "license": "BSD", + "md5": "0abe02fd8a00690ae23b8df17b054d57", + "name": "scipy", + "requires": [], + "size": 30892026, + "version": "0.17.0" + }, + "scipy-0.17.0-np19py35_nomkl_2.tar.bz2": { + "build": "np19py35_nomkl_2", + "build_number": 2, + "date": "2016-03-05", + "depends": [ + "libgfortran 3.0", + "numpy 1.9*", + "openblas 0.2.14", + "python 3.5*" + ], + "features": "nomkl", + "license": "BSD", + "md5": "d9d05e75fe1dd3fc23177f8e7ec5acef", + "name": "scipy", + "requires": [], + "size": 30900278, + "version": "0.17.0" + }, + "scons-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "77224b10dc1306277aaf4005ea4dcd56", + "name": "scons", + "requires": [], + "size": 730712, + "version": "2.3.0" + }, + "scrapy-0.16.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "lxml", + "python 2.6*", + "twisted", + "w3lib 1.2" + ], + "license": "BSD", + "md5": "e2544f522b7982042ef38bcb61a20463", + "name": "scrapy", + "requires": [], + "size": 420391, + "version": "0.16.4" + }, + "scrapy-0.16.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "lxml", + "python 2.7*", + "twisted", + "w3lib 1.2" + ], + "license": "BSD", + "md5": "b0df7d40437d31638df153bbc690d271", + "name": "scrapy", + "requires": [], + "size": 420186, + "version": "0.16.4" + }, + "scrapy-0.24.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "cssselect 0.9.1", + "lxml", + "pyopenssl 0.14", + "python 2.7*", + "queuelib 1.2.2", + "setuptools", + "six", + "twisted", + "w3lib 1.8.1" + ], + "license": "BSD", + "md5": "c14ea544acd6bf7b75ec915d8d5d799e", + "name": "scrapy", + "requires": [], + "size": 557247, + "version": "0.24.4" + }, + "scrapy-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "cssselect 0.9.1", + "lxml", + "pyopenssl 0.15.1", + "python 2.7*", + "queuelib 1.2.2", + "setuptools", + "six", + "twisted", + "w3lib 1.11.0" + ], + "license": "BSD", + "md5": "90b04c7fbeb6e05133db95a7a4c67562", + "name": "scrapy", + "requires": [], + "size": 343834, + "version": "1.0.1" + }, + "scrapy-1.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "cssselect 0.9.1", + "lxml", + "pyopenssl 0.15.1", + "python 2.7*", + "queuelib 1.2.2", + "setuptools", + "six", + "twisted", + "w3lib 1.12.0" + ], + "license": "BSD", + "md5": "5c330b4285b201bd7fb1157ca1282d42", + "name": "scrapy", + "requires": [], + "size": 344195, + "version": "1.0.3" + }, + "seaborn-0.5.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "d04764350e2d50bbb19f9893b3232caf", + "name": "seaborn", + "requires": [], + "size": 189193, + "version": "0.5.0" + }, + "seaborn-0.5.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 3.3*", + "scipy" + ], + "license": "BSD", + "md5": "bf0aed7fbb22406db0bcb670c86fcd9a", + "name": "seaborn", + "requires": [], + "size": 202967, + "version": "0.5.0" + }, + "seaborn-0.5.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-11-18", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 3.4*", + "scipy" + ], + "license": "BSD", + "md5": "69acfa6c39f8b864b1fd17bec3f8fb7e", + "name": "seaborn", + "requires": [], + "size": 196691, + "version": "0.5.0" + }, + "seaborn-0.5.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-12", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "fd1316d32a8de4cb4c6c7d1847a9d94b", + "name": "seaborn", + "requires": [], + "size": 189631, + "version": "0.5.1" + }, + "seaborn-0.5.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-12", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 3.3*", + "scipy" + ], + "license": "BSD", + "md5": "0b8f7c38468f2a87749460bd9b1b52dd", + "name": "seaborn", + "requires": [], + "size": 203629, + "version": "0.5.1" + }, + "seaborn-0.5.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-12", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 3.4*", + "scipy" + ], + "license": "BSD", + "md5": "875c804861597009eff99278ffa99ede", + "name": "seaborn", + "requires": [], + "size": 197496, + "version": "0.5.1" + }, + "seaborn-0.6.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "matplotlib", + "numpy 1.10*", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "f8bb3c856fdbdeae82053d51d8a117bf", + "name": "seaborn", + "requires": [], + "size": 254146, + "version": "0.6.0" + }, + "seaborn-0.6.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "matplotlib", + "numpy 1.10*", + "pandas", + "python 3.4*", + "scipy" + ], + "license": "BSD", + "md5": "c5529ffffbde5063cbe79a5b21a8e9de", + "name": "seaborn", + "requires": [], + "size": 264344, + "version": "0.6.0" + }, + "seaborn-0.6.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "matplotlib", + "numpy 1.10*", + "pandas", + "python 3.5*", + "scipy" + ], + "license": "BSD", + "md5": "9a592cef6d4f1c7591a426115ace2f09", + "name": "seaborn", + "requires": [], + "size": 263021, + "version": "0.6.0" + }, + "seaborn-0.6.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "c48a81d0d7e26e04948df85d44be1d08", + "name": "seaborn", + "requires": [], + "size": 254152, + "version": "0.6.0" + }, + "seaborn-0.6.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 3.3*", + "scipy" + ], + "license": "BSD", + "md5": "e55f8bd2f22cbc3d79db8dfc899ebc56", + "name": "seaborn", + "requires": [], + "size": 262276, + "version": "0.6.0" + }, + "seaborn-0.6.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-29", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 3.4*", + "scipy" + ], + "license": "BSD", + "md5": "61fb8fa44e23b08876423d373e2aae1f", + "name": "seaborn", + "requires": [], + "size": 264280, + "version": "0.6.0" + }, + "seaborn-0.6.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "matplotlib", + "numpy 1.9*", + "pandas", + "python 3.5*", + "scipy" + ], + "license": "BSD", + "md5": "fda059ad19712e784bbdde25ced64365", + "name": "seaborn", + "requires": [], + "size": 263069, + "version": "0.6.0" + }, + "seaborn-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "matplotlib", + "numpy", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "20a86689df77d09e1b00d7edfad3796a", + "name": "seaborn", + "requires": [], + "size": 270433, + "version": "0.7.0" + }, + "seaborn-0.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "matplotlib", + "numpy", + "pandas", + "python 3.4*", + "scipy" + ], + "license": "BSD", + "md5": "438dac694d59bac9a47062c348c07f72", + "name": "seaborn", + "requires": [], + "size": 281575, + "version": "0.7.0" + }, + "seaborn-0.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-27", + "depends": [ + "matplotlib", + "numpy", + "pandas", + "python 3.5*", + "scipy" + ], + "license": "BSD", + "md5": "ced047afe46c613fb35a6b0633dc4025", + "name": "seaborn", + "requires": [], + "size": 280319, + "version": "0.7.0" + }, + "semantic_version-2.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "133bebc02912ed78b5440faf3de169fb", + "name": "semantic_version", + "requires": [], + "size": 14372, + "version": "2.4.1" + }, + "semantic_version-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "c4ef516178833ca96da848ca3c5f9971", + "name": "semantic_version", + "requires": [], + "size": 14398, + "version": "2.4.1" + }, + "semantic_version-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "916b3d876b551bfca88112446ce8a94b", + "name": "semantic_version", + "requires": [], + "size": 14855, + "version": "2.4.1" + }, + "semantic_version-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b92fd45d8583d71fa60a412aa08fbd97", + "name": "semantic_version", + "requires": [], + "size": 14873, + "version": "2.4.1" + }, + "semantic_version-2.4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "1d89c55777b4f31afa6ec16cbbba445f", + "name": "semantic_version", + "requires": [], + "size": 14038, + "version": "2.4.2" + }, + "semantic_version-2.4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bf1f0317bba62db82dfcbe8437f2b2c0", + "name": "semantic_version", + "requires": [], + "size": 14080, + "version": "2.4.2" + }, + "semantic_version-2.4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "c50ed7c9d01d2a17d0f5dfedd8076585", + "name": "semantic_version", + "requires": [], + "size": 14553, + "version": "2.4.2" + }, + "semantic_version-2.4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8e07bf431c3c4664fdde30b34ba3a6d4", + "name": "semantic_version", + "requires": [], + "size": 14549, + "version": "2.4.2" + }, + "semantic_version-2.4.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "3ca04b42542a1f641fed082a5ebd3d97", + "name": "semantic_version", + "requires": [], + "size": 14513, + "version": "2.4.2" + }, + "semantic_version-2.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2c86c1b93c870386d76ccaa6882204ec", + "name": "semantic_version", + "requires": [], + "size": 16060, + "version": "2.5.0" + }, + "semantic_version-2.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e79d5cd8b22b090fa685a760d9f215e0", + "name": "semantic_version", + "requires": [], + "size": 16609, + "version": "2.5.0" + }, + "semantic_version-2.5.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "b9243b0fbb54beab70e5ea6c795fab9e", + "name": "semantic_version", + "requires": [], + "size": 16561, + "version": "2.5.0" + }, + "semver-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "986632d80e8688ad9852d3d5d8de98e8", + "name": "semver", + "requires": [], + "size": 5010, + "version": "2.4.1" + }, + "semver-2.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b231b66efb43b70632a004f16196671c", + "name": "semver", + "requires": [], + "size": 5149, + "version": "2.4.1" + }, + "semver-2.4.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "9a869d361335df51b77d53bc1b4ec619", + "name": "semver", + "requires": [], + "size": 5125, + "version": "2.4.1" + }, + "serf-1.3.8-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-17", + "depends": [ + "apr", + "openssl", + "zlib" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "3989b8d0db89fa3d2aee5d1b1cf672f6", + "name": "serf", + "requires": [], + "size": 358145, + "version": "1.3.8" + }, + "service_identity-14.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "characteristic >=14.0.0", + "pyasn1", + "pyasn1-modules", + "pyopenssl >=0.12", + "python 2.7*" + ], + "license": "MIT", + "md5": "4770e53b34d891d261515c05a0442dc2", + "name": "service_identity", + "requires": [], + "size": 11284, + "version": "14.0.0" + }, + "service_identity-14.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "characteristic >=14.0.0", + "pyasn1", + "pyasn1-modules", + "pyopenssl >=0.12", + "python 3.4*" + ], + "license": "MIT", + "md5": "19e68a3ec9ba1fba1c0759a6c6a1ac7d", + "name": "service_identity", + "requires": [], + "size": 11531, + "version": "14.0.0" + }, + "service_identity-14.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-16", + "depends": [ + "characteristic >=14.0.0", + "pyasn1", + "pyasn1-modules", + "pyopenssl >=0.12", + "python 3.5*" + ], + "license": "MIT", + "md5": "96d408ffd59e15fbef037ff5fb0ef3a8", + "name": "service_identity", + "requires": [], + "size": 11493, + "version": "14.0.0" + }, + "service_identity-16.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "attrs", + "pyasn1", + "pyasn1-modules", + "pyopenssl >=0.12", + "python 2.7*" + ], + "license": "MIT", + "md5": "9ea3b5bc018e44f69872c8d896709abf", + "name": "service_identity", + "requires": [], + "size": 13387, + "version": "16.0.0" + }, + "service_identity-16.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "attrs", + "pyasn1", + "pyasn1-modules", + "pyopenssl >=0.12", + "python 3.4*" + ], + "license": "MIT", + "md5": "3b4db06b0bcda959add273391f2ad20d", + "name": "service_identity", + "requires": [], + "size": 13663, + "version": "16.0.0" + }, + "service_identity-16.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "attrs", + "pyasn1", + "pyasn1-modules", + "pyopenssl >=0.12", + "python 3.5*" + ], + "license": "MIT", + "md5": "c31d33b3ae9f44a02582da24acf162b0", + "name": "service_identity", + "requires": [], + "size": 13617, + "version": "16.0.0" + }, + "setuptools-1.3.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "86634adba6785b32b2c8620c3d4828cd", + "name": "setuptools", + "requires": [], + "size": 496222, + "version": "1.3.2" + }, + "setuptools-1.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "1589d505a29a84cc97d79f5ee147dded", + "name": "setuptools", + "requires": [], + "size": 494286, + "version": "1.3.2" + }, + "setuptools-1.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "8f53d3b47ea166051b0b45f96b77cc40", + "name": "setuptools", + "requires": [], + "size": 510943, + "version": "1.3.2" + }, + "setuptools-1.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "b93851062cd91c44813364b2b9684a5c", + "name": "setuptools", + "requires": [], + "size": 502524, + "version": "1.4" + }, + "setuptools-1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "737429d0bfa92f5680800b77623d76fc", + "name": "setuptools", + "requires": [], + "size": 500457, + "version": "1.4" + }, + "setuptools-1.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "928d92f8f871a432080aa4e55bd61ce2", + "name": "setuptools", + "requires": [], + "size": 517285, + "version": "1.4" + }, + "setuptools-11.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "a9855c0034ed3f79be1aa32a4fa0da1c", + "name": "setuptools", + "requires": [], + "size": 443188, + "version": "11.3.1" + }, + "setuptools-11.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "83f316d28e8c520f9e297fe2769fdbd6", + "name": "setuptools", + "requires": [], + "size": 440471, + "version": "11.3.1" + }, + "setuptools-11.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "b5c69f3ca8c437975413d3dc18c1f846", + "name": "setuptools", + "requires": [], + "size": 455936, + "version": "11.3.1" + }, + "setuptools-11.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-07", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "28c8b4a19fdd4d5cab1e973bfcf46636", + "name": "setuptools", + "requires": [], + "size": 445542, + "version": "11.3.1" + }, + "setuptools-12.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "ad2f92149e7aba986a0ebdfab8a7677f", + "name": "setuptools", + "requires": [], + "size": 448876, + "version": "12.0.3" + }, + "setuptools-12.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "a8df22113fbc5e4dedd26567c78294f3", + "name": "setuptools", + "requires": [], + "size": 446029, + "version": "12.0.3" + }, + "setuptools-12.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "49018517b41ec8cd5066148e33d19167", + "name": "setuptools", + "requires": [], + "size": 461843, + "version": "12.0.3" + }, + "setuptools-12.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "f62939b3eb9d8a64caf2bffcbc237d60", + "name": "setuptools", + "requires": [], + "size": 451379, + "version": "12.0.3" + }, + "setuptools-12.0.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "56b7de0c831c4929e5c95f50c994fd29", + "name": "setuptools", + "requires": [], + "size": 449186, + "version": "12.0.4" + }, + "setuptools-12.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "f4ec3c673b9533d797c4365d0997b7c0", + "name": "setuptools", + "requires": [], + "size": 446347, + "version": "12.0.4" + }, + "setuptools-12.0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0d07b21b895d7d00e94e6e7473aacf85", + "name": "setuptools", + "requires": [], + "size": 462235, + "version": "12.0.4" + }, + "setuptools-12.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-21", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9b88cdae4b16f68c16a4a505bd37366a", + "name": "setuptools", + "requires": [], + "size": 451781, + "version": "12.0.4" + }, + "setuptools-12.0.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "836d4e48d651acd09734e329613fc7c5", + "name": "setuptools", + "requires": [], + "size": 449564, + "version": "12.0.5" + }, + "setuptools-12.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "365d09ec239ea739f79cc777b6024a96", + "name": "setuptools", + "requires": [], + "size": 446648, + "version": "12.0.5" + }, + "setuptools-12.0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "156823fb6cfde9a566c68e8ddd466d2a", + "name": "setuptools", + "requires": [], + "size": 462467, + "version": "12.0.5" + }, + "setuptools-12.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "7797bf2a888255964f1690e4ca2af9a4", + "name": "setuptools", + "requires": [], + "size": 452052, + "version": "12.0.5" + }, + "setuptools-12.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "33818945536901bc7e19ccbda1856860", + "name": "setuptools", + "requires": [], + "size": 449602, + "version": "12.1" + }, + "setuptools-12.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9c278cd9c411b96e9866d5dbb4c410cc", + "name": "setuptools", + "requires": [], + "size": 446843, + "version": "12.1" + }, + "setuptools-12.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "923a4439e6bbfb2301eb9f1cbfd3e5fa", + "name": "setuptools", + "requires": [], + "size": 462837, + "version": "12.1" + }, + "setuptools-12.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-11", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "7c88e034d6773a767540eae7b6be0f21", + "name": "setuptools", + "requires": [], + "size": 452171, + "version": "12.1" + }, + "setuptools-12.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "800696e35f863777ba284141b925112f", + "name": "setuptools", + "requires": [], + "size": 449550, + "version": "12.2" + }, + "setuptools-12.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "3536c9aac821de3a1c64e33bca093677", + "name": "setuptools", + "requires": [], + "size": 446733, + "version": "12.2" + }, + "setuptools-12.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "a5b0e1f853bd89a2f7529cb8e99302f2", + "name": "setuptools", + "requires": [], + "size": 462635, + "version": "12.2" + }, + "setuptools-12.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "fce1d8325ebac39381a906aae406176d", + "name": "setuptools", + "requires": [], + "size": 452005, + "version": "12.2" + }, + "setuptools-12.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "048ee63d0d405a02301b6f3ea4f5b1eb", + "name": "setuptools", + "requires": [], + "size": 448547, + "version": "12.3" + }, + "setuptools-12.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "cdab3d8b21ab5af83cc9331bb31064b6", + "name": "setuptools", + "requires": [], + "size": 445737, + "version": "12.3" + }, + "setuptools-12.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "34290e35de6d4bdd1257600d771ccc33", + "name": "setuptools", + "requires": [], + "size": 461671, + "version": "12.3" + }, + "setuptools-12.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-02", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "fb678efdd11d8eb721e50363a48ee0a7", + "name": "setuptools", + "requires": [], + "size": 450968, + "version": "12.3" + }, + "setuptools-12.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "83432c9c3d6b573e484010cda057359f", + "name": "setuptools", + "requires": [], + "size": 448686, + "version": "12.4" + }, + "setuptools-12.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "4eceb223644bdd44a11c20c880750cc9", + "name": "setuptools", + "requires": [], + "size": 445807, + "version": "12.4" + }, + "setuptools-12.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "a3477d39b6be784c2176566e577c3ac1", + "name": "setuptools", + "requires": [], + "size": 461580, + "version": "12.4" + }, + "setuptools-12.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-04", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0e06004da39721c93be94f98b3592473", + "name": "setuptools", + "requires": [], + "size": 450950, + "version": "12.4" + }, + "setuptools-13.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "c798417173c74f4304433a6c4ea75fd3", + "name": "setuptools", + "requires": [], + "size": 448462, + "version": "13.0.2" + }, + "setuptools-13.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "63e875c067d5f7c34ab9332e6cdc2b52", + "name": "setuptools", + "requires": [], + "size": 445519, + "version": "13.0.2" + }, + "setuptools-13.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "5dd8b67ad25693088b7fef26c6899f67", + "name": "setuptools", + "requires": [], + "size": 461485, + "version": "13.0.2" + }, + "setuptools-13.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "bd4f2d3229c2e7044e6fe19d1d0be0ab", + "name": "setuptools", + "requires": [], + "size": 451028, + "version": "13.0.2" + }, + "setuptools-14.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "df4101d04b8253fa612946b2542f44b7", + "name": "setuptools", + "requires": [], + "size": 448299, + "version": "14.0" + }, + "setuptools-14.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "abaa8b26d6b5098d9856d229fb11b5d5", + "name": "setuptools", + "requires": [], + "size": 445389, + "version": "14.0" + }, + "setuptools-14.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "bbc2f9f29f522669aa58d69284b4963b", + "name": "setuptools", + "requires": [], + "size": 461392, + "version": "14.0" + }, + "setuptools-14.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-09", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "d38dbdf080b7f6366917f6fda06b5ffe", + "name": "setuptools", + "requires": [], + "size": 450738, + "version": "14.0" + }, + "setuptools-14.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-17", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "2350742b576f312deb8fc4de31950320", + "name": "setuptools", + "requires": [], + "size": 448377, + "version": "14.3" + }, + "setuptools-14.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-17", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "050b8882d82f0b40df57a4c98c405f87", + "name": "setuptools", + "requires": [], + "size": 445582, + "version": "14.3" + }, + "setuptools-14.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-17", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "6c7a4aac06876e5090c08e4a44e46cca", + "name": "setuptools", + "requires": [], + "size": 461420, + "version": "14.3" + }, + "setuptools-14.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-17", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "87f84c9a0b7770215b483dca60235379", + "name": "setuptools", + "requires": [], + "size": 450805, + "version": "14.3" + }, + "setuptools-14.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "6aeef1d4898f4ff7cc57da57c4e1f605", + "name": "setuptools", + "requires": [], + "size": 448685, + "version": "14.3.1" + }, + "setuptools-14.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "13a391c25c403b110f88dd3cd8f030a8", + "name": "setuptools", + "requires": [], + "size": 445655, + "version": "14.3.1" + }, + "setuptools-14.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0b8589ca57c33d5f4a230af6ce5a1d58", + "name": "setuptools", + "requires": [], + "size": 461698, + "version": "14.3.1" + }, + "setuptools-14.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9ecf12ed1a2f9e66684d8154eecd059c", + "name": "setuptools", + "requires": [], + "size": 451093, + "version": "14.3.1" + }, + "setuptools-15.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "4e4435120b23908d009460e226807bff", + "name": "setuptools", + "requires": [], + "size": 448791, + "version": "15.0" + }, + "setuptools-15.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "5309ecf041dce0d10b6ad1d5d09268c4", + "name": "setuptools", + "requires": [], + "size": 445974, + "version": "15.0" + }, + "setuptools-15.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "ec99a310d7c79b9b7f30fc3da781bd48", + "name": "setuptools", + "requires": [], + "size": 461940, + "version": "15.0" + }, + "setuptools-15.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "776a53085d8a4e97a0f0d7c34aa42add", + "name": "setuptools", + "requires": [], + "size": 451493, + "version": "15.0" + }, + "setuptools-15.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "77cf484eec64901ca5c15bc975c72d24", + "name": "setuptools", + "requires": [], + "size": 448827, + "version": "15.1" + }, + "setuptools-15.1-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-04-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "c98335273ccbc727e975a957dcd30051", + "name": "setuptools", + "requires": [], + "size": 448443, + "version": "15.1" + }, + "setuptools-15.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "716ab0a64098464e20a11e58fc7b3c86", + "name": "setuptools", + "requires": [], + "size": 445977, + "version": "15.1" + }, + "setuptools-15.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-04-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "5f737efd4732b70367cc44de4f9cc282", + "name": "setuptools", + "requires": [], + "size": 445528, + "version": "15.1" + }, + "setuptools-15.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "505cc22ae73c659f9ce884e68e9dfe07", + "name": "setuptools", + "requires": [], + "size": 462003, + "version": "15.1" + }, + "setuptools-15.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-04-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "60c035b0289747a849f14205ace3b367", + "name": "setuptools", + "requires": [], + "size": 461518, + "version": "15.1" + }, + "setuptools-15.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0b39dac5521eb0a3b90062c846a92b3b", + "name": "setuptools", + "requires": [], + "size": 451459, + "version": "15.1" + }, + "setuptools-15.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-04-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9e3c0bfaaac07a9e0bba79009e45f666", + "name": "setuptools", + "requires": [], + "size": 451046, + "version": "15.1" + }, + "setuptools-15.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "5c4a59bc66dd1d10415735a5a5935d5f", + "name": "setuptools", + "requires": [], + "size": 448377, + "version": "15.2" + }, + "setuptools-15.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "445d19548674466f7a9bb9515c829787", + "name": "setuptools", + "requires": [], + "size": 445591, + "version": "15.2" + }, + "setuptools-15.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0e2464a2a325a476752f276fe1137b4c", + "name": "setuptools", + "requires": [], + "size": 461494, + "version": "15.2" + }, + "setuptools-15.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "8cb9105528acfc76b21f528f0480616e", + "name": "setuptools", + "requires": [], + "size": 450991, + "version": "15.2" + }, + "setuptools-16.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0c044d0e289fcbcd1f69ce51a06a5f3c", + "name": "setuptools", + "requires": [], + "size": 350878, + "version": "16.0" + }, + "setuptools-16.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "ab9ecc5db3e2151d4af638f6f919f0a8", + "name": "setuptools", + "requires": [], + "size": 348836, + "version": "16.0" + }, + "setuptools-16.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "1973e628a36693ec0e93b8346703fa9e", + "name": "setuptools", + "requires": [], + "size": 362080, + "version": "16.0" + }, + "setuptools-16.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-18", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "ef2eee452faad01ee0d2b581a81922f9", + "name": "setuptools", + "requires": [], + "size": 353101, + "version": "16.0" + }, + "setuptools-17.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "805324ec8ab172246e3b529af9170fe6", + "name": "setuptools", + "requires": [], + "size": 351203, + "version": "17.0" + }, + "setuptools-17.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "d0f2ee033c5fdd11f27e6c780612cbf6", + "name": "setuptools", + "requires": [], + "size": 349069, + "version": "17.0" + }, + "setuptools-17.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "5cb88ff1fc5e09a0a0202fa87536b92a", + "name": "setuptools", + "requires": [], + "size": 362395, + "version": "17.0" + }, + "setuptools-17.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "b0fad382b9a0595cdab88fca7d21af96", + "name": "setuptools", + "requires": [], + "size": 353417, + "version": "17.0" + }, + "setuptools-17.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "7029f73588e11d93bb35a7395e33fac2", + "name": "setuptools", + "requires": [], + "size": 351383, + "version": "17.1.1" + }, + "setuptools-17.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9db35424d39cd598014dd1060745f4a1", + "name": "setuptools", + "requires": [], + "size": 349232, + "version": "17.1.1" + }, + "setuptools-17.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0e7682d62cfc8753dfadd8e857f4ba6a", + "name": "setuptools", + "requires": [], + "size": 362580, + "version": "17.1.1" + }, + "setuptools-17.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-16", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "c74b7b8acfb2d66c4963c001f481c3ed", + "name": "setuptools", + "requires": [], + "size": 353611, + "version": "17.1.1" + }, + "setuptools-18.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "1df9a5e8e3091df81a39d3369417253c", + "name": "setuptools", + "requires": [], + "size": 350871, + "version": "18.0.1" + }, + "setuptools-18.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "370a8901c257d1689f4041f79816b756", + "name": "setuptools", + "requires": [], + "size": 348847, + "version": "18.0.1" + }, + "setuptools-18.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0e771271053dd9e974a22c06c16bb826", + "name": "setuptools", + "requires": [], + "size": 361967, + "version": "18.0.1" + }, + "setuptools-18.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "355e88eb9bfd619bec3f35762bd2f300", + "name": "setuptools", + "requires": [], + "size": 352992, + "version": "18.0.1" + }, + "setuptools-18.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "8c119b3644f81f8ba989c1d61790dbb3", + "name": "setuptools", + "requires": [], + "size": 349142, + "version": "18.1" + }, + "setuptools-18.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "51f61bbc7e25f3bf40e488e88eb985ff", + "name": "setuptools", + "requires": [], + "size": 362336, + "version": "18.1" + }, + "setuptools-18.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-13", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0cee637da4cbda1c577a11da2de30fdb", + "name": "setuptools", + "requires": [], + "size": 353335, + "version": "18.1" + }, + "setuptools-18.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "37691903a0dc3c5856545ddbf1f25820", + "name": "setuptools", + "requires": [], + "size": 352123, + "version": "18.1" + }, + "setuptools-18.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "34a037aad1056aed892d0f5c14f007fe", + "name": "setuptools", + "requires": [], + "size": 350053, + "version": "18.3.2" + }, + "setuptools-18.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "e6a66ef6be6216d40fba292f0e06ac5d", + "name": "setuptools", + "requires": [], + "size": 363280, + "version": "18.3.2" + }, + "setuptools-18.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "da52938f02dff9acd6bac713e1e50b2f", + "name": "setuptools", + "requires": [], + "size": 354276, + "version": "18.3.2" + }, + "setuptools-18.3.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "c6a3d344c1b8046373102d412de90ec9", + "name": "setuptools", + "requires": [], + "size": 352983, + "version": "18.3.2" + }, + "setuptools-18.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "abe1828e0d85d760e958faf49342224c", + "name": "setuptools", + "requires": [], + "size": 350091, + "version": "18.4" + }, + "setuptools-18.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "cc50d6c7cd1be79e50363ad31411b995", + "name": "setuptools", + "requires": [], + "size": 363339, + "version": "18.4" + }, + "setuptools-18.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "a51e1ec74d5ab96c579ed46875ad7ec5", + "name": "setuptools", + "requires": [], + "size": 354239, + "version": "18.4" + }, + "setuptools-18.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-12", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "bccb473936a2505cc55779730a8f04ea", + "name": "setuptools", + "requires": [], + "size": 353064, + "version": "18.4" + }, + "setuptools-18.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "5df76bec761d0ceb59710552ac761482", + "name": "setuptools", + "requires": [], + "size": 350384, + "version": "18.5" + }, + "setuptools-18.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "e061fe5d73832b7df7fb4355a9ca3325", + "name": "setuptools", + "requires": [], + "size": 363645, + "version": "18.5" + }, + "setuptools-18.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "637dfa0582982b63962dffb3194db47b", + "name": "setuptools", + "requires": [], + "size": 354572, + "version": "18.5" + }, + "setuptools-18.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "70cd7f54230565103d91b51e79854969", + "name": "setuptools", + "requires": [], + "size": 353370, + "version": "18.5" + }, + "setuptools-18.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "8803029da2b31fa8471cc8564195540f", + "name": "setuptools", + "requires": [], + "size": 353407, + "version": "18.8.1" + }, + "setuptools-18.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "e70d7ee7d6396f42469463e78989eacd", + "name": "setuptools", + "requires": [], + "size": 366796, + "version": "18.8.1" + }, + "setuptools-18.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "12c717b1434e5f934452ed19b1f25905", + "name": "setuptools", + "requires": [], + "size": 357535, + "version": "18.8.1" + }, + "setuptools-18.8.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "93a7482ff509d0ff48014a776647fe9f", + "name": "setuptools", + "requires": [], + "size": 356483, + "version": "18.8.1" + }, + "setuptools-19.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "b3b32403202ede558497b026597482e6", + "name": "setuptools", + "requires": [], + "size": 353509, + "version": "19.1.1" + }, + "setuptools-19.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "efc1bc285220a142e62e34c834a63a52", + "name": "setuptools", + "requires": [], + "size": 366918, + "version": "19.1.1" + }, + "setuptools-19.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "c1e9c777cfc9ae0d0f5ca4cba35cf455", + "name": "setuptools", + "requires": [], + "size": 357600, + "version": "19.1.1" + }, + "setuptools-19.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-18", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "c5ac27708cb403f9fa320e063c3e8c97", + "name": "setuptools", + "requires": [], + "size": 356539, + "version": "19.1.1" + }, + "setuptools-19.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9b598c28a3f3c212e64981b4aa9e287b", + "name": "setuptools", + "requires": [], + "size": 353644, + "version": "19.2" + }, + "setuptools-19.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "b38bf53b6fceea496ad540f28be02166", + "name": "setuptools", + "requires": [], + "size": 367169, + "version": "19.2" + }, + "setuptools-19.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "4b6d8dd782401ed85a0eb8787b869edd", + "name": "setuptools", + "requires": [], + "size": 357874, + "version": "19.2" + }, + "setuptools-19.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "b4156d7fc5eff6cb08f689c8adf054e1", + "name": "setuptools", + "requires": [], + "size": 356732, + "version": "19.2" + }, + "setuptools-19.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "d20bf67157c2c5ba207a076e05a6c9b5", + "name": "setuptools", + "requires": [], + "size": 373255, + "version": "19.4" + }, + "setuptools-19.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "33bdb2aa8cca82d880b653410e17e773", + "name": "setuptools", + "requires": [], + "size": 387281, + "version": "19.4" + }, + "setuptools-19.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "f95326756967cba68ed98b0570da2662", + "name": "setuptools", + "requires": [], + "size": 377654, + "version": "19.4" + }, + "setuptools-19.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-21", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "1e5aaed8f2d40048bdb3989437d15703", + "name": "setuptools", + "requires": [], + "size": 376526, + "version": "19.4" + }, + "setuptools-19.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "408a281647a078b62bb4db4e31987550", + "name": "setuptools", + "requires": [], + "size": 373558, + "version": "19.6.2" + }, + "setuptools-19.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "3682275b25ea5f0a6a029c588094b968", + "name": "setuptools", + "requires": [], + "size": 387474, + "version": "19.6.2" + }, + "setuptools-19.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "4fca6806d6914a9c4d8d8be63b10f2a7", + "name": "setuptools", + "requires": [], + "size": 378085, + "version": "19.6.2" + }, + "setuptools-19.6.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9fbb2e03d4ef5059e842b1c2aaa96575", + "name": "setuptools", + "requires": [], + "size": 376861, + "version": "19.6.2" + }, + "setuptools-2.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "a69efac947e878440220a1e51fa06a78", + "name": "setuptools", + "requires": [], + "size": 467045, + "version": "2.0.1" + }, + "setuptools-2.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "f1c65f8cea78e9e80386b445972028af", + "name": "setuptools", + "requires": [], + "size": 465076, + "version": "2.0.1" + }, + "setuptools-2.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "e027e6f280e85a393c3eb3c9312200d8", + "name": "setuptools", + "requires": [], + "size": 480959, + "version": "2.0.1" + }, + "setuptools-2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "7fd84ea31d486bb215bb425df0c54d6a", + "name": "setuptools", + "requires": [], + "size": 468345, + "version": "2.1" + }, + "setuptools-2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "e57ad857f547c94eaf931c581e4544e9", + "name": "setuptools", + "requires": [], + "size": 466322, + "version": "2.1" + }, + "setuptools-2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "6327855ad41edee9262972458ab03582", + "name": "setuptools", + "requires": [], + "size": 482396, + "version": "2.1" + }, + "setuptools-2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0c2e270729ba69a446fe2744b854a61f", + "name": "setuptools", + "requires": [], + "size": 470549, + "version": "2.2" + }, + "setuptools-2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "5169a441913a78541bd822caa67ec14d", + "name": "setuptools", + "requires": [], + "size": 468413, + "version": "2.2" + }, + "setuptools-2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "87094ff3400e52c1845735830f16eab5", + "name": "setuptools", + "requires": [], + "size": 484611, + "version": "2.2" + }, + "setuptools-20.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "85afb3a45262bebbc7171b9fb95e3b02", + "name": "setuptools", + "requires": [], + "size": 376758, + "version": "20.1.1" + }, + "setuptools-20.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "d5b88763280a303a0431e4b38bd12815", + "name": "setuptools", + "requires": [], + "size": 390891, + "version": "20.1.1" + }, + "setuptools-20.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "21a37f6096e683cbdafa883debde25c4", + "name": "setuptools", + "requires": [], + "size": 381303, + "version": "20.1.1" + }, + "setuptools-20.1.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-22", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "278e8959419e755ff27771e52aeb9662", + "name": "setuptools", + "requires": [], + "size": 380059, + "version": "20.1.1" + }, + "setuptools-20.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-06", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "298a72ee2ca5346141c5fd87367a20ab", + "name": "setuptools", + "requires": [], + "size": 463688, + "version": "20.2.2" + }, + "setuptools-20.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-06", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "c1f35c08f508d99dfcfb5fcef2245537", + "name": "setuptools", + "requires": [], + "size": 469842, + "version": "20.2.2" + }, + "setuptools-20.2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-06", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "64675c22a4c99b808faef46410eb4627", + "name": "setuptools", + "requires": [], + "size": 468419, + "version": "20.2.2" + }, + "setuptools-20.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "30a2079ac7783bea76dec29bf842e599", + "name": "setuptools", + "requires": [], + "size": 463085, + "version": "20.3" + }, + "setuptools-20.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "842cc563105f890dd75d768617f8099d", + "name": "setuptools", + "requires": [], + "size": 469141, + "version": "20.3" + }, + "setuptools-20.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-17", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "d44cfbe0610237d340b27387c83d5107", + "name": "setuptools", + "requires": [], + "size": 467775, + "version": "20.3" + }, + "setuptools-20.6.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "814cb2030f34322d1e1b673c7ebbeac6", + "name": "setuptools", + "requires": [], + "size": 463336, + "version": "20.6.7" + }, + "setuptools-20.6.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "4fb759829930357c67d09a81cb9fe0b1", + "name": "setuptools", + "requires": [], + "size": 469385, + "version": "20.6.7" + }, + "setuptools-20.6.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "python 3.5*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "0d1912d06e4f483b170c4aa4212d72ac", + "name": "setuptools", + "requires": [], + "size": 467833, + "version": "20.6.7" + }, + "setuptools-3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "ea577cce545067f2c6890133ddc87d68", + "name": "setuptools", + "requires": [], + "size": 470964, + "version": "3.1" + }, + "setuptools-3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "20d2aa746f8b24fdd1276e9b7e439a5c", + "name": "setuptools", + "requires": [], + "size": 468977, + "version": "3.1" + }, + "setuptools-3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "af7a221d2e2feaf1b08a322be415620d", + "name": "setuptools", + "requires": [], + "size": 484909, + "version": "3.1" + }, + "setuptools-3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9a96e96b83af717cbc78460dd8325662", + "name": "setuptools", + "requires": [], + "size": 474497, + "version": "3.1" + }, + "setuptools-3.4.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "91e261f55f35ce91de4c23661f4097ae", + "name": "setuptools", + "requires": [], + "size": 477954, + "version": "3.4.4" + }, + "setuptools-3.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "2c0231178b5ea637f1d541c40416b571", + "name": "setuptools", + "requires": [], + "size": 475872, + "version": "3.4.4" + }, + "setuptools-3.4.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "a92745efd9aff693f1bd9efaeec508b2", + "name": "setuptools", + "requires": [], + "size": 492091, + "version": "3.4.4" + }, + "setuptools-3.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "f57c6fbd41596cece1aba1daa73d9057", + "name": "setuptools", + "requires": [], + "size": 481403, + "version": "3.4.4" + }, + "setuptools-3.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "7b81f876c5cb2aa78e2031a529206cec", + "name": "setuptools", + "requires": [], + "size": 480035, + "version": "3.5.1" + }, + "setuptools-3.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "dd41c60a2f59a6679e5a1bc4e52d676e", + "name": "setuptools", + "requires": [], + "size": 477953, + "version": "3.5.1" + }, + "setuptools-3.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "08779792294a2bb27944f983992879d0", + "name": "setuptools", + "requires": [], + "size": 494098, + "version": "3.5.1" + }, + "setuptools-3.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "85825049fb26cfd8c8b15e6c35cb5476", + "name": "setuptools", + "requires": [], + "size": 483435, + "version": "3.5.1" + }, + "setuptools-3.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "d64a9e44c5ada4ef5961fc59e957470c", + "name": "setuptools", + "requires": [], + "size": 480855, + "version": "3.6" + }, + "setuptools-3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "706c1d569401a12c4bee66972c57376b", + "name": "setuptools", + "requires": [], + "size": 478685, + "version": "3.6" + }, + "setuptools-3.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "d82b732e6a71973e3e1281aad3d0b7e3", + "name": "setuptools", + "requires": [], + "size": 494884, + "version": "3.6" + }, + "setuptools-3.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "93c472771174f0b195a6b33622b60dcc", + "name": "setuptools", + "requires": [], + "size": 484322, + "version": "3.6" + }, + "setuptools-5.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "6c338c597f8803d4510fbc1f3d745a74", + "name": "setuptools", + "requires": [], + "size": 439255, + "version": "5.7" + }, + "setuptools-5.7-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-09-02", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "304d10280d79cb5b3bdc07087e62361e", + "name": "setuptools", + "requires": [], + "size": 439384, + "version": "5.7" + }, + "setuptools-5.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "9ba13c60739f970c4fcd197fad947b69", + "name": "setuptools", + "requires": [], + "size": 436935, + "version": "5.7" + }, + "setuptools-5.7-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-09-02", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "4b6102bec503d108c8fd9739739505f9", + "name": "setuptools", + "requires": [], + "size": 436944, + "version": "5.7" + }, + "setuptools-5.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "6f55d73099601db6a5d189d69453c15c", + "name": "setuptools", + "requires": [], + "size": 451893, + "version": "5.7" + }, + "setuptools-5.7-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-09-02", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "876a51b23534a6e0fd8cbf4b70f7653f", + "name": "setuptools", + "requires": [], + "size": 451949, + "version": "5.7" + }, + "setuptools-5.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "002af9a59b985371cb25be04cfae6e65", + "name": "setuptools", + "requires": [], + "size": 442270, + "version": "5.7" + }, + "setuptools-5.7-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-09-02", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "8099b54ce9f7d8702b63b3f7662954df", + "name": "setuptools", + "requires": [], + "size": 442433, + "version": "5.7" + }, + "setuptools-5.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "3678f0a4b771a8c8c9751e44e792c236", + "name": "setuptools", + "requires": [], + "size": 438515, + "version": "5.8" + }, + "setuptools-5.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "02e4a7b27b10e27994344ace598918c1", + "name": "setuptools", + "requires": [], + "size": 436077, + "version": "5.8" + }, + "setuptools-5.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "79c6755f8402740f75b2e93288288b93", + "name": "setuptools", + "requires": [], + "size": 450965, + "version": "5.8" + }, + "setuptools-5.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "06eeb1694063006123dfa713915f6364", + "name": "setuptools", + "requires": [], + "size": 441400, + "version": "5.8" + }, + "setuptools-7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 2.6*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "8997d12e6da41de2515f6613f786d0f0", + "name": "setuptools", + "requires": [], + "size": 449338, + "version": "7.0" + }, + "setuptools-7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 2.7*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "c3dd24c0f1081ce396378f191990c035", + "name": "setuptools", + "requires": [], + "size": 446867, + "version": "7.0" + }, + "setuptools-7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 3.3*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "86b084e4ba5628a71715e0be1d679085", + "name": "setuptools", + "requires": [], + "size": 462062, + "version": "7.0" + }, + "setuptools-7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 3.4*" + ], + "license": "PSF or ZPL", + "license_family": "PSF", + "md5": "e6a59df88606799d008e3830db28b69d", + "name": "setuptools", + "requires": [], + "size": 452415, + "version": "7.0" + }, + "setuptools_scm-1.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-19", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "4d2425e719fc7d7324137a991b9ea8e0", + "name": "setuptools_scm", + "requires": [], + "size": 13404, + "version": "1.8.0" + }, + "setuptools_scm-1.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "fd018c24e87c72210e38be5d7a6cb7e5", + "name": "setuptools_scm", + "requires": [], + "size": 13667, + "version": "1.8.0" + }, + "setuptools_scm-1.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "522641fc514a2bff441b496b99cc0a9a", + "name": "setuptools_scm", + "requires": [], + "size": 13623, + "version": "1.8.0" + }, + "setuptools_scm-1.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD", + "md5": "c1a22675993429efe93af14f9e1b23e2", + "name": "setuptools_scm", + "requires": [], + "size": 13659, + "version": "1.9.0" + }, + "setuptools_scm-1.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "BSD", + "md5": "308a36e1c8ffd14b9a2a4092d259118d", + "name": "setuptools_scm", + "requires": [], + "size": 13899, + "version": "1.9.0" + }, + "setuptools_scm-1.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-23", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "BSD", + "md5": "2cc50d9b7777f74d116808a19f6d0566", + "name": "setuptools_scm", + "requires": [], + "size": 13870, + "version": "1.9.0" + }, + "sh-1.11-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "bf0bb1fbcf972ae0f65af7bc17d2b551", + "name": "sh", + "requires": [], + "size": 36848, + "version": "1.11" + }, + "sh-1.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "aa21659c94d8f958861fc56ef503c677", + "name": "sh", + "requires": [], + "size": 36857, + "version": "1.11" + }, + "sh-1.11-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "c7545397ad30bf65fc47eed55f92bb98", + "name": "sh", + "requires": [], + "size": 37748, + "version": "1.11" + }, + "sh-1.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "549fcfe2f2f4e045dcbd94ed3cb2181a", + "name": "sh", + "requires": [], + "size": 37700, + "version": "1.11" + }, + "sh-1.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "b76787e1ecf255c7c8cee41798ac145e", + "name": "sh", + "requires": [], + "size": 37629, + "version": "1.11" + }, + "shapely-1.2.18-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "61c7c1cb062c4a115393bf6486d892a3", + "name": "shapely", + "requires": [], + "size": 157455, + "version": "1.2.18" + }, + "shapely-1.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "037d2cc6eea7fc6d10128424ebcec48a", + "name": "shapely", + "requires": [], + "size": 178335, + "version": "1.3.0" + }, + "shapely-1.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "aee32339d6bd065549528223bf15cc73", + "name": "shapely", + "requires": [], + "size": 178227, + "version": "1.3.0" + }, + "shapely-1.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "6537287ccab69edf7186da559a23c2f0", + "name": "shapely", + "requires": [], + "size": 180825, + "version": "1.3.1" + }, + "shapely-1.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "a90ee0d311b6c098b706704d03fa56ea", + "name": "shapely", + "requires": [], + "size": 180727, + "version": "1.3.1" + }, + "shapely-1.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "a500f061b48c6471d5406433023f7989", + "name": "shapely", + "requires": [], + "size": 219168, + "version": "1.3.1" + }, + "shapely-1.3.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "863db88cf057942874dd34c02d911799", + "name": "shapely", + "requires": [], + "size": 181149, + "version": "1.3.2" + }, + "shapely-1.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "a54e277f09c59b02c8a368c2768ad4a9", + "name": "shapely", + "requires": [], + "size": 181116, + "version": "1.3.2" + }, + "shapely-1.3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "4c1324d1d0a907f15ea83fd19b6ffdf7", + "name": "shapely", + "requires": [], + "size": 219523, + "version": "1.3.2" + }, + "shapely-1.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "5b49db9f379e22d49a00782067b8d950", + "name": "shapely", + "requires": [], + "size": 194765, + "version": "1.3.2" + }, + "shapely-1.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "caa11b8bdf93a30ee23cce309608892c", + "name": "shapely", + "requires": [], + "size": 196571, + "version": "1.4.0" + }, + "shapely-1.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "71feb3fb8cafb932b627e5919346e81f", + "name": "shapely", + "requires": [], + "size": 196620, + "version": "1.4.0" + }, + "shapely-1.4.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "de48b3798563e51497900569d9b49ce8", + "name": "shapely", + "requires": [], + "size": 202587, + "version": "1.4.0" + }, + "shapely-1.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "5472811565ea9a7d230b4123d4c3001f", + "name": "shapely", + "requires": [], + "size": 221931, + "version": "1.4.0" + }, + "shapely-1.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "6929f72c2ea3bfa5c7ddf1115c094fe0", + "name": "shapely", + "requires": [], + "size": 199209, + "version": "1.4.1" + }, + "shapely-1.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "a48eea751e291f4a61f8798908c91b41", + "name": "shapely", + "requires": [], + "size": 199294, + "version": "1.4.1" + }, + "shapely-1.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "e83bc73ebd59693cee32cb9bf92ab509", + "name": "shapely", + "requires": [], + "size": 205682, + "version": "1.4.1" + }, + "shapely-1.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-24", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "604fc4a5bf2787ccc18f793356a584c6", + "name": "shapely", + "requires": [], + "size": 224764, + "version": "1.4.1" + }, + "shapely-1.4.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "dcc54908e65c46c6c040c915d5c0d0bd", + "name": "shapely", + "requires": [], + "size": 207818, + "version": "1.4.4" + }, + "shapely-1.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "b22af064964da93473e43a36e411d28a", + "name": "shapely", + "requires": [], + "size": 207704, + "version": "1.4.4" + }, + "shapely-1.4.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "010f87f4cefd4cc272408a9d3ec2edc4", + "name": "shapely", + "requires": [], + "size": 217162, + "version": "1.4.4" + }, + "shapely-1.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "2b6920e8877e2ffe62937b17f645498c", + "name": "shapely", + "requires": [], + "size": 237883, + "version": "1.4.4" + }, + "shapely-1.5.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "3aa4f43546480c5e6aaeec69cea86d13", + "name": "shapely", + "requires": [], + "size": 243053, + "version": "1.5.0" + }, + "shapely-1.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "716d5335d60ca129313da164f6a1c8e0", + "name": "shapely", + "requires": [], + "size": 243013, + "version": "1.5.0" + }, + "shapely-1.5.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "1fce2c7bd2312b6ede59fbb2b9eb3593", + "name": "shapely", + "requires": [], + "size": 255373, + "version": "1.5.0" + }, + "shapely-1.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "cebfaca71f881c553a1994ad7de83ceb", + "name": "shapely", + "requires": [], + "size": 281690, + "version": "1.5.0" + }, + "shapely-1.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-08", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "e6137c47dbe7defb62df30a4becb27fa", + "name": "shapely", + "requires": [], + "size": 243175, + "version": "1.5.1" + }, + "shapely-1.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-08", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "c67fd9b75827ed245caac57d72c39831", + "name": "shapely", + "requires": [], + "size": 243047, + "version": "1.5.1" + }, + "shapely-1.5.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-08", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "756ef64b628f37a40e50721f04a6d2a6", + "name": "shapely", + "requires": [], + "size": 255479, + "version": "1.5.1" + }, + "shapely-1.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-08", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "08b37bc4742bf09335af3bba6676c7fc", + "name": "shapely", + "requires": [], + "size": 281721, + "version": "1.5.1" + }, + "shapely-1.5.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-26", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "d8547511a4db085406f00fde32486e26", + "name": "shapely", + "requires": [], + "size": 258327, + "version": "1.5.11" + }, + "shapely-1.5.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-26", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "f37ed527b50afd4f58e6475bf9f09245", + "name": "shapely", + "requires": [], + "size": 298433, + "version": "1.5.11" + }, + "shapely-1.5.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "geos 3.3.3", + "python 3.5*" + ], + "license": "BSD", + "md5": "0450b8546f2d39104270e4729bc39ca4", + "name": "shapely", + "requires": [], + "size": 298396, + "version": "1.5.11" + }, + "shapely-1.5.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "geos 3.4.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "51649ef815a32c34cb7ae47a376abc8a", + "name": "shapely", + "requires": [], + "size": 261247, + "version": "1.5.13" + }, + "shapely-1.5.13-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "geos 3.4.2", + "python 3.4*" + ], + "license": "BSD", + "md5": "376ececb89cabd2e9ba45c689ddba3d3", + "name": "shapely", + "requires": [], + "size": 300692, + "version": "1.5.13" + }, + "shapely-1.5.13-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-16", + "depends": [ + "geos 3.4.2", + "python 3.5*" + ], + "license": "BSD", + "md5": "cbad49d4ed5b34abc785d7813d660033", + "name": "shapely", + "requires": [], + "size": 293358, + "version": "1.5.13" + }, + "shapely-1.5.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "e17a28c7bfe55dfc3a953a16eb090fe9", + "name": "shapely", + "requires": [], + "size": 242744, + "version": "1.5.2" + }, + "shapely-1.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "bfd74d4282b203983b164887a94df4e3", + "name": "shapely", + "requires": [], + "size": 242710, + "version": "1.5.2" + }, + "shapely-1.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "8237d9ed86c3cba3daf513847b4239ce", + "name": "shapely", + "requires": [], + "size": 256785, + "version": "1.5.2" + }, + "shapely-1.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "160467d59bf42cd5a60d4506f8d2c452", + "name": "shapely", + "requires": [], + "size": 282206, + "version": "1.5.2" + }, + "shapely-1.5.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "8c7b80a2991d2734eb4d8029ec077161", + "name": "shapely", + "requires": [], + "size": 242591, + "version": "1.5.5" + }, + "shapely-1.5.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "ac5fdb5a595c70b0cda16eafdcae9f78", + "name": "shapely", + "requires": [], + "size": 242228, + "version": "1.5.5" + }, + "shapely-1.5.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "b6fccb5850cf7f86606175b29e6ee053", + "name": "shapely", + "requires": [], + "size": 256650, + "version": "1.5.5" + }, + "shapely-1.5.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-26", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "f3f35af5a50f631fc79f7c2b9bd45bd3", + "name": "shapely", + "requires": [], + "size": 282137, + "version": "1.5.5" + }, + "shapely-1.5.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "605ea96622d78f1afa4f76b13b36fc86", + "name": "shapely", + "requires": [], + "size": 244342, + "version": "1.5.6" + }, + "shapely-1.5.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "7384c014f57af1761b282e5be7f987fc", + "name": "shapely", + "requires": [], + "size": 244097, + "version": "1.5.6" + }, + "shapely-1.5.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "b851b69cca8eb117576c9d2b77ad9000", + "name": "shapely", + "requires": [], + "size": 256094, + "version": "1.5.6" + }, + "shapely-1.5.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "8b7319df36c4e6787c050da1e58025f7", + "name": "shapely", + "requires": [], + "size": 282739, + "version": "1.5.6" + }, + "shapely-1.5.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "50d90f253835c79886e613b3466305ea", + "name": "shapely", + "requires": [], + "size": 244355, + "version": "1.5.7" + }, + "shapely-1.5.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "326703565a7a44789c5d2346a28e43f2", + "name": "shapely", + "requires": [], + "size": 244355, + "version": "1.5.7" + }, + "shapely-1.5.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "12a9385bdac14977bbc88935a872eb15", + "name": "shapely", + "requires": [], + "size": 257046, + "version": "1.5.7" + }, + "shapely-1.5.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "1680fa29752f3026bd35446bb0a50ba7", + "name": "shapely", + "requires": [], + "size": 283302, + "version": "1.5.7" + }, + "shapely-1.5.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "df8435a5e27db0f557dfdbca72cf8325", + "name": "shapely", + "requires": [], + "size": 246605, + "version": "1.5.8" + }, + "shapely-1.5.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "f039a71bafe7415f04c6234869ea97ef", + "name": "shapely", + "requires": [], + "size": 246526, + "version": "1.5.8" + }, + "shapely-1.5.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "effd155cc2620d83c817c2f5e7f2c44a", + "name": "shapely", + "requires": [], + "size": 257090, + "version": "1.5.8" + }, + "shapely-1.5.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "62e7668703bc4622185998e4d18436e2", + "name": "shapely", + "requires": [], + "size": 284486, + "version": "1.5.8" + }, + "shapely-1.5.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "geos 3.3.3", + "python 2.6*" + ], + "license": "BSD", + "md5": "fcc925d4a3ffa14890abb160fe80002d", + "name": "shapely", + "requires": [], + "size": 247457, + "version": "1.5.9" + }, + "shapely-1.5.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "geos 3.3.3", + "python 2.7*" + ], + "license": "BSD", + "md5": "10d5ffac6676590d56bec92d7174a6a2", + "name": "shapely", + "requires": [], + "size": 247414, + "version": "1.5.9" + }, + "shapely-1.5.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "geos 3.3.3", + "python 3.3*" + ], + "license": "BSD", + "md5": "06ef07e253e6e92a7683210e25cca957", + "name": "shapely", + "requires": [], + "size": 257537, + "version": "1.5.9" + }, + "shapely-1.5.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "geos 3.3.3", + "python 3.4*" + ], + "license": "BSD", + "md5": "dc79dda36911d600725cd8474ec21542", + "name": "shapely", + "requires": [], + "size": 284972, + "version": "1.5.9" + }, + "shiboken-1.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "qt" + ], + "license_family": "LGPL", + "md5": "6b42a885975b68946a0adf5db5055830", + "name": "shiboken", + "requires": [], + "size": 921147, + "version": "1.1.2" + }, + "shiboken-1.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "qt" + ], + "license_family": "LGPL", + "md5": "4f80951d8ab65f844ce306d7f6d5714b", + "name": "shiboken", + "requires": [], + "size": 860802, + "version": "1.1.2" + }, + "shiboken-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "qt" + ], + "license_family": "LGPL", + "md5": "9320975710908e989451bf184df54be4", + "name": "shiboken", + "requires": [], + "size": 903862, + "version": "1.2.0" + }, + "shiboken-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "qt" + ], + "license_family": "LGPL", + "md5": "c6ccec12baa55ec5af1cfed44a2ac28a", + "name": "shiboken", + "requires": [], + "size": 904253, + "version": "1.2.1" + }, + "simplegeneric-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "b44f2af32fac8f46d97cb1fad4b45cd8", + "name": "simplegeneric", + "requires": [], + "size": 5954, + "version": "0.8.1" + }, + "simplegeneric-0.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "b9386970a794d394c0e3e1a31a38c6ad", + "name": "simplegeneric", + "requires": [], + "size": 6041, + "version": "0.8.1" + }, + "simplegeneric-0.8.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "d364b72d8fbd744c237be6d6d51915fb", + "name": "simplegeneric", + "requires": [], + "size": 6043, + "version": "0.8.1" + }, + "simplejson-3.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "180c0db1bf070b0af89b4c2b42590d80", + "name": "simplejson", + "requires": [], + "size": 117303, + "version": "3.8.0" + }, + "simplejson-3.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "88f7f99a8d17c4075428bfeccc336a86", + "name": "simplejson", + "requires": [], + "size": 116166, + "version": "3.8.0" + }, + "simplejson-3.8.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "0ef004e5a9ad1d1fc3b46310dd938ef7", + "name": "simplejson", + "requires": [], + "size": 116130, + "version": "3.8.0" + }, + "simplejson-3.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "95983976b68cd451afe0fbdfe3427964", + "name": "simplejson", + "requires": [], + "size": 116716, + "version": "3.8.1" + }, + "simplejson-3.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "b4aea40f97801123116b59cb4df1cdcc", + "name": "simplejson", + "requires": [], + "size": 115457, + "version": "3.8.1" + }, + "simplejson-3.8.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "5324d4dbadddc5c109212d013ff97383", + "name": "simplejson", + "requires": [], + "size": 113831, + "version": "3.8.1" + }, + "simplejson-3.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5e854f2e7435957949db23f4e139f593", + "name": "simplejson", + "requires": [], + "size": 121103, + "version": "3.8.2" + }, + "simplejson-3.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "fba7d1faf2873154798c0aa02cc08304", + "name": "simplejson", + "requires": [], + "size": 119753, + "version": "3.8.2" + }, + "simplejson-3.8.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "a61ab4e4569c616943034bdc3291900b", + "name": "simplejson", + "requires": [], + "size": 118291, + "version": "3.8.2" + }, + "singledispatch-3.4.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-11", + "depends": [ + "python 2.7*", + "six" + ], + "license": "MIT", + "md5": "95ce90450ee1287efc3f3f7c70efc990", + "name": "singledispatch", + "requires": [], + "size": 11988, + "version": "3.4.0.3" + }, + "singledispatch-3.4.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 3.4*", + "six" + ], + "license": "MIT", + "md5": "09e5c75df1a6e3948a992812b7b19b79", + "name": "singledispatch", + "requires": [], + "size": 12924, + "version": "3.4.0.3" + }, + "singledispatch-3.4.0.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 3.5*", + "six" + ], + "license": "MIT", + "md5": "0e68da1f71ec65d29dd278ed8e3b1f01", + "name": "singledispatch", + "requires": [], + "size": 12897, + "version": "3.4.0.3" + }, + "sip-4.15.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "GPL3", + "md5": "56fe249dab8674c1f826a8907b829f70", + "name": "sip", + "requires": [], + "size": 249200, + "version": "4.15.5" + }, + "sip-4.15.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "GPL3", + "md5": "85c16ae8cc1cab46b83358213670c29a", + "name": "sip", + "requires": [], + "size": 249273, + "version": "4.15.5" + }, + "sip-4.15.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "GPL3", + "md5": "1fc54d5ae853a0398a295360558f070f", + "name": "sip", + "requires": [], + "size": 224657, + "version": "4.15.5" + }, + "sip-4.15.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "GPL3", + "md5": "e59296d17ce037aac500cb94fb843496", + "name": "sip", + "requires": [], + "size": 224746, + "version": "4.15.5" + }, + "sip-4.16.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 2.6*" + ], + "license": "GPL3", + "md5": "245bbf127558470f38384a9e8044e2a4", + "name": "sip", + "requires": [], + "size": 250626, + "version": "4.16.5" + }, + "sip-4.16.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 2.7*" + ], + "license": "GPL3", + "md5": "d8a653ac0ac9042ad8b253a09b557e39", + "name": "sip", + "requires": [], + "size": 250943, + "version": "4.16.5" + }, + "sip-4.16.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 3.3*" + ], + "license": "GPL3", + "md5": "cea1e9383942153a00cd29e7c7ed0c89", + "name": "sip", + "requires": [], + "size": 226103, + "version": "4.16.5" + }, + "sip-4.16.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 3.4*" + ], + "license": "GPL3", + "md5": "3b33de63d3d902d0e18093a60242b7f4", + "name": "sip", + "requires": [], + "size": 226178, + "version": "4.16.5" + }, + "sip-4.16.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "GPL3", + "md5": "0b2a10365dae7c5c1081f2c0ae34f0ef", + "name": "sip", + "requires": [], + "size": 225835, + "version": "4.16.5" + }, + "sip-4.16.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 2.7*" + ], + "license": "GPL3", + "md5": "1dddfab3673a26f5e9c090c59e08e322", + "name": "sip", + "requires": [], + "size": 252513, + "version": "4.16.9" + }, + "sip-4.16.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 3.4*" + ], + "license": "GPL3", + "md5": "da76eca6d1789c394f41c9a95cbf8ebb", + "name": "sip", + "requires": [], + "size": 227094, + "version": "4.16.9" + }, + "sip-4.16.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 3.5*" + ], + "license": "GPL3", + "md5": "25366ff4ddca6087c4e0c5b61efe3011", + "name": "sip", + "requires": [], + "size": 227178, + "version": "4.16.9" + }, + "six-1.10.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "78d229dce568dd4bac1d88328f822fc5", + "name": "six", + "requires": [], + "size": 16819, + "version": "1.10.0" + }, + "six-1.10.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "d4939b671049d126d94307c185b818f0", + "name": "six", + "requires": [], + "size": 17222, + "version": "1.10.0" + }, + "six-1.10.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "78c61c4b6907f2242acfcd614a574b4d", + "name": "six", + "requires": [], + "size": 17296, + "version": "1.10.0" + }, + "six-1.10.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-08", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "3643bc1758a32c6db6b93757dcbff728", + "name": "six", + "requires": [], + "size": 17245, + "version": "1.10.0" + }, + "six-1.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "db66c04a538be8b745f514dcb4a336b2", + "name": "six", + "requires": [], + "size": 8234, + "version": "1.2.0" + }, + "six-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "3618c4d7d2cae23c64fc828c97ce6392", + "name": "six", + "requires": [], + "size": 8219, + "version": "1.2.0" + }, + "six-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "664ffce087ce2331e6755e63260669aa", + "name": "six", + "requires": [], + "size": 8374, + "version": "1.2.0" + }, + "six-1.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "675577d3ea092065c0fb898654fd0137", + "name": "six", + "requires": [], + "size": 9266, + "version": "1.3.0" + }, + "six-1.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ab8055958a40c4d64fab4e76d6dd1107", + "name": "six", + "requires": [], + "size": 9284, + "version": "1.3.0" + }, + "six-1.3.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "705e3e76870da6fb3d93dde4a3765b38", + "name": "six", + "requires": [], + "size": 9469, + "version": "1.3.0" + }, + "six-1.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "da2004358149dd530b7536fa2a596037", + "name": "six", + "requires": [], + "size": 12037, + "version": "1.4.1" + }, + "six-1.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "ad4d7fc36925d11aeffa0634a12fc226", + "name": "six", + "requires": [], + "size": 12072, + "version": "1.4.1" + }, + "six-1.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "faa259d77f8e60bb72712b242217d1a9", + "name": "six", + "requires": [], + "size": 12267, + "version": "1.4.1" + }, + "six-1.5.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "fcfb7e8df12dad147d99d55d2d4353d2", + "name": "six", + "requires": [], + "size": 13229, + "version": "1.5.2" + }, + "six-1.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "4799c925fb00cdf8127574e0a8ed303c", + "name": "six", + "requires": [], + "size": 13239, + "version": "1.5.2" + }, + "six-1.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "4591e6ffd3de52c49c2478a465fb21c6", + "name": "six", + "requires": [], + "size": 13494, + "version": "1.5.2" + }, + "six-1.6.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "47ca5461ac7d9f0998cb8c5837c9ffee", + "name": "six", + "requires": [], + "size": 13775, + "version": "1.6.1" + }, + "six-1.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "87f5e175e1bb98b887d08225b66e8061", + "name": "six", + "requires": [], + "size": 13717, + "version": "1.6.1" + }, + "six-1.6.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "90e02dadde30dfa86434c5daf68acb34", + "name": "six", + "requires": [], + "size": 13986, + "version": "1.6.1" + }, + "six-1.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "d5c3b918aace1d7361f6501e9fd5ef1b", + "name": "six", + "requires": [], + "size": 14076, + "version": "1.6.1" + }, + "six-1.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "190095d55f5298902e71f0d326018312", + "name": "six", + "requires": [], + "size": 15613, + "version": "1.7.2" + }, + "six-1.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "eab0fd8b91e9f6645224cd91adfc1fcf", + "name": "six", + "requires": [], + "size": 15562, + "version": "1.7.2" + }, + "six-1.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "df36e1f76cd99baaa89fedc48e5118bc", + "name": "six", + "requires": [], + "size": 15959, + "version": "1.7.2" + }, + "six-1.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "21731579357c370e4ed708dece73339b", + "name": "six", + "requires": [], + "size": 16030, + "version": "1.7.2" + }, + "six-1.7.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "161482a5bc939e3363badec85da78936", + "name": "six", + "requires": [], + "size": 15476, + "version": "1.7.3" + }, + "six-1.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "819324eba4350151f4ba564faa68c6be", + "name": "six", + "requires": [], + "size": 15459, + "version": "1.7.3" + }, + "six-1.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "227683c5191cc97e1566e8aa79ee2fc5", + "name": "six", + "requires": [], + "size": 15845, + "version": "1.7.3" + }, + "six-1.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6a5d869706be139c0d78f8156ab2cbf5", + "name": "six", + "requires": [], + "size": 15891, + "version": "1.7.3" + }, + "six-1.8.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "002cf2112ab4d56ab27b669616d06897", + "name": "six", + "requires": [], + "size": 15834, + "version": "1.8.0" + }, + "six-1.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "a342000254f469869211d9681c25c3a9", + "name": "six", + "requires": [], + "size": 15826, + "version": "1.8.0" + }, + "six-1.8.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "bf226fdbf671d0b0e0787edf211e6b56", + "name": "six", + "requires": [], + "size": 16193, + "version": "1.8.0" + }, + "six-1.8.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "598bd332795c3fa6afcfe1c10af7606b", + "name": "six", + "requires": [], + "size": 16311, + "version": "1.8.0" + }, + "six-1.9.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e08b823e8bccec0736848d7ea9971ebd", + "name": "six", + "requires": [], + "size": 16966, + "version": "1.9.0" + }, + "six-1.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "aba676676073900e29b36cb252494cde", + "name": "six", + "requires": [], + "size": 17009, + "version": "1.9.0" + }, + "six-1.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "1c62755f945779f733b5ce76eebf10f3", + "name": "six", + "requires": [], + "size": 17356, + "version": "1.9.0" + }, + "six-1.9.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "56fa87fda0083101e0c4b44ffdb1752a", + "name": "six", + "requires": [], + "size": 17477, + "version": "1.9.0" + }, + "six-1.9.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "a1d5b7476a40d018a483db5e581adb12", + "name": "six", + "requires": [], + "size": 17172, + "version": "1.9.0" + }, + "smart_open-1.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "boto >=2.32", + "bz2file", + "httpretty", + "python 2.7*", + "requests" + ], + "license": "MIT", + "md5": "ffa01f3022f41cfc7d67cb1192a35297", + "name": "smart_open", + "requires": [], + "size": 27836, + "version": "1.3.2" + }, + "smart_open-1.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "boto >=2.32", + "bz2file", + "httpretty", + "python 3.4*", + "requests" + ], + "license": "MIT", + "md5": "1498da5e2c0cc254f6fab03f744561d5", + "name": "smart_open", + "requires": [], + "size": 28488, + "version": "1.3.2" + }, + "smart_open-1.3.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-05", + "depends": [ + "boto >=2.32", + "bz2file", + "httpretty", + "python 3.5*", + "requests" + ], + "license": "MIT", + "md5": "1dafb9af2d8108a7744d12bfff138c51", + "name": "smart_open", + "requires": [], + "size": 28424, + "version": "1.3.2" + }, + "snakebite-2.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "protobuf", + "python 2.7*" + ], + "license": "Apache License 2.0", + "license_family": "Apache", + "md5": "93125fcc162cd78d989941d625d1dbb5", + "name": "snakebite", + "requires": [], + "size": 121956, + "version": "2.7.2" + }, + "snakeviz-0.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 2.7*", + "tornado >=2.0" + ], + "license": "BSD", + "md5": "8d140e8c37b6be14b1edc28ae6383d8d", + "name": "snakeviz", + "requires": [], + "size": 150169, + "version": "0.4.0" + }, + "snakeviz-0.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 3.4*", + "tornado >=2.0" + ], + "license": "BSD", + "md5": "bf6c7bb2d597e4adfdd9e8146647f0af", + "name": "snakeviz", + "requires": [], + "size": 150470, + "version": "0.4.0" + }, + "snakeviz-0.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 3.5*", + "tornado >=2.0" + ], + "license": "BSD", + "md5": "0e57d2e8c2b82678f086bd00bfb2922e", + "name": "snakeviz", + "requires": [], + "size": 150478, + "version": "0.4.0" + }, + "snappy-1.1.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-13", + "depends": [], + "license": "Other", + "license_family": "Other", + "md5": "c6de28522abf23f234722dd0513853db", + "name": "snappy", + "requires": [], + "size": 219580, + "version": "1.1.3" + }, + "snowballstemmer-1.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "46ce7ff701e34964fa0fac6fb291d43e", + "name": "snowballstemmer", + "requires": [], + "size": 69527, + "version": "1.2.0" + }, + "snowballstemmer-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "aa9a9f0ddbcdf6cc4475966f22cd4e3a", + "name": "snowballstemmer", + "requires": [], + "size": 74436, + "version": "1.2.0" + }, + "snowballstemmer-1.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "2abdf8588f38151f41c631ff3c5c0a27", + "name": "snowballstemmer", + "requires": [], + "size": 78075, + "version": "1.2.0" + }, + "snowballstemmer-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "311e90616aba185dab5612123ecee9ca", + "name": "snowballstemmer", + "requires": [], + "size": 79919, + "version": "1.2.0" + }, + "snowballstemmer-1.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "a25b6bd190cea87a68a9a9654422d49d", + "name": "snowballstemmer", + "requires": [], + "size": 79639, + "version": "1.2.0" + }, + "snowballstemmer-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0834f6476d1d750a3654346a7dad8747", + "name": "snowballstemmer", + "requires": [], + "size": 75032, + "version": "1.2.1" + }, + "snowballstemmer-1.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "21b1ba28fbbd6e833259b0c4b2fc3405", + "name": "snowballstemmer", + "requires": [], + "size": 80665, + "version": "1.2.1" + }, + "snowballstemmer-1.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "4b4f16e56751930b0eb1417cf775e009", + "name": "snowballstemmer", + "requires": [], + "size": 80491, + "version": "1.2.1" + }, + "snuggs-1.3.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "click", + "numpy 1.10*", + "pyparsing 2.0.3", + "python 2.7*" + ], + "license": "MIT", + "md5": "f2965032fae5e9369363488498b8d248", + "name": "snuggs", + "requires": [], + "size": 6806, + "version": "1.3.1" + }, + "snuggs-1.3.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "click", + "numpy 1.10*", + "pyparsing 2.0.3", + "python 3.4*" + ], + "license": "MIT", + "md5": "0523ffdfbd1c2d5954afeab95d90b4fe", + "name": "snuggs", + "requires": [], + "size": 6934, + "version": "1.3.1" + }, + "snuggs-1.3.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "click", + "numpy 1.10*", + "pyparsing 2.0.3", + "python 3.5*" + ], + "license": "MIT", + "md5": "9d8d2f5168528d6d9d8e1044539f6a38", + "name": "snuggs", + "requires": [], + "size": 6929, + "version": "1.3.1" + }, + "snuggs-1.3.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-01", + "depends": [ + "click", + "numpy 1.9*", + "pyparsing 2.0.3", + "python 2.6*" + ], + "license": "MIT", + "md5": "210fdeda2ec311bdf3b0e60fefb9f6cd", + "name": "snuggs", + "requires": [], + "size": 7145, + "version": "1.3.1" + }, + "snuggs-1.3.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-01", + "depends": [ + "click", + "numpy 1.9*", + "pyparsing 2.0.3", + "python 2.7*" + ], + "license": "MIT", + "md5": "27f615c22106d347b34c1806b24331b3", + "name": "snuggs", + "requires": [], + "size": 7086, + "version": "1.3.1" + }, + "snuggs-1.3.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-01", + "depends": [ + "click", + "numpy 1.9*", + "pyparsing 2.0.3", + "python 3.3*" + ], + "license": "MIT", + "md5": "5523cb0022b34282b39637dd08f862bc", + "name": "snuggs", + "requires": [], + "size": 7292, + "version": "1.3.1" + }, + "snuggs-1.3.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-01", + "depends": [ + "click", + "numpy 1.9*", + "pyparsing 2.0.3", + "python 3.4*" + ], + "license": "MIT", + "md5": "77687d1d818ec8a474a01c60c66f45fc", + "name": "snuggs", + "requires": [], + "size": 7254, + "version": "1.3.1" + }, + "snuggs-1.3.1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "click", + "numpy 1.9*", + "pyparsing 2.0.3", + "python 3.5*" + ], + "license": "MIT", + "md5": "7c3e951ead6f29343e237a230a7a97fe", + "name": "snuggs", + "requires": [], + "size": 6939, + "version": "1.3.1" + }, + "sockjs-tornado-1.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "tornado" + ], + "license": "MIT", + "md5": "ea4dfd9e5d92bb11032bec5f1ab7a49c", + "name": "sockjs-tornado", + "requires": [], + "size": 30999, + "version": "1.0.0" + }, + "sockjs-tornado-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "tornado" + ], + "license": "MIT", + "md5": "cd3cbd34e5e1716cda2cd33414ccfb79", + "name": "sockjs-tornado", + "requires": [], + "size": 31098, + "version": "1.0.0" + }, + "sockjs-tornado-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "tornado" + ], + "license": "MIT", + "md5": "b1a78d7d3ef126300f0a934a752c955f", + "name": "sockjs-tornado", + "requires": [], + "size": 32337, + "version": "1.0.0" + }, + "sockjs-tornado-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "tornado" + ], + "license": "MIT", + "md5": "2b94bd64343a267cd540113896790cf9", + "name": "sockjs-tornado", + "requires": [], + "size": 32303, + "version": "1.0.0" + }, + "sockjs-tornado-1.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "python 2.6*", + "tornado" + ], + "license": "MIT", + "md5": "d6283fcf927419ee3999a6848ec0c54b", + "name": "sockjs-tornado", + "requires": [], + "size": 31950, + "version": "1.0.1" + }, + "sockjs-tornado-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "python 2.7*", + "tornado" + ], + "license": "MIT", + "md5": "1b6200049ff09eadc76f34229ca26658", + "name": "sockjs-tornado", + "requires": [], + "size": 32003, + "version": "1.0.1" + }, + "sockjs-tornado-1.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "python 3.3*", + "tornado" + ], + "license": "MIT", + "md5": "b27c600cc36e40435266058538b8fd4f", + "name": "sockjs-tornado", + "requires": [], + "size": 33204, + "version": "1.0.1" + }, + "sockjs-tornado-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "python 3.4*", + "tornado" + ], + "license": "MIT", + "md5": "f81758725bd19fef2a6da8c9ce65276e", + "name": "sockjs-tornado", + "requires": [], + "size": 33162, + "version": "1.0.1" + }, + "sockjs-tornado-1.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "tornado" + ], + "license": "MIT", + "md5": "8f83fadd186029633803e6184dab7b7c", + "name": "sockjs-tornado", + "requires": [], + "size": 33167, + "version": "1.0.1" + }, + "spacy-0.100.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "cloudpickle", + "cymem >=1.30,<1.32.0", + "murmurhash >=0.26,<0.27", + "numpy", + "plac", + "preshed >=0.46.1,<0.47", + "python 2.7*", + "six", + "sputnik >=0.9.2,<0.10.0", + "thinc >=5.0.0,<5.1.0", + "ujson" + ], + "license": "MIT", + "md5": "fd6abbe6bcf8c62f887a0cb39b9171bd", + "name": "spacy", + "requires": [], + "size": 5378176, + "version": "0.100.6" + }, + "spacy-0.100.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "cloudpickle", + "cymem >=1.30,<1.32.0", + "murmurhash >=0.26,<0.27", + "numpy", + "plac", + "preshed >=0.46.1,<0.47", + "python 3.4*", + "six", + "sputnik >=0.9.2,<0.10.0", + "thinc >=5.0.0,<5.1.0", + "ujson" + ], + "license": "MIT", + "md5": "bc548c384365f30ab74574cbcd38463c", + "name": "spacy", + "requires": [], + "size": 5908928, + "version": "0.100.6" + }, + "spacy-0.100.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "cloudpickle", + "cymem >=1.30,<1.32.0", + "murmurhash >=0.26,<0.27", + "numpy", + "plac", + "preshed >=0.46.1,<0.47", + "python 3.5*", + "six", + "sputnik >=0.9.2,<0.10.0", + "thinc >=5.0.0,<5.1.0", + "ujson" + ], + "license": "MIT", + "md5": "7620b3026bc03dd22f50a06fd140a4fd", + "name": "spacy", + "requires": [], + "size": 5754202, + "version": "0.100.6" + }, + "spacy-0.68-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.6*", + "pywget 2.2", + "six", + "thinc 1.74", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "4290b753ef826f5bda5dbf0aaf85e6fa", + "name": "spacy", + "requires": [], + "size": 22037842, + "version": "0.68" + }, + "spacy-0.68-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "thinc 1.74", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "b93da251aaa4d2f3d0efdc65f9a159d1", + "name": "spacy", + "requires": [], + "size": 22031398, + "version": "0.68" + }, + "spacy-0.68-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.3*", + "pywget 2.2", + "six", + "thinc 1.74", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "1873111c6f6c4f43f8d5caec4d46cd21", + "name": "spacy", + "requires": [], + "size": 21972670, + "version": "0.68" + }, + "spacy-0.68-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "thinc 1.74", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "d393f523bdc817e403a28be0b1cffe2e", + "name": "spacy", + "requires": [], + "size": 22188990, + "version": "0.68" + }, + "spacy-0.70-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.6*", + "pywget 2.2", + "six", + "thinc 1.75", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "9e8973d591e5911f73eaebfe6ef5cdb9", + "name": "spacy", + "requires": [], + "size": 22045524, + "version": "0.70" + }, + "spacy-0.70-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "thinc 1.75", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "6f43f91e24a8ac9f8f5d9959ae107bb5", + "name": "spacy", + "requires": [], + "size": 22042258, + "version": "0.70" + }, + "spacy-0.70-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.3*", + "pywget 2.2", + "six", + "thinc 1.75", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "7f100d81035fed6105557ce5f580919f", + "name": "spacy", + "requires": [], + "size": 21984645, + "version": "0.70" + }, + "spacy-0.70-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "thinc 1.75", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "d1b5b758d3a387bf6fc513e16bed91bf", + "name": "spacy", + "requires": [], + "size": 22201843, + "version": "0.70" + }, + "spacy-0.84-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.6*", + "pywget 2.2", + "six", + "thinc 1.75", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "46c89c903c8261f159d6a2201e545c63", + "name": "spacy", + "requires": [], + "size": 23433456, + "version": "0.84" + }, + "spacy-0.84-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "thinc 1.75", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "bf3adddfe99a690d4cf2358ea33211e6", + "name": "spacy", + "requires": [], + "size": 23425939, + "version": "0.84" + }, + "spacy-0.84-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.3*", + "pywget 2.2", + "six", + "thinc 1.75", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "4656c21035d547559dcc6cb02ddd0ba5", + "name": "spacy", + "requires": [], + "size": 23369601, + "version": "0.84" + }, + "spacy-0.84-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "thinc 1.75", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "840083c5a1a45c51e25ca79c816533f4", + "name": "spacy", + "requires": [], + "size": 23658950, + "version": "0.84" + }, + "spacy-0.85-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.6*", + "pywget 2.2", + "six", + "thinc 1.76", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "a7c84e6097d3b9b6bad5a339c1465a1f", + "name": "spacy", + "requires": [], + "size": 39908397, + "version": "0.85" + }, + "spacy-0.85-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "thinc 1.76", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "14c43436dc40406b21f3b4ba36c40db5", + "name": "spacy", + "requires": [], + "size": 39904563, + "version": "0.85" + }, + "spacy-0.85-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.3*", + "pywget 2.2", + "six", + "thinc 1.76", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "70112e71086c436cc5c17fa425e28435", + "name": "spacy", + "requires": [], + "size": 39872521, + "version": "0.85" + }, + "spacy-0.85-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "thinc 1.76", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "3038e091c835ec629a3004138179eeb4", + "name": "spacy", + "requires": [], + "size": 40187830, + "version": "0.85" + }, + "spacy-0.87-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-01", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.6*", + "pywget 2.2", + "six", + "thinc 3.2", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "52f4b3fd4cecb486aa309d528badbaed", + "name": "spacy", + "requires": [], + "size": 39569562, + "version": "0.87" + }, + "spacy-0.87-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-01", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "thinc 3.2", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "901da2e8ba329a5d7bb1013b33b49131", + "name": "spacy", + "requires": [], + "size": 39557527, + "version": "0.87" + }, + "spacy-0.87-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-01", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.3*", + "pywget 2.2", + "six", + "thinc 3.2", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "b53eeef1ad31cadec3304a40aef22839", + "name": "spacy", + "requires": [], + "size": 39627962, + "version": "0.87" + }, + "spacy-0.87-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-01", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "thinc 3.2", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "d6fe74a3fb6b9a1a747d1de62e7164ba", + "name": "spacy", + "requires": [], + "size": 39844302, + "version": "0.87" + }, + "spacy-0.89-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.6*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "ece775f47943465153bd7fc7d1be69af", + "name": "spacy", + "requires": [], + "size": 45051196, + "version": "0.89" + }, + "spacy-0.89-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "0160a6b0d15011294d5d10d45ffe4489", + "name": "spacy", + "requires": [], + "size": 45034305, + "version": "0.89" + }, + "spacy-0.89-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.3*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "9d5317d3c8e4090fb337edec5f5c292e", + "name": "spacy", + "requires": [], + "size": 45121716, + "version": "0.89" + }, + "spacy-0.89-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "a6ac649802afc1c2da450866254de949", + "name": "spacy", + "requires": [], + "size": 45468985, + "version": "0.89" + }, + "spacy-0.89-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.5*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "a52e6e3e73a511c28ea9b9c1fa3106d1", + "name": "spacy", + "requires": [], + "size": 45327569, + "version": "0.89" + }, + "spacy-0.93-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "30bf14eec8198505bdc28f9e0bdf7461", + "name": "spacy", + "requires": [], + "size": 51436564, + "version": "0.93" + }, + "spacy-0.93-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "98e1dd37d390eacf39579b95ae7c3219", + "name": "spacy", + "requires": [], + "size": 51959926, + "version": "0.93" + }, + "spacy-0.93-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "plac 0.9.1", + "python 3.5*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "60cdd40fd23e78c3a32447fc9dffa709", + "name": "spacy", + "requires": [], + "size": 51741978, + "version": "0.93" + }, + "spacy-0.93-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "3ec2959777d4e2cb72b3c357d7f78b58", + "name": "spacy", + "requires": [], + "size": 51433353, + "version": "0.93" + }, + "spacy-0.93-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "123ba026194c98fe9480edad172ff083", + "name": "spacy", + "requires": [], + "size": 51961598, + "version": "0.93" + }, + "spacy-0.93-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-29", + "depends": [ + "numpy 1.9*", + "plac 0.9.1", + "python 3.5*", + "pywget 2.2", + "six", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "license_family": "AGPL", + "md5": "afa9c61040d4c68c5b97b72174d00946", + "name": "spacy", + "requires": [], + "size": 51740856, + "version": "0.93" + }, + "spacy-0.94-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "numpy 1.10*", + "plac 0.9.1", + "python 2.7*", + "pywget 2.2", + "six", + "text-unidecode 1.0", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "644a525d4afa387196297da1da1839c2", + "name": "spacy", + "requires": [], + "size": 51269672, + "version": "0.94" + }, + "spacy-0.94-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "numpy 1.10*", + "plac 0.9.1", + "python 3.4*", + "pywget 2.2", + "six", + "text-unidecode 1.0", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "b137948bdd36eebb519f21fe4605c4d8", + "name": "spacy", + "requires": [], + "size": 51820291, + "version": "0.94" + }, + "spacy-0.94-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "numpy 1.10*", + "plac 0.9.1", + "python 3.5*", + "pywget 2.2", + "six", + "text-unidecode 1.0", + "thinc 3.3", + "ujson 1.33", + "unidecode 0.4.17" + ], + "license": "MIT", + "md5": "1579530eaea0ec73c071126ae069071e", + "name": "spacy", + "requires": [], + "size": 51596853, + "version": "0.94" + }, + "spacy-0.99-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "cloudpickle 0.1.1", + "numpy 1.10*", + "plac 0.9.1", + "python 2.7*", + "six", + "text-unidecode 1.0", + "thinc 4.0.0", + "ujson 1.33" + ], + "license": "MIT", + "md5": "b75f55b470a8941a30b44957cea95bf5", + "name": "spacy", + "requires": [], + "size": 6829474, + "version": "0.99" + }, + "spacy-0.99-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "cloudpickle 0.1.1", + "numpy 1.10*", + "plac 0.9.1", + "python 3.4*", + "six", + "text-unidecode 1.0", + "thinc 4.0.0", + "ujson 1.33" + ], + "license": "MIT", + "md5": "bd8b9a5440f6c32c4194b908e51c3b62", + "name": "spacy", + "requires": [], + "size": 7315729, + "version": "0.99" + }, + "spacy-0.99-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "cloudpickle 0.1.1", + "numpy 1.10*", + "plac 0.9.1", + "python 3.5*", + "six", + "text-unidecode 1.0", + "thinc 4.0.0", + "ujson 1.33" + ], + "license": "MIT", + "md5": "2f6e7822df00f4a815213962ccae18ea", + "name": "spacy", + "requires": [], + "size": 7127790, + "version": "0.99" + }, + "sphinx-1.1.3-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.6*" + ], + "license": "BSD", + "md5": "a971f9a10a3e231405f49d58be8896c8", + "name": "sphinx", + "requires": [], + "size": 790014, + "version": "1.1.3" + }, + "sphinx-1.1.3-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.6*" + ], + "license": "BSD", + "md5": "f322271f93ec91011d9501d6c1520235", + "name": "sphinx", + "requires": [], + "size": 916342, + "version": "1.1.3" + }, + "sphinx-1.1.3-py26_3.tar.bz2": { + "build": "py26_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.6*" + ], + "license": "BSD", + "md5": "ec892e4d2685ca1b8c627ce84cedbafc", + "name": "sphinx", + "requires": [], + "size": 916763, + "version": "1.1.3" + }, + "sphinx-1.1.3-py26_4.tar.bz2": { + "build": "py26_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.6*" + ], + "license": "BSD", + "md5": "6b68e583031aa6111f86eb0ec67c9896", + "name": "sphinx", + "requires": [], + "size": 916807, + "version": "1.1.3" + }, + "sphinx-1.1.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.7*" + ], + "license": "BSD", + "md5": "52a269af4dac3d2f7c111a936597a7a1", + "name": "sphinx", + "requires": [], + "size": 791536, + "version": "1.1.3" + }, + "sphinx-1.1.3-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.7*" + ], + "license": "BSD", + "md5": "24b14f3a67162cba6c604010ae5f12c0", + "name": "sphinx", + "requires": [], + "size": 917487, + "version": "1.1.3" + }, + "sphinx-1.1.3-py27_3.tar.bz2": { + "build": "py27_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.7*" + ], + "license": "BSD", + "md5": "409726b28e2f3639cfd707957b42b4bc", + "name": "sphinx", + "requires": [], + "size": 917459, + "version": "1.1.3" + }, + "sphinx-1.1.3-py27_4.tar.bz2": { + "build": "py27_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.7*" + ], + "license": "BSD", + "md5": "03a8ef6a1cebcdd03cab807b29f3f0a2", + "name": "sphinx", + "requires": [], + "size": 917767, + "version": "1.1.3" + }, + "sphinx-1.1.3-py33_2.tar.bz2": { + "build": "py33_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.3*" + ], + "license": "BSD", + "md5": "78444035c2ab85e832aac6425a618b13", + "name": "sphinx", + "requires": [], + "size": 934917, + "version": "1.1.3" + }, + "sphinx-1.1.3-py33_3.tar.bz2": { + "build": "py33_3", + "build_number": 3, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.3*" + ], + "license": "BSD", + "md5": "8b7e3265d9feae51cbdf5fd18c433f65", + "name": "sphinx", + "requires": [], + "size": 934940, + "version": "1.1.3" + }, + "sphinx-1.1.3-py33_4.tar.bz2": { + "build": "py33_4", + "build_number": 4, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.3*" + ], + "license": "BSD", + "md5": "d1517d877f62142aab8532ec0e86738f", + "name": "sphinx", + "requires": [], + "size": 935198, + "version": "1.1.3" + }, + "sphinx-1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.6*" + ], + "license": "BSD", + "md5": "db938a7f21a567f8a1add0dccf83026a", + "name": "sphinx", + "requires": [], + "size": 974119, + "version": "1.2" + }, + "sphinx-1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.7*" + ], + "license": "BSD", + "md5": "c02f3e3e3bce92011a4c7e1b6ed8bcc7", + "name": "sphinx", + "requires": [], + "size": 974545, + "version": "1.2" + }, + "sphinx-1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.3*" + ], + "license": "BSD", + "md5": "462e3559a1a004dc91531f7b94f48485", + "name": "sphinx", + "requires": [], + "size": 1030366, + "version": "1.2" + }, + "sphinx-1.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.6*" + ], + "license": "BSD", + "md5": "a0a48ce57f6efea4c1a4bbe5952fff74", + "name": "sphinx", + "requires": [], + "size": 982724, + "version": "1.2.1" + }, + "sphinx-1.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.7*" + ], + "license": "BSD", + "md5": "ee2708f51d671c57f83045e2d4c4f978", + "name": "sphinx", + "requires": [], + "size": 985196, + "version": "1.2.1" + }, + "sphinx-1.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.3*" + ], + "license": "BSD", + "md5": "a7f4709ef8376ec76f5dd735e47c08c6", + "name": "sphinx", + "requires": [], + "size": 1014960, + "version": "1.2.1" + }, + "sphinx-1.2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.6*" + ], + "license": "BSD", + "md5": "a22619bdcaea373fabc43a5c31bcf85e", + "name": "sphinx", + "requires": [], + "size": 983340, + "version": "1.2.2" + }, + "sphinx-1.2.2-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.6*" + ], + "license": "BSD", + "md5": "d280a864ca2d5b033007aadb9eaca2f0", + "name": "sphinx", + "requires": [], + "size": 986387, + "version": "1.2.2" + }, + "sphinx-1.2.2-py26_2.tar.bz2": { + "build": "py26_2", + "build_number": 2, + "date": "2014-09-03", + "depends": [ + "docutils", + "jinja2", + "pygments", + "python 2.6*" + ], + "license": "BSD", + "md5": "fe46308fc880af5c745edfbba5517ff7", + "name": "sphinx", + "requires": [], + "size": 986335, + "version": "1.2.2" + }, + "sphinx-1.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.7*" + ], + "license": "BSD", + "md5": "7aaa2839449c5a7c239a098d62449f23", + "name": "sphinx", + "requires": [], + "size": 986040, + "version": "1.2.2" + }, + "sphinx-1.2.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 2.7*" + ], + "license": "BSD", + "md5": "93e99cd928611455c497aceba76364e3", + "name": "sphinx", + "requires": [], + "size": 988482, + "version": "1.2.2" + }, + "sphinx-1.2.2-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-09-03", + "depends": [ + "docutils", + "jinja2", + "pygments", + "python 2.7*" + ], + "license": "BSD", + "md5": "cd5cddaeb65e2ca65664d53e9c9b5ede", + "name": "sphinx", + "requires": [], + "size": 988241, + "version": "1.2.2" + }, + "sphinx-1.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.3*" + ], + "license": "BSD", + "md5": "91ad9546699d370701365d748029c7b3", + "name": "sphinx", + "requires": [], + "size": 1016009, + "version": "1.2.2" + }, + "sphinx-1.2.2-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.3*" + ], + "license": "BSD", + "md5": "2b12087888f5b0da76c47f16808f7cb2", + "name": "sphinx", + "requires": [], + "size": 1019883, + "version": "1.2.2" + }, + "sphinx-1.2.2-py33_2.tar.bz2": { + "build": "py33_2", + "build_number": 2, + "date": "2014-09-03", + "depends": [ + "docutils", + "jinja2", + "pygments", + "python 3.3*" + ], + "license": "BSD", + "md5": "7d1de416b8af973f2751bc5611e091bf", + "name": "sphinx", + "requires": [], + "size": 1019466, + "version": "1.2.2" + }, + "sphinx-1.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.4*" + ], + "license": "BSD", + "md5": "c13fd9f31721e96e135a6f18709e6a0f", + "name": "sphinx", + "requires": [], + "size": 1009295, + "version": "1.2.2" + }, + "sphinx-1.2.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "docutils", + "jinja2", + "python 3.4*" + ], + "license": "BSD", + "md5": "7fe5bcc55af89bf6d56e4117fa4bbdb4", + "name": "sphinx", + "requires": [], + "size": 1011206, + "version": "1.2.2" + }, + "sphinx-1.2.2-py34_2.tar.bz2": { + "build": "py34_2", + "build_number": 2, + "date": "2014-09-03", + "depends": [ + "docutils", + "jinja2", + "pygments", + "python 3.4*" + ], + "license": "BSD", + "md5": "d948a5d75292e6add191b3a9ba256563", + "name": "sphinx", + "requires": [], + "size": 1011161, + "version": "1.2.2" + }, + "sphinx-1.2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "docutils", + "jinja2", + "pygments", + "python 2.6*" + ], + "license": "BSD", + "md5": "d89a53a956bd49c06fc6ff39f85ad904", + "name": "sphinx", + "requires": [], + "size": 1027972, + "version": "1.2.3" + }, + "sphinx-1.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "docutils", + "jinja2", + "pygments", + "python 2.7*" + ], + "license": "BSD", + "md5": "492315f4faa511b8a77b3f48f8ccaffb", + "name": "sphinx", + "requires": [], + "size": 1029111, + "version": "1.2.3" + }, + "sphinx-1.2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "docutils", + "jinja2", + "pygments", + "python 3.3*" + ], + "license": "BSD", + "md5": "33b66349675be1a098a85109cd471851", + "name": "sphinx", + "requires": [], + "size": 1048857, + "version": "1.2.3" + }, + "sphinx-1.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-03", + "depends": [ + "docutils", + "jinja2", + "pygments", + "python 3.4*" + ], + "license": "BSD", + "md5": "8515e0ad173d4833e96d91ef3b98abd8", + "name": "sphinx", + "requires": [], + "size": 1039885, + "version": "1.2.3" + }, + "sphinx-1.3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "alabaster", + "babel", + "docutils", + "jinja2", + "pygments", + "python 2.6*", + "six", + "snowballstemmer 1.2.0", + "sphinx_rtd_theme" + ], + "license": "BSD", + "md5": "2aa4209e1a17fbe88cdce0d98df1ab0d", + "name": "sphinx", + "requires": [], + "size": 1159397, + "version": "1.3.1" + }, + "sphinx-1.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "alabaster", + "babel", + "docutils", + "jinja2", + "pygments", + "python 2.7*", + "six", + "snowballstemmer 1.2.0", + "sphinx_rtd_theme" + ], + "license": "BSD", + "md5": "6c88e7be47a49dbcc2906587ec59f57f", + "name": "sphinx", + "requires": [], + "size": 1159464, + "version": "1.3.1" + }, + "sphinx-1.3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "alabaster", + "babel", + "docutils", + "jinja2", + "pygments", + "python 3.3*", + "six", + "snowballstemmer 1.2.0", + "sphinx_rtd_theme" + ], + "license": "BSD", + "md5": "2972b6eac661a81514924c0b6da80838", + "name": "sphinx", + "requires": [], + "size": 1173005, + "version": "1.3.1" + }, + "sphinx-1.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "alabaster", + "babel", + "docutils", + "jinja2", + "pygments", + "python 3.4*", + "six", + "snowballstemmer 1.2.0", + "sphinx_rtd_theme" + ], + "license": "BSD", + "md5": "21ced284314bf086c448580561c4290e", + "name": "sphinx", + "requires": [], + "size": 1213278, + "version": "1.3.1" + }, + "sphinx-1.3.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "alabaster", + "babel", + "docutils", + "jinja2", + "pygments", + "python 3.5*", + "six", + "snowballstemmer 1.2.0", + "sphinx_rtd_theme" + ], + "license": "BSD", + "md5": "7833367bd5cb0c5fe33f0ad45f9289e2", + "name": "sphinx", + "requires": [], + "size": 1210059, + "version": "1.3.1" + }, + "sphinx-1.3.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "alabaster >=0.7,<0.8", + "babel >=1.3,!=2.0", + "docutils >=0.11", + "jinja2", + "pygments >=2.0", + "python 2.7*", + "six", + "snowballstemmer >=1.1", + "sphinx_rtd_theme >=0.1,<2.0" + ], + "license": "BSD", + "md5": "7caf1d46060347948c1790107b345a5b", + "name": "sphinx", + "requires": [], + "size": 1208790, + "version": "1.3.5" + }, + "sphinx-1.3.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "alabaster >=0.7,<0.8", + "babel >=1.3,!=2.0", + "docutils >=0.11", + "jinja2", + "pygments >=2.0", + "python 3.4*", + "six", + "snowballstemmer >=1.1", + "sphinx_rtd_theme >=0.1,<2.0" + ], + "license": "BSD", + "md5": "f6646a23d7265d5a0bf8fb16afe77dd0", + "name": "sphinx", + "requires": [], + "size": 1279514, + "version": "1.3.5" + }, + "sphinx-1.3.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "alabaster >=0.7,<0.8", + "babel >=1.3,!=2.0", + "docutils >=0.11", + "jinja2", + "pygments >=2.0", + "python 3.5*", + "six", + "snowballstemmer >=1.1", + "sphinx_rtd_theme >=0.1,<2.0" + ], + "license": "BSD", + "md5": "da2ef86fae0f9670368fc8568aff28d4", + "name": "sphinx", + "requires": [], + "size": 1275493, + "version": "1.3.5" + }, + "sphinx_rtd_theme-0.1.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "5346fd76ac4d3f3852e6770453d39390", + "name": "sphinx_rtd_theme", + "requires": [], + "size": 214142, + "version": "0.1.7" + }, + "sphinx_rtd_theme-0.1.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d706cc081c63f2685371821e1a008350", + "name": "sphinx_rtd_theme", + "requires": [], + "size": 214165, + "version": "0.1.7" + }, + "sphinx_rtd_theme-0.1.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "2c306f5ba4ac9e638d21f3cfcb8cf039", + "name": "sphinx_rtd_theme", + "requires": [], + "size": 214136, + "version": "0.1.7" + }, + "sphinx_rtd_theme-0.1.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "9cb1f313a1ce9bf320bb29f229110124", + "name": "sphinx_rtd_theme", + "requires": [], + "size": 214099, + "version": "0.1.7" + }, + "sphinx_rtd_theme-0.1.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "1dbf2c9e2bbaad32560426455110c978", + "name": "sphinx_rtd_theme", + "requires": [], + "size": 214157, + "version": "0.1.7" + }, + "sphinx_rtd_theme-0.1.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bea4ca4d9d6120a8d6f4839168a5ec8a", + "name": "sphinx_rtd_theme", + "requires": [], + "size": 643397, + "version": "0.1.9" + }, + "sphinx_rtd_theme-0.1.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "c338631f1d2a08e79695013b018441fe", + "name": "sphinx_rtd_theme", + "requires": [], + "size": 643432, + "version": "0.1.9" + }, + "sphinx_rtd_theme-0.1.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-28", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "352e405a6d42818980103f421df42d80", + "name": "sphinx_rtd_theme", + "requires": [], + "size": 643402, + "version": "0.1.9" + }, + "sputnik-0.9.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 2.7*", + "semver" + ], + "license": "MIT", + "md5": "971ceacf9e361ae187ff22a413d5290d", + "name": "sputnik", + "requires": [], + "size": 39891, + "version": "0.9.3" + }, + "sputnik-0.9.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 3.4*", + "semver" + ], + "license": "MIT", + "md5": "97272a57d43cd0a19f9e7dce42ccf01f", + "name": "sputnik", + "requires": [], + "size": 41238, + "version": "0.9.3" + }, + "sputnik-0.9.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "python 3.5*", + "semver" + ], + "license": "MIT", + "md5": "9f0dafb56a3a8a6b1b8cf00f3490303e", + "name": "sputnik", + "requires": [], + "size": 41076, + "version": "0.9.3" + }, + "spyder-2.1.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pyside 1.1.2", + "python 2.7*" + ], + "license": "MIT", + "md5": "c01b1124c9d61b53b3c0de210cc977c0", + "name": "spyder", + "requires": [], + "size": 1907140, + "version": "2.1.11" + }, + "spyder-2.1.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pyside 1.1.2", + "python 2.7*" + ], + "license": "MIT", + "md5": "22f706f596fe17d235f11bd9c09e7b6e", + "name": "spyder", + "requires": [], + "size": 1910238, + "version": "2.1.13" + }, + "spyder-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pyside 1.1.2", + "python 2.7*" + ], + "license": "MIT", + "md5": "2cf5c65686ff702434ea83c4a027acdb", + "name": "spyder", + "requires": [], + "size": 2897688, + "version": "2.2.0" + }, + "spyder-2.2.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "ipython", + "pygments", + "pyside 1.1.2", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license": "MIT", + "md5": "b2321927497bedf79de22d27dc383e9f", + "name": "spyder", + "requires": [], + "size": 2898414, + "version": "2.2.0" + }, + "spyder-2.2.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "pygments", + "pyside 1.2.1", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license": "MIT", + "md5": "d88552f1fa2acd91ae0a304f358029b3", + "name": "spyder", + "requires": [], + "size": 2955501, + "version": "2.2.4" + }, + "spyder-2.2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "pygments", + "pyside 1.2.1", + "python 2.7*", + "pyzmq 2.2.0.1" + ], + "license": "MIT", + "md5": "4b942e8a1287b591af8c81556fd5645a", + "name": "spyder", + "requires": [], + "size": 2963706, + "version": "2.2.5" + }, + "spyder-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "4093efe2656822ba271a9b56af4569cf", + "name": "spyder", + "requires": [], + "size": 3051868, + "version": "2.3.0" + }, + "spyder-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "13829fe85bfc10027492ada57609985c", + "name": "spyder", + "requires": [], + "size": 3080580, + "version": "2.3.0" + }, + "spyder-2.3.0rc1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "ce86f3a58e9b534a0bd33c0341d67067", + "name": "spyder", + "requires": [], + "size": 3039794, + "version": "2.3.0rc1" + }, + "spyder-2.3.0rc1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "ipython", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "9f9d111d3b6723ce38d0f2181fd8b8b3", + "name": "spyder", + "requires": [], + "size": 3066040, + "version": "2.3.0rc1" + }, + "spyder-2.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "ipython", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "edbfa3571f52b105481788d9873f6b66", + "name": "spyder", + "requires": [], + "size": 4163119, + "version": "2.3.1" + }, + "spyder-2.3.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-10-14", + "depends": [ + "docutils", + "ipython", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "8bfd6bc9e3793704b842c9b1ee5edff7", + "name": "spyder", + "requires": [], + "size": 4161990, + "version": "2.3.1" + }, + "spyder-2.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "ipython", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "d9207a41a342caa77d4147d9f25a0e91", + "name": "spyder", + "requires": [], + "size": 4196899, + "version": "2.3.1" + }, + "spyder-2.3.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-10-14", + "depends": [ + "docutils", + "ipython", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "6d7a60cd0e6a1a8f4a9285a57b3fef48", + "name": "spyder", + "requires": [], + "size": 4198097, + "version": "2.3.1" + }, + "spyder-2.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-03", + "depends": [ + "docutils", + "ipython", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "5e4a7666636cf0d1f31249520f8c5cc6", + "name": "spyder", + "requires": [], + "size": 4181582, + "version": "2.3.2" + }, + "spyder-2.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-03", + "depends": [ + "docutils", + "ipython", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*" + ], + "license": "MIT", + "md5": "ad1fb6ea9aed8f2bc5d40154eff86f95", + "name": "spyder", + "requires": [], + "size": 4215346, + "version": "2.3.2" + }, + "spyder-2.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-26", + "depends": [ + "docutils", + "ipython", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*", + "sphinx" + ], + "license": "MIT", + "md5": "7b00207b0fd037b4af6e076b0425ab47", + "name": "spyder", + "requires": [], + "size": 4187578, + "version": "2.3.3" + }, + "spyder-2.3.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-26", + "depends": [ + "docutils", + "ipython", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*", + "sphinx" + ], + "license": "MIT", + "md5": "db2ad3f65c5a60c938a074041cb0fa51", + "name": "spyder", + "requires": [], + "size": 4223988, + "version": "2.3.3" + }, + "spyder-2.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-23", + "depends": [ + "docutils", + "ipython", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*", + "sphinx" + ], + "license": "MIT", + "md5": "d268a90d9d15e73a8f175334d3e1d9ff", + "name": "spyder", + "requires": [], + "size": 4192305, + "version": "2.3.4" + }, + "spyder-2.3.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-03-25", + "depends": [ + "docutils", + "ipython", + "jedi 0.8.1", + "jinja2", + "pep8", + "pyflakes", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*", + "rope 0.9.4", + "sphinx" + ], + "license": "MIT", + "md5": "3dceee601275be767902cdbf169336c9", + "name": "spyder", + "requires": [], + "size": 4192834, + "version": "2.3.4" + }, + "spyder-2.3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-23", + "depends": [ + "docutils", + "ipython", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*", + "sphinx" + ], + "license": "MIT", + "md5": "3a82737b44bc97c2279fb47c6a3bf8fb", + "name": "spyder", + "requires": [], + "size": 4227203, + "version": "2.3.4" + }, + "spyder-2.3.4-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-03-25", + "depends": [ + "docutils", + "ipython", + "jedi 0.8.1", + "jinja2", + "pep8", + "pyflakes", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*", + "rope 0.9.4", + "sphinx" + ], + "license": "MIT", + "md5": "c349f72de20f4e6cdc9411798ebc271a", + "name": "spyder", + "requires": [], + "size": 4228210, + "version": "2.3.4" + }, + "spyder-2.3.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "docutils", + "ipython", + "jedi 0.8.1", + "jinja2", + "pep8", + "pyflakes", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*", + "rope 0.9.4", + "sphinx" + ], + "license": "MIT", + "md5": "d3a81fd422dbb9f03a505e68e6f2ba87", + "name": "spyder", + "requires": [], + "size": 3971240, + "version": "2.3.5.1" + }, + "spyder-2.3.5.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "docutils", + "ipython", + "jedi 0.8.1", + "jinja2", + "pep8", + "pyflakes", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*", + "rope 0.9.4", + "sphinx" + ], + "license": "MIT", + "md5": "46b1f6f28574423f65cbe2749e863fe3", + "name": "spyder", + "requires": [], + "size": 4048495, + "version": "2.3.5.1" + }, + "spyder-2.3.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-23", + "depends": [ + "docutils", + "ipython", + "jedi 0.8.1", + "jinja2", + "pep8", + "pyflakes", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*", + "rope 0.9.4", + "sphinx" + ], + "license": "MIT", + "md5": "abedb941b79e9f3345b39f2ed9f680a9", + "name": "spyder", + "requires": [], + "size": 2812086, + "version": "2.3.5.2" + }, + "spyder-2.3.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-23", + "depends": [ + "docutils", + "ipython", + "jedi 0.8.1", + "jinja2", + "pep8", + "pyflakes", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*", + "rope 0.9.4", + "sphinx" + ], + "license": "MIT", + "md5": "961abc176de0fb7d27a743e5b33dd49c", + "name": "spyder", + "requires": [], + "size": 2832695, + "version": "2.3.5.2" + }, + "spyder-2.3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-26", + "depends": [ + "docutils", + "jedi 0.9.0", + "jinja2", + "nbconvert", + "pep8", + "pyflakes", + "pygments", + "pyqt", + "python 2.7*", + "pyzmq 14.*", + "qtconsole", + "rope 0.9.4", + "sphinx" + ], + "license": "MIT", + "md5": "179ee7c2ca8fe441b7e6e0a91e44f0a3", + "name": "spyder", + "requires": [], + "size": 2813662, + "version": "2.3.6" + }, + "spyder-2.3.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-26", + "depends": [ + "docutils", + "jedi 0.9.0", + "jinja2", + "nbconvert", + "pep8", + "pyflakes", + "pygments", + "pyqt", + "python 3.4*", + "pyzmq 14.*", + "qtconsole", + "rope 0.9.4", + "sphinx" + ], + "license": "MIT", + "md5": "486073db3c2950032cee0544d53de961", + "name": "spyder", + "requires": [], + "size": 2835277, + "version": "2.3.6" + }, + "spyder-2.3.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "jedi 0.8*", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 2.7*", + "qtconsole", + "rope", + "sphinx" + ], + "license": "MIT", + "md5": "625c6f18149223b80e4bee441b682b9b", + "name": "spyder", + "requires": [], + "size": 2059491, + "version": "2.3.7" + }, + "spyder-2.3.7-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-10-16", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 2.7*", + "qtconsole", + "rope", + "sphinx" + ], + "license": "MIT", + "md5": "cf2ef07911b0c8af9b1aea20e4f5eea7", + "name": "spyder", + "requires": [], + "size": 2059456, + "version": "2.3.7" + }, + "spyder-2.3.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "jedi 0.8*", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 3.4*", + "qtconsole", + "rope", + "sphinx" + ], + "license": "MIT", + "md5": "4dc47dfba71207354a41d362fd1632fb", + "name": "spyder", + "requires": [], + "size": 2097184, + "version": "2.3.7" + }, + "spyder-2.3.7-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-10-16", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 3.4*", + "qtconsole", + "rope", + "sphinx" + ], + "license": "MIT", + "md5": "2eafa08e3fdc7aec4146b31097659d8f", + "name": "spyder", + "requires": [], + "size": 2097298, + "version": "2.3.7" + }, + "spyder-2.3.7-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-10-16", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 3.5*", + "qtconsole", + "rope", + "sphinx" + ], + "license": "MIT", + "md5": "582110033c9ad700bf2be58929377f4b", + "name": "spyder", + "requires": [], + "size": 2095242, + "version": "2.3.7" + }, + "spyder-2.3.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 2.7*", + "qtconsole", + "rope", + "sphinx" + ], + "license": "MIT", + "md5": "affd1e42d5039b00df30f68c67ad8dce", + "name": "spyder", + "requires": [], + "size": 2059937, + "version": "2.3.8" + }, + "spyder-2.3.8-py27_1.tar.bz2": { + "app_entry": "spyder", + "app_type": "desk", + "build": "py27_1", + "build_number": 1, + "date": "2016-03-10", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 2.7*", + "qtconsole", + "rope", + "sphinx" + ], + "icon": "9779607c273dc0786bd972b4cb308b58.png", + "license": "MIT", + "md5": "daf5fd98bb2597842fc9449ff32cd8a5", + "name": "spyder", + "requires": [], + "size": 2075353, + "summary": "Scientific Python Development Environment", + "type": "app", + "version": "2.3.8" + }, + "spyder-2.3.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 3.4*", + "qtconsole", + "rope", + "sphinx" + ], + "license": "MIT", + "md5": "05f8a87108ad5e387b9a7a904ac8ef6f", + "name": "spyder", + "requires": [], + "size": 2097275, + "version": "2.3.8" + }, + "spyder-2.3.8-py34_1.tar.bz2": { + "app_entry": "spyder", + "app_type": "desk", + "build": "py34_1", + "build_number": 1, + "date": "2016-03-10", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 3.4*", + "qtconsole", + "rope", + "sphinx" + ], + "icon": "9779607c273dc0786bd972b4cb308b58.png", + "license": "MIT", + "md5": "ed4cab4c3815029862e722030c049170", + "name": "spyder", + "requires": [], + "size": 2113214, + "summary": "Scientific Python Development Environment", + "type": "app", + "version": "2.3.8" + }, + "spyder-2.3.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 3.5*", + "qtconsole", + "rope", + "sphinx" + ], + "license": "MIT", + "md5": "58a6458821899460da8004a014ab6512", + "name": "spyder", + "requires": [], + "size": 2095008, + "version": "2.3.8" + }, + "spyder-2.3.8-py35_1.tar.bz2": { + "app_entry": "spyder", + "app_type": "desk", + "build": "py35_1", + "build_number": 1, + "date": "2016-03-10", + "depends": [ + "jedi >=0.8", + "nbconvert", + "pep8", + "psutil", + "pyflakes", + "pygments", + "pyqt", + "python 3.5*", + "qtconsole", + "rope", + "sphinx" + ], + "icon": "9779607c273dc0786bd972b4cb308b58.png", + "license": "MIT", + "md5": "1950a9412f8f5710352e26f31c6d356f", + "name": "spyder", + "requires": [], + "size": 2109561, + "summary": "Scientific Python Development Environment", + "type": "app", + "version": "2.3.8" + }, + "spyder-app-2.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "spyder 2.2.0" + ], + "license_family": "MIT", + "md5": "3263d4548602cd6b200ece06965806a6", + "name": "spyder-app", + "requires": [], + "size": 679, + "version": "2.2.0" + }, + "spyder-app-2.2.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "spyder 2.2.4" + ], + "license_family": "MIT", + "md5": "b7782c01804611f400c3b54048f4e6ae", + "name": "spyder-app", + "requires": [], + "size": 677, + "version": "2.2.4" + }, + "spyder-app-2.2.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "spyder 2.2.5" + ], + "license_family": "MIT", + "md5": "46d97fbe044e0ca8a15503ad3a04f297", + "name": "spyder-app", + "requires": [], + "size": 642, + "version": "2.2.5" + }, + "spyder-app-2.2.5-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "spyder 2.2.5" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "61a3a1b6ce0db5d253904a44b61fb935", + "name": "spyder-app", + "requires": [], + "size": 1068, + "version": "2.2.5" + }, + "spyder-app-2.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "spyder 2.3.0" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "d1bd1a50f83ccbe06dd703aa11cd8e69", + "name": "spyder-app", + "requires": [], + "size": 7651, + "version": "2.3.0" + }, + "spyder-app-2.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "spyder 2.3.0" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "7e29332111f72969e4317d1283f90801", + "name": "spyder-app", + "requires": [], + "size": 7625, + "version": "2.3.0" + }, + "spyder-app-2.3.0rc1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "spyder 2.3.0rc1" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "78c2320ece19d3a40fa1eb735005da1a", + "name": "spyder-app", + "requires": [], + "size": 7670, + "version": "2.3.0rc1" + }, + "spyder-app-2.3.0rc1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "spyder 2.3.0rc1" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "2ec03c01abbcb1de7ac40ef5eaf6d474", + "name": "spyder-app", + "requires": [], + "size": 7632, + "version": "2.3.0rc1" + }, + "spyder-app-2.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "python 2.7*", + "spyder 2.3.1" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "153c0406f13173bc20d00863e754d0cc", + "name": "spyder-app", + "requires": [], + "size": 7677, + "version": "2.3.1" + }, + "spyder-app-2.3.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "python 3.4*", + "spyder 2.3.1" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "09af2535a6f3896c36f80eb9db785e24", + "name": "spyder-app", + "requires": [], + "size": 7672, + "version": "2.3.1" + }, + "spyder-app-2.3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-03", + "depends": [ + "python 2.7*", + "spyder 2.3.2" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "0f0a8261227fb4b7845916fc8de43249", + "name": "spyder-app", + "requires": [], + "size": 7695, + "version": "2.3.2" + }, + "spyder-app-2.3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-03", + "depends": [ + "python 3.4*", + "spyder 2.3.2" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "63d5514f41ba45551a03a10fb2156f2a", + "name": "spyder-app", + "requires": [], + "size": 7676, + "version": "2.3.2" + }, + "spyder-app-2.3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-26", + "depends": [ + "python 2.7*", + "spyder 2.3.3" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "059bd6c2a3e19beac3a432766c90e0a3", + "name": "spyder-app", + "requires": [], + "size": 7684, + "version": "2.3.3" + }, + "spyder-app-2.3.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-26", + "depends": [ + "python 3.4*", + "spyder 2.3.3" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "5205db3c045cfa65d285b75b182626e9", + "name": "spyder-app", + "requires": [], + "size": 7673, + "version": "2.3.3" + }, + "spyder-app-2.3.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-23", + "depends": [ + "python 2.7*", + "spyder 2.3.4" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "646f66b3ac9d3394ab10d4823e24e9f9", + "name": "spyder-app", + "requires": [], + "size": 7705, + "version": "2.3.4" + }, + "spyder-app-2.3.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-23", + "depends": [ + "python 3.4*", + "spyder 2.3.4" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "16e1647a0114824b7b370a43d09be9ec", + "name": "spyder-app", + "requires": [], + "size": 7720, + "version": "2.3.4" + }, + "spyder-app-2.3.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-23", + "depends": [ + "python 2.7*", + "spyder 2.3.5.2" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "2c58f98562cf331999053572d46dabd6", + "name": "spyder-app", + "requires": [], + "size": 7426, + "version": "2.3.5.2" + }, + "spyder-app-2.3.5.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-23", + "depends": [ + "python 3.4*", + "spyder 2.3.5.2" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "37d08d1055ba33c12146955e81f9f04c", + "name": "spyder-app", + "requires": [], + "size": 7430, + "version": "2.3.5.2" + }, + "spyder-app-2.3.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-26", + "depends": [ + "python 2.7*", + "spyder 2.3.6" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "c0fd47d8926151414a544b0015915b7f", + "name": "spyder-app", + "requires": [], + "size": 7551, + "version": "2.3.6" + }, + "spyder-app-2.3.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-26", + "depends": [ + "python 3.4*", + "spyder 2.3.6" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "d04fd14ff85fd149ebd9301b14d8b54d", + "name": "spyder-app", + "requires": [], + "size": 7563, + "version": "2.3.6" + }, + "spyder-app-2.3.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "python 2.7*", + "spyder 2.3.7" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "40b5eb5d5d9572e771781a0f2bb4afc1", + "name": "spyder-app", + "requires": [], + "size": 7582, + "version": "2.3.7" + }, + "spyder-app-2.3.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "python 3.4*", + "spyder 2.3.7" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "d1ffc2d7f11f91cdcb57643d8dac33d9", + "name": "spyder-app", + "requires": [], + "size": 7585, + "version": "2.3.7" + }, + "spyder-app-2.3.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-16", + "depends": [ + "python 3.5*", + "spyder 2.3.7" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "cddbf4c433afcf9976a4de1bd62dfe1f", + "name": "spyder-app", + "requires": [], + "size": 7582, + "version": "2.3.7" + }, + "spyder-app-2.3.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "python 2.7*", + "spyder 2.3.8" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "5d989b510b92f8b1dfd4b3cb01b3da25", + "name": "spyder-app", + "requires": [], + "size": 7592, + "version": "2.3.8" + }, + "spyder-app-2.3.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "python 3.4*", + "spyder 2.3.8" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "43e614725f40e5799b05877cd6ae7fe0", + "name": "spyder-app", + "requires": [], + "size": 7604, + "version": "2.3.8" + }, + "spyder-app-2.3.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-30", + "depends": [ + "python 3.5*", + "spyder 2.3.8" + ], + "license": "MIT", + "license_family": "MIT", + "md5": "421712b7b8931334a26df02760df25da", + "name": "spyder-app", + "requires": [], + "size": 7574, + "version": "2.3.8" + }, + "sqlalchemy-0.7.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "fc8df9a606430020b7586b3b126b8c82", + "name": "sqlalchemy", + "requires": [], + "size": 970032, + "version": "0.7.8" + }, + "sqlalchemy-0.7.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "4ec580f65561ee7bca5f498b897359a2", + "name": "sqlalchemy", + "requires": [], + "size": 971894, + "version": "0.7.8" + }, + "sqlalchemy-0.7.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "3709e9b9d4837fd4d2a80139b5ce80ee", + "name": "sqlalchemy", + "requires": [], + "size": 1071992, + "version": "0.7.8" + }, + "sqlalchemy-0.8.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "bd9225d43d18e14a575cb42a27a9e47f", + "name": "sqlalchemy", + "requires": [], + "size": 1101164, + "version": "0.8.0" + }, + "sqlalchemy-0.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "2de229b1a566276e0971fa27009ba8fd", + "name": "sqlalchemy", + "requires": [], + "size": 1100591, + "version": "0.8.0" + }, + "sqlalchemy-0.8.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "2f6ed473e185bfdffc31843a3148c892", + "name": "sqlalchemy", + "requires": [], + "size": 1189792, + "version": "0.8.0" + }, + "sqlalchemy-0.8.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "8a1e95170194369f42045c2ff0339b0a", + "name": "sqlalchemy", + "requires": [], + "size": 1105266, + "version": "0.8.1" + }, + "sqlalchemy-0.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "2c1c2d4268af4538ff930c283d5225b7", + "name": "sqlalchemy", + "requires": [], + "size": 1104352, + "version": "0.8.1" + }, + "sqlalchemy-0.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "efc58ac217ba360a5d9efab3631e2873", + "name": "sqlalchemy", + "requires": [], + "size": 1192463, + "version": "0.8.1" + }, + "sqlalchemy-0.8.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "7eee96d341122654a11a414b64a894f3", + "name": "sqlalchemy", + "requires": [], + "size": 1108390, + "version": "0.8.2" + }, + "sqlalchemy-0.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "9b761f5931c3e7b4b45bbbe33e0d941e", + "name": "sqlalchemy", + "requires": [], + "size": 1109439, + "version": "0.8.2" + }, + "sqlalchemy-0.8.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "98b3bca512ee62c34f8fc2354059b962", + "name": "sqlalchemy", + "requires": [], + "size": 1200964, + "version": "0.8.2" + }, + "sqlalchemy-0.8.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "55d780e0a59570d5a8380ed428842b4c", + "name": "sqlalchemy", + "requires": [], + "size": 1114379, + "version": "0.8.3" + }, + "sqlalchemy-0.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "42cbc4041b4402348be8f1328f260183", + "name": "sqlalchemy", + "requires": [], + "size": 1114559, + "version": "0.8.3" + }, + "sqlalchemy-0.8.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "afa099703d7ba628b1e15a08b8e5b7ec", + "name": "sqlalchemy", + "requires": [], + "size": 1203865, + "version": "0.8.3" + }, + "sqlalchemy-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "e40296d313ef9bd1459ecfc448ab2f56", + "name": "sqlalchemy", + "requires": [], + "size": 1182521, + "version": "0.9.1" + }, + "sqlalchemy-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "b7042518c3e38fecb18c52303c5f78a5", + "name": "sqlalchemy", + "requires": [], + "size": 1179359, + "version": "0.9.1" + }, + "sqlalchemy-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "f25d690964be00d46f82b883c7c73d1c", + "name": "sqlalchemy", + "requires": [], + "size": 1329186, + "version": "0.9.1" + }, + "sqlalchemy-0.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "6c3902649e00bfc7cb60e5721ed4570f", + "name": "sqlalchemy", + "requires": [], + "size": 1198304, + "version": "0.9.2" + }, + "sqlalchemy-0.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "46d4576132673d916010ff873d456b30", + "name": "sqlalchemy", + "requires": [], + "size": 1199860, + "version": "0.9.2" + }, + "sqlalchemy-0.9.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "453460eafb5015f3f46172b4c0731d95", + "name": "sqlalchemy", + "requires": [], + "size": 1355699, + "version": "0.9.2" + }, + "sqlalchemy-0.9.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "5d074e688c22fd414a0ccb9472ede731", + "name": "sqlalchemy", + "requires": [], + "size": 1204138, + "version": "0.9.3" + }, + "sqlalchemy-0.9.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "57d7a01a3b25354b6526a879d6c8388f", + "name": "sqlalchemy", + "requires": [], + "size": 1201736, + "version": "0.9.3" + }, + "sqlalchemy-0.9.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "78447a0a9f3316202a688e0eecf08161", + "name": "sqlalchemy", + "requires": [], + "size": 1355309, + "version": "0.9.3" + }, + "sqlalchemy-0.9.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "eb65579735b6987452d6cd9d1ffdb2d7", + "name": "sqlalchemy", + "requires": [], + "size": 1317553, + "version": "0.9.3" + }, + "sqlalchemy-0.9.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "4b52f5c6399b8a0dfcb65075dce3b9e3", + "name": "sqlalchemy", + "requires": [], + "size": 1220856, + "version": "0.9.4" + }, + "sqlalchemy-0.9.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "5c5972d9ad4585b5fdb60ad095ee1811", + "name": "sqlalchemy", + "requires": [], + "size": 1220395, + "version": "0.9.4" + }, + "sqlalchemy-0.9.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "327009e8c2bcd386f95ec3220a98eaf5", + "name": "sqlalchemy", + "requires": [], + "size": 1380591, + "version": "0.9.4" + }, + "sqlalchemy-0.9.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "2f255b1a0914e666430c4110d0544cc4", + "name": "sqlalchemy", + "requires": [], + "size": 1339816, + "version": "0.9.4" + }, + "sqlalchemy-0.9.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c1994c0ef582bced3b83b21145fd289c", + "name": "sqlalchemy", + "requires": [], + "size": 1227097, + "version": "0.9.6" + }, + "sqlalchemy-0.9.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "2645e53e3d86f6b82c4c9a89c00337b8", + "name": "sqlalchemy", + "requires": [], + "size": 1225564, + "version": "0.9.6" + }, + "sqlalchemy-0.9.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "20556810f1557934bbc4a53847cd5910", + "name": "sqlalchemy", + "requires": [], + "size": 1386126, + "version": "0.9.6" + }, + "sqlalchemy-0.9.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "11f79d7f8afde27072a69a274cbe5c3a", + "name": "sqlalchemy", + "requires": [], + "size": 1348522, + "version": "0.9.6" + }, + "sqlalchemy-0.9.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "1ca15e210620c9d80479025ad26b62cf", + "name": "sqlalchemy", + "requires": [], + "size": 1238828, + "version": "0.9.7" + }, + "sqlalchemy-0.9.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "97079502bffe0db3f599c53985fdcd48", + "name": "sqlalchemy", + "requires": [], + "size": 1237668, + "version": "0.9.7" + }, + "sqlalchemy-0.9.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "116b8a5ca222e6c8ed09ca359a3adad7", + "name": "sqlalchemy", + "requires": [], + "size": 1393057, + "version": "0.9.7" + }, + "sqlalchemy-0.9.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "51bb10ac5bc10e34651ecb343332fde1", + "name": "sqlalchemy", + "requires": [], + "size": 1362317, + "version": "0.9.7" + }, + "sqlalchemy-0.9.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "780fa269c12d4744e33dcc07c5b8e5e0", + "name": "sqlalchemy", + "requires": [], + "size": 1253622, + "version": "0.9.8" + }, + "sqlalchemy-0.9.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "37b8a7bf6738eb55a4a6014a07942e03", + "name": "sqlalchemy", + "requires": [], + "size": 1250505, + "version": "0.9.8" + }, + "sqlalchemy-0.9.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "a1eb6d3bd7fba4d7c367fc5ecf9b64f2", + "name": "sqlalchemy", + "requires": [], + "size": 1398972, + "version": "0.9.8" + }, + "sqlalchemy-0.9.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-23", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "f49752a06d94fbd59b6ef60d00ac934e", + "name": "sqlalchemy", + "requires": [], + "size": 1369393, + "version": "0.9.8" + }, + "sqlalchemy-0.9.9-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-11", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "fb34375e1ee3ab496241f2392ec47288", + "name": "sqlalchemy", + "requires": [], + "size": 1244688, + "version": "0.9.9" + }, + "sqlalchemy-0.9.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-11", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "d5d4b960805164158c8026dd602693ed", + "name": "sqlalchemy", + "requires": [], + "size": 1243013, + "version": "0.9.9" + }, + "sqlalchemy-0.9.9-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-11", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "21dad38c6b87c65208243ae9fc6d85a9", + "name": "sqlalchemy", + "requires": [], + "size": 1397653, + "version": "0.9.9" + }, + "sqlalchemy-0.9.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-11", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "a05acdd798c13035ca6460ccca13972d", + "name": "sqlalchemy", + "requires": [], + "size": 1372300, + "version": "0.9.9" + }, + "sqlalchemy-1.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "2f0d654cb11fb109a30de6e207ea74d6", + "name": "sqlalchemy", + "requires": [], + "size": 1332760, + "version": "1.0.0" + }, + "sqlalchemy-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "7d87dbb3a463e363dcfe1d209eb5c41a", + "name": "sqlalchemy", + "requires": [], + "size": 1329555, + "version": "1.0.0" + }, + "sqlalchemy-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "1e0f5899790c5dec21da922ff2f1b5c5", + "name": "sqlalchemy", + "requires": [], + "size": 1474452, + "version": "1.0.0" + }, + "sqlalchemy-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-17", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "5fa921169f49932d17b2cc8934099fd7", + "name": "sqlalchemy", + "requires": [], + "size": 1456987, + "version": "1.0.0" + }, + "sqlalchemy-1.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c42dbdd26b861dd2d4a864d934162f3c", + "name": "sqlalchemy", + "requires": [], + "size": 1334359, + "version": "1.0.1" + }, + "sqlalchemy-1.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "cca0ddde92257ee3c2cd73c8f8263ae0", + "name": "sqlalchemy", + "requires": [], + "size": 1332198, + "version": "1.0.1" + }, + "sqlalchemy-1.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "050611e8bb1c13877af1fe0fcdb8295f", + "name": "sqlalchemy", + "requires": [], + "size": 1475973, + "version": "1.0.1" + }, + "sqlalchemy-1.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "78f5d39bd8befe3ecef793d01db325bc", + "name": "sqlalchemy", + "requires": [], + "size": 1457369, + "version": "1.0.1" + }, + "sqlalchemy-1.0.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "4716bbc4ea068aa69bfe088c206a9f9b", + "name": "sqlalchemy", + "requires": [], + "size": 1353143, + "version": "1.0.10" + }, + "sqlalchemy-1.0.10-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "ad8ea4465495494b7df49787e7d38506", + "name": "sqlalchemy", + "requires": [], + "size": 1476723, + "version": "1.0.10" + }, + "sqlalchemy-1.0.10-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "87adba630e225575ba82c7f557949095", + "name": "sqlalchemy", + "requires": [], + "size": 1472811, + "version": "1.0.10" + }, + "sqlalchemy-1.0.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "a0e7d14a2f2dfb9829d34a6622632377", + "name": "sqlalchemy", + "requires": [], + "size": 1354059, + "version": "1.0.11" + }, + "sqlalchemy-1.0.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "30e598cd8a026053fe947fc05ab1b22c", + "name": "sqlalchemy", + "requires": [], + "size": 1476304, + "version": "1.0.11" + }, + "sqlalchemy-1.0.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-12", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "c7e1dcac24fad6e62dee9276c203c8c0", + "name": "sqlalchemy", + "requires": [], + "size": 1472903, + "version": "1.0.11" + }, + "sqlalchemy-1.0.12-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "1f83fa29dbeee6112c6acd42451116cb", + "name": "sqlalchemy", + "requires": [], + "size": 1358584, + "version": "1.0.12" + }, + "sqlalchemy-1.0.12-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "58562f8b2a839737f7a1aa62f329cce7", + "name": "sqlalchemy", + "requires": [], + "size": 1479338, + "version": "1.0.12" + }, + "sqlalchemy-1.0.12-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-19", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "c930b7f4fce2588e5f259f7565d42b14", + "name": "sqlalchemy", + "requires": [], + "size": 1475792, + "version": "1.0.12" + }, + "sqlalchemy-1.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "3dea5b32eb458f38bae5761578d69e7f", + "name": "sqlalchemy", + "requires": [], + "size": 1334863, + "version": "1.0.2" + }, + "sqlalchemy-1.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "3996f4da2973c232248fc8cf920bcb45", + "name": "sqlalchemy", + "requires": [], + "size": 1331997, + "version": "1.0.2" + }, + "sqlalchemy-1.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "a3b9b3897cbeb32bf71ff182f4fd42d8", + "name": "sqlalchemy", + "requires": [], + "size": 1476581, + "version": "1.0.2" + }, + "sqlalchemy-1.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-28", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "39ec4a5163ba557ffcae59ae988d89e3", + "name": "sqlalchemy", + "requires": [], + "size": 1458172, + "version": "1.0.2" + }, + "sqlalchemy-1.0.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "7798f81e762ba3481a00cc95ace79883", + "name": "sqlalchemy", + "requires": [], + "size": 1334425, + "version": "1.0.3" + }, + "sqlalchemy-1.0.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "bd39d1f5e667f7eb220959505f04d649", + "name": "sqlalchemy", + "requires": [], + "size": 1335604, + "version": "1.0.3" + }, + "sqlalchemy-1.0.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "8cc5fd2acb14a978cfddb7c2733257f8", + "name": "sqlalchemy", + "requires": [], + "size": 1480586, + "version": "1.0.3" + }, + "sqlalchemy-1.0.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-04", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "9e6f9824186954648bebd4aff8b34b4d", + "name": "sqlalchemy", + "requires": [], + "size": 1462766, + "version": "1.0.3" + }, + "sqlalchemy-1.0.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "af588bf7abaed11a52e4325d7462e54e", + "name": "sqlalchemy", + "requires": [], + "size": 1334678, + "version": "1.0.4" + }, + "sqlalchemy-1.0.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "2e667268b565ce7be547bf06c2d59787", + "name": "sqlalchemy", + "requires": [], + "size": 1336415, + "version": "1.0.4" + }, + "sqlalchemy-1.0.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "c3e1a33c2b9d28c327dd5dba80b89e5f", + "name": "sqlalchemy", + "requires": [], + "size": 1480460, + "version": "1.0.4" + }, + "sqlalchemy-1.0.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-11", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "103a572ffcffd3b23a4b48a5027b75cb", + "name": "sqlalchemy", + "requires": [], + "size": 1462716, + "version": "1.0.4" + }, + "sqlalchemy-1.0.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "a929e1d22ea758fcd3d0720910ff4ccd", + "name": "sqlalchemy", + "requires": [], + "size": 1343115, + "version": "1.0.5" + }, + "sqlalchemy-1.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "0bd3c7baf9d5203a3e774c6e9edb3aa9", + "name": "sqlalchemy", + "requires": [], + "size": 1338195, + "version": "1.0.5" + }, + "sqlalchemy-1.0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "dc7efe1501be4e481ace8ef0edb6fe79", + "name": "sqlalchemy", + "requires": [], + "size": 1491215, + "version": "1.0.5" + }, + "sqlalchemy-1.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "4e337c22ccfdc96a68885ca6fdbc0256", + "name": "sqlalchemy", + "requires": [], + "size": 1467832, + "version": "1.0.5" + }, + "sqlalchemy-1.0.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "c13cfa2fc59c82cc1776e94710711663", + "name": "sqlalchemy", + "requires": [], + "size": 1345416, + "version": "1.0.6" + }, + "sqlalchemy-1.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "efc6125f8eda40fe4c14b1cd1a22a865", + "name": "sqlalchemy", + "requires": [], + "size": 1342206, + "version": "1.0.6" + }, + "sqlalchemy-1.0.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "8fc950e0b3ddb3d49527355e23b1e877", + "name": "sqlalchemy", + "requires": [], + "size": 1496116, + "version": "1.0.6" + }, + "sqlalchemy-1.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-06", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "843dda76579915a1db871e7ff6423ff1", + "name": "sqlalchemy", + "requires": [], + "size": 1468022, + "version": "1.0.6" + }, + "sqlalchemy-1.0.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "9278b8a35ab794f0db664ac5b828a9fc", + "name": "sqlalchemy", + "requires": [], + "size": 1347946, + "version": "1.0.7" + }, + "sqlalchemy-1.0.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "110b3fd045371b9bef59f706640a0230", + "name": "sqlalchemy", + "requires": [], + "size": 1344529, + "version": "1.0.7" + }, + "sqlalchemy-1.0.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "d4b71ddac274a0e58026abff8178ae97", + "name": "sqlalchemy", + "requires": [], + "size": 1497029, + "version": "1.0.7" + }, + "sqlalchemy-1.0.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-22", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "1ef518e4bf7da462fb761f5c8ae25acd", + "name": "sqlalchemy", + "requires": [], + "size": 1469048, + "version": "1.0.7" + }, + "sqlalchemy-1.0.8-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "d20f84ed40a53ffac3c5ec64bbceeb15", + "name": "sqlalchemy", + "requires": [], + "size": 1348097, + "version": "1.0.8" + }, + "sqlalchemy-1.0.8-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "7f40070942a878ca5a6fb5f8ba37e27c", + "name": "sqlalchemy", + "requires": [], + "size": 1344658, + "version": "1.0.8" + }, + "sqlalchemy-1.0.8-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "3dd7591fc4e72e8e354b11bfe36a0c89", + "name": "sqlalchemy", + "requires": [], + "size": 1497988, + "version": "1.0.8" + }, + "sqlalchemy-1.0.8-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "5ed5a032d64532c58ce5189174870c38", + "name": "sqlalchemy", + "requires": [], + "size": 1468727, + "version": "1.0.8" + }, + "sqlalchemy-1.0.8-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "73b1bcbe45924e63e6a644e253692c5c", + "name": "sqlalchemy", + "requires": [], + "size": 1466642, + "version": "1.0.8" + }, + "sqlalchemy-1.0.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "62c8a446a9f8c899bc1f64c16f74a897", + "name": "sqlalchemy", + "requires": [], + "size": 1348165, + "version": "1.0.9" + }, + "sqlalchemy-1.0.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "4fba0d1ad44031f39d04f341df04dc8e", + "name": "sqlalchemy", + "requires": [], + "size": 1473902, + "version": "1.0.9" + }, + "sqlalchemy-1.0.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "8b0dd233a960d7d23cb148514c23a99b", + "name": "sqlalchemy", + "requires": [], + "size": 1469440, + "version": "1.0.9" + }, + "sqlite-3.7.13-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "Public-Domain (http://www.sqlite.org/copyright.html)", + "license_family": "Public-Domain", + "md5": "5a252a033d5f32f37dfcf392434c4008", + "name": "sqlite", + "requires": [], + "size": 1943829, + "version": "3.7.13" + }, + "sqlite-3.8.4.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "Public-Domain (http://www.sqlite.org/copyright.html)", + "license_family": "Public-Domain", + "md5": "6ee2d2fa576b985128911d10f8028a6e", + "name": "sqlite", + "requires": [], + "size": 2105174, + "version": "3.8.4.1" + }, + "sqlite-3.8.4.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-03-23", + "depends": [], + "license": "Public-Domain (http://www.sqlite.org/copyright.html)", + "license_family": "Public-Domain", + "md5": "987665edcc4d5d8086cf9b9cbc614919", + "name": "sqlite", + "requires": [], + "size": 2621615, + "version": "3.8.4.1" + }, + "sqlite-3.9.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-11", + "depends": [], + "license": "Public-Domain (http://www.sqlite.org/copyright.html)", + "license_family": "Public-Domain", + "md5": "921ea12655f77e6d505a6f9b34d86e4f", + "name": "sqlite", + "requires": [], + "size": 4088115, + "version": "3.9.2" + }, + "sqlparse-0.1.11-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "69282dff2823876aa5b71ec31e5f94de", + "name": "sqlparse", + "requires": [], + "size": 73932, + "version": "0.1.11" + }, + "sqlparse-0.1.11-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "fbbb2b438473f6ab88950c3e8c3614f9", + "name": "sqlparse", + "requires": [], + "size": 49657, + "version": "0.1.11" + }, + "sqlparse-0.1.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "dae79333ce36cec89de005f7ab827cce", + "name": "sqlparse", + "requires": [], + "size": 73756, + "version": "0.1.11" + }, + "sqlparse-0.1.11-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "dcb9cef15909d8525b0ffef6d16d464b", + "name": "sqlparse", + "requires": [], + "size": 49689, + "version": "0.1.11" + }, + "sqlparse-0.1.11-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "0b2f9a8f21fadcd2c61c7949bbb4c70b", + "name": "sqlparse", + "requires": [], + "size": 76245, + "version": "0.1.11" + }, + "sqlparse-0.1.11-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7107f17c9f01ee9743f2f52e99788c8c", + "name": "sqlparse", + "requires": [], + "size": 51228, + "version": "0.1.11" + }, + "sqlparse-0.1.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ac774e1462d63f1be68c2f16e75fc625", + "name": "sqlparse", + "requires": [], + "size": 75025, + "version": "0.1.11" + }, + "sqlparse-0.1.11-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a9483b6cd93c7cf29a920e78af72598e", + "name": "sqlparse", + "requires": [], + "size": 51410, + "version": "0.1.11" + }, + "sqlparse-0.1.12-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c4ff2f3e9cd3e2c2ad360dcfa9680cfb", + "name": "sqlparse", + "requires": [], + "size": 50446, + "version": "0.1.12" + }, + "sqlparse-0.1.12-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "05fcdb53cba742c7e3ec122e5861a643", + "name": "sqlparse", + "requires": [], + "size": 50470, + "version": "0.1.12" + }, + "sqlparse-0.1.12-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "196fb5bcb2cecfefa4c4c0ea304106f5", + "name": "sqlparse", + "requires": [], + "size": 51928, + "version": "0.1.12" + }, + "sqlparse-0.1.12-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ce33d0331c6fb6f23748cfac21dc8b20", + "name": "sqlparse", + "requires": [], + "size": 52238, + "version": "0.1.12" + }, + "sqlparse-0.1.14-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "fc1e4847ca355d488d2fd1ec070b237d", + "name": "sqlparse", + "requires": [], + "size": 50568, + "version": "0.1.14" + }, + "sqlparse-0.1.14-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "c16b94e644b6e37989d0c00b60202c91", + "name": "sqlparse", + "requires": [], + "size": 50710, + "version": "0.1.14" + }, + "sqlparse-0.1.14-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f5e005606d7bb8b631101d2674d5ae41", + "name": "sqlparse", + "requires": [], + "size": 52252, + "version": "0.1.14" + }, + "sqlparse-0.1.14-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e36f2623d2fdbf4a772c7f06f6ec6d87", + "name": "sqlparse", + "requires": [], + "size": 52479, + "version": "0.1.14" + }, + "sqlparse-0.1.15-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "f5b8a719440c9f55b5d80be3f832c0e1", + "name": "sqlparse", + "requires": [], + "size": 51867, + "version": "0.1.15" + }, + "sqlparse-0.1.15-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e77cdb41b208b5e423841d096037aebc", + "name": "sqlparse", + "requires": [], + "size": 51974, + "version": "0.1.15" + }, + "sqlparse-0.1.15-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "63785d4f4a4959ca75e927d5e9ac49cc", + "name": "sqlparse", + "requires": [], + "size": 53472, + "version": "0.1.15" + }, + "sqlparse-0.1.15-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "961eb4b2a6c533d29df64bbc30903677", + "name": "sqlparse", + "requires": [], + "size": 53606, + "version": "0.1.15" + }, + "sqlparse-0.1.16-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "91f0fea121a519147acd60668cc743ac", + "name": "sqlparse", + "requires": [], + "size": 52081, + "version": "0.1.16" + }, + "sqlparse-0.1.16-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "31e2eb1b1e1056804cc061b14c6b3819", + "name": "sqlparse", + "requires": [], + "size": 53766, + "version": "0.1.16" + }, + "sqlparse-0.1.16-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "9e67d160ffbc0daeb4f966eb4cdf061d", + "name": "sqlparse", + "requires": [], + "size": 53597, + "version": "0.1.16" + }, + "sqlparse-0.1.18-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "16374a5250f020214f1d41e6a0aab977", + "name": "sqlparse", + "requires": [], + "size": 52284, + "version": "0.1.18" + }, + "sqlparse-0.1.18-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "a6c8151eeca913d1ff7fd47ac7dcbcd3", + "name": "sqlparse", + "requires": [], + "size": 54146, + "version": "0.1.18" + }, + "sqlparse-0.1.18-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-14", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "9b349064d5631c89fa88d28e57e1f8ca", + "name": "sqlparse", + "requires": [], + "size": 53889, + "version": "0.1.18" + }, + "sqlparse-0.1.19-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "322b8b90275e49fe44a59130973f37ca", + "name": "sqlparse", + "requires": [], + "size": 53473, + "version": "0.1.19" + }, + "sqlparse-0.1.19-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "fd9b35efecca9ea17553e61b30b8c68a", + "name": "sqlparse", + "requires": [], + "size": 55283, + "version": "0.1.19" + }, + "sqlparse-0.1.19-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "37e6da2c619c220de2b72d415e2967ed", + "name": "sqlparse", + "requires": [], + "size": 55073, + "version": "0.1.19" + }, + "sqlparse-0.1.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "db790dcc8a3b6119623ef5eef1b99285", + "name": "sqlparse", + "requires": [], + "size": 47086, + "version": "0.1.7" + }, + "sqlparse-0.1.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f2aaac484c6a263d5d1f0a3501802807", + "name": "sqlparse", + "requires": [], + "size": 47077, + "version": "0.1.7" + }, + "sqlparse-0.1.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "c008968544d50888a99e0128be3dc17f", + "name": "sqlparse", + "requires": [], + "size": 48747, + "version": "0.1.7" + }, + "sqlparse-0.1.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "39a7f99bbbff77e731cfe6f2b127ab16", + "name": "sqlparse", + "requires": [], + "size": 73712, + "version": "0.1.7" + }, + "ssh-1.8.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycrypto 2.6", + "python 2.6*" + ], + "license": "LGPL", + "md5": "32c8f1c95e2c4557f2b7bc050376192c", + "name": "ssh", + "requires": [], + "size": 157131, + "version": "1.8.0" + }, + "ssh-1.8.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pycrypto 2.6", + "python 2.7*" + ], + "license": "LGPL", + "md5": "9ebe0f83a36c60be94cd8632407c5754", + "name": "ssh", + "requires": [], + "size": 157470, + "version": "1.8.0" + }, + "ssh-1.8.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-03-09", + "depends": [ + "pycrypto >=2.1", + "python 2.7*" + ], + "license": "LGPL", + "md5": "a5ad3d99018667f3a708f33efa9221f3", + "name": "ssh", + "requires": [], + "size": 169999, + "version": "1.8.0" + }, + "ssl_match_hostname-3.4.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "33dcc7a4121ce88979e56a039346f5c7", + "name": "ssl_match_hostname", + "requires": [], + "size": 6252, + "version": "3.4.0.2" + }, + "ssl_match_hostname-3.4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "4f5d4ed3fd8253b09a2fbf2d4245853b", + "name": "ssl_match_hostname", + "requires": [], + "size": 6256, + "version": "3.4.0.2" + }, + "ssl_match_hostname-3.4.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "PSF", + "md5": "f0b499be9678dbb1736e545eec7a3c9c", + "name": "ssl_match_hostname", + "requires": [], + "size": 6313, + "version": "3.4.0.2" + }, + "ssl_match_hostname-3.4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "PSF", + "md5": "847afc54dd92973e931790a25f80157f", + "name": "ssl_match_hostname", + "requires": [], + "size": 6285, + "version": "3.4.0.2" + }, + "starcluster-0.93.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "boto 2.7.0", + "decorator", + "distribute", + "jinja2", + "pyasn1 0.1.4", + "python 2.6*", + "ssh 1.8.0", + "workerpool 0.9.2" + ], + "license": "LGPL", + "md5": "acc115f6087eb72afcfadea7c11f0a61", + "name": "starcluster", + "requires": [], + "size": 360551, + "version": "0.93.3" + }, + "starcluster-0.93.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "boto 2.6.0", + "decorator", + "distribute", + "jinja2", + "pyasn1 0.1.4", + "python 2.7*", + "ssh 1.8.0", + "workerpool 0.9.2" + ], + "license": "LGPL", + "md5": "085ec1cd2c5e8f14dd85973875c565b8", + "name": "starcluster", + "requires": [], + "size": 361493, + "version": "0.93.3" + }, + "statsmodels-0.4.3-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "pandas", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a896acab1ce3774eb2e5430b0a8b1355", + "name": "statsmodels", + "requires": [], + "size": 4090201, + "version": "0.4.3" + }, + "statsmodels-0.4.3-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "pandas", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "513d669d10311a80a5906cc18e15850d", + "name": "statsmodels", + "requires": [], + "size": 4079300, + "version": "0.4.3" + }, + "statsmodels-0.4.3-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "15f75aa20530f2a9531418afe8171f25", + "name": "statsmodels", + "requires": [], + "size": 4093066, + "version": "0.4.3" + }, + "statsmodels-0.4.3-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3b7aa7c528f502efc7fe3c86ea534927", + "name": "statsmodels", + "requires": [], + "size": 4078221, + "version": "0.4.3" + }, + "statsmodels-0.4.3-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ed8e10e81ee192272a09e21c3df6223b", + "name": "statsmodels", + "requires": [], + "size": 4089926, + "version": "0.4.3" + }, + "statsmodels-0.4.3-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "python 2.6*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "365a5c72732587ae0b9a6fd107160248", + "name": "statsmodels", + "requires": [], + "size": 4077687, + "version": "0.4.3" + }, + "statsmodels-0.4.3-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9483a8048c64d2b1cab706310ea89d8d", + "name": "statsmodels", + "requires": [], + "size": 4093289, + "version": "0.4.3" + }, + "statsmodels-0.4.3-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "aa6364599885c091a071e7ff565db24e", + "name": "statsmodels", + "requires": [], + "size": 4079419, + "version": "0.4.3" + }, + "statsmodels-0.5.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "pandas", + "patsy", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "51368dea1b1d5d8ba761123979bbf9d4", + "name": "statsmodels", + "requires": [], + "size": 5972085, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "pandas", + "patsy", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "63fc0b468bc7ec8f2b3303ee1dfe47b5", + "name": "statsmodels", + "requires": [], + "size": 5960851, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "patsy", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f7b37fdc15ba2bd35d5ebf401678f7ce", + "name": "statsmodels", + "requires": [], + "size": 5974772, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "patsy", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e75887aea2dc428d0f3e65d3ba2ef556", + "name": "statsmodels", + "requires": [], + "size": 5961642, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np17py33_0.tar.bz2": { + "build": "np17py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "pandas", + "patsy", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0c8dcb92cfe154e17c62e883a91e65d5", + "name": "statsmodels", + "requires": [], + "size": 6080943, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "patsy", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9db46c2bca94ccfc74a6b9d9bc24c7f3", + "name": "statsmodels", + "requires": [], + "size": 5973604, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "patsy", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0d2dd20134c18441e920756414b6d070", + "name": "statsmodels", + "requires": [], + "size": 5962503, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np18py33_0.tar.bz2": { + "build": "np18py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "pandas", + "patsy", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "03b5148e8c32bf0217906c7e539ddd72", + "name": "statsmodels", + "requires": [], + "size": 6079921, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "25cd57fbfedb45a5c6f8c6a03f26b4b6", + "name": "statsmodels", + "requires": [], + "size": 6056903, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np19py26_2.tar.bz2": { + "build": "np19py26_2", + "build_number": 2, + "date": "2014-09-15", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c39429e74f202f059ca2dffc05c5fffd", + "name": "statsmodels", + "requires": [], + "size": 6025572, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1fa8501e95575255473936fc237cd3a1", + "name": "statsmodels", + "requires": [], + "size": 6050000, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np19py27_2.tar.bz2": { + "build": "np19py27_2", + "build_number": 2, + "date": "2014-09-15", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e3e37d9e37d73a6875650c7a9ff26a50", + "name": "statsmodels", + "requires": [], + "size": 6019535, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2cca81a29d60822cf99683ca06083818", + "name": "statsmodels", + "requires": [], + "size": 6142899, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np19py33_2.tar.bz2": { + "build": "np19py33_2", + "build_number": 2, + "date": "2014-09-15", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c8c175f33ce412f2ca9fd8166e8388df", + "name": "statsmodels", + "requires": [], + "size": 6048399, + "version": "0.5.0" + }, + "statsmodels-0.5.0-np19py34_2.tar.bz2": { + "build": "np19py34_2", + "build_number": 2, + "date": "2014-09-15", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c88fe5aa084aa263280842b081870ef8", + "name": "statsmodels", + "requires": [], + "size": 6064321, + "version": "0.5.0" + }, + "statsmodels-0.6.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "1c39ca444d187b7b9d37ab718e2472d6", + "name": "statsmodels", + "requires": [], + "size": 5219092, + "version": "0.6.0" + }, + "statsmodels-0.6.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c7f7ab052cc8f5622f778c98e9c34279", + "name": "statsmodels", + "requires": [], + "size": 5204227, + "version": "0.6.0" + }, + "statsmodels-0.6.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "670904633bb36950d5cc48d4b8b1c6f8", + "name": "statsmodels", + "requires": [], + "size": 5414966, + "version": "0.6.0" + }, + "statsmodels-0.6.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "707a9acfe809c122e456dde9f053fba5", + "name": "statsmodels", + "requires": [], + "size": 5440668, + "version": "0.6.0" + }, + "statsmodels-0.6.1-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "pandas", + "patsy", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a174f293c4d7d5d9796dd0a558804a00", + "name": "statsmodels", + "requires": [], + "size": 5249531, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "pandas", + "patsy", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "a6116caab37f773e3c0d3c58fdf873d7", + "name": "statsmodels", + "requires": [], + "size": 5456702, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "pandas", + "patsy", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "820c538ae9c820709d2ddbb13738df11", + "name": "statsmodels", + "requires": [], + "size": 5454231, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np111py27_0.tar.bz2": { + "build": "np111py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "numpy 1.11*", + "pandas", + "patsy", + "python 2.7*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "6c4bd9636b67ac85bb0360858e086da6", + "name": "statsmodels", + "requires": [], + "size": 5249430, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np111py34_0.tar.bz2": { + "build": "np111py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "numpy 1.11*", + "pandas", + "patsy", + "python 3.4*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "819821d4c4e4f465253abe58a0927170", + "name": "statsmodels", + "requires": [], + "size": 5456931, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np111py35_0.tar.bz2": { + "build": "np111py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "numpy 1.11*", + "pandas", + "patsy", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "463fdf904c05dcfecb368e54fc7c32fb", + "name": "statsmodels", + "requires": [], + "size": 5441032, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f2a5b3e3d04602a34157184713f1ab88", + "name": "statsmodels", + "requires": [], + "size": 5223364, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7102eeb297154056be3ee03f22e72990", + "name": "statsmodels", + "requires": [], + "size": 5216074, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "140e30ca458290b709ec8d6af8082630", + "name": "statsmodels", + "requires": [], + "size": 5431162, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2014-12-02", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "682cf0c2c588c81ff0b19aa69b0947cc", + "name": "statsmodels", + "requires": [], + "size": 5443570, + "version": "0.6.1" + }, + "statsmodels-0.6.1-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "pandas", + "patsy", + "python 3.5*", + "scipy" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "17e9c74ecd0aeeb5fb6c702cdeaf5922", + "name": "statsmodels", + "requires": [], + "size": 5453695, + "version": "0.6.1" + }, + "stripe-1.22.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*", + "requests" + ], + "license": "MIT", + "md5": "c465543889545e7cd8ffec6c467eb12b", + "name": "stripe", + "requires": [], + "size": 206206, + "version": "1.22.2" + }, + "stripe-1.22.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*", + "requests" + ], + "license": "MIT", + "md5": "4dcfd110feadf7562314772890d5bfb5", + "name": "stripe", + "requires": [], + "size": 206104, + "version": "1.22.2" + }, + "stripe-1.22.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*", + "requests" + ], + "license": "MIT", + "md5": "24210df84f42d076163d7b612abdcd41", + "name": "stripe", + "requires": [], + "size": 208751, + "version": "1.22.2" + }, + "stripe-1.22.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*", + "requests" + ], + "license": "MIT", + "md5": "cefcea8702011129f4f9791bf962130c", + "name": "stripe", + "requires": [], + "size": 209482, + "version": "1.22.2" + }, + "stripe-1.25.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-20", + "depends": [ + "python 2.7*", + "requests" + ], + "license": "MIT", + "md5": "030c546c28147be9a5bf405f15a0fd0a", + "name": "stripe", + "requires": [], + "size": 209378, + "version": "1.25.0" + }, + "stripe-1.25.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-20", + "depends": [ + "python 3.4*", + "requests" + ], + "license": "MIT", + "md5": "56cce9132e4514baa650389be67e04d9", + "name": "stripe", + "requires": [], + "size": 212993, + "version": "1.25.0" + }, + "stripe-1.25.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "requests" + ], + "license": "MIT", + "md5": "e0c4d8897a924cd8cdca8ec49ff6fa95", + "name": "stripe", + "requires": [], + "size": 212616, + "version": "1.25.0" + }, + "suds-jurko-0.6-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-03-31", + "depends": [ + "python 2.7*" + ], + "license": "GNU Library or Lesser General Public License LGPL", + "license_family": "GPL3", + "md5": "d221bea30124c1f8f195e6a683377665", + "name": "suds-jurko", + "requires": [], + "size": 283044, + "version": "0.6" + }, + "suds-jurko-0.6-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-03-31", + "depends": [ + "python 3.4*" + ], + "license": "GNU Library or Lesser General Public License LGPL", + "license_family": "GPL3", + "md5": "6a97a43b120fa5a9744715ea9630dbcf", + "name": "suds-jurko", + "requires": [], + "size": 305735, + "version": "0.6" + }, + "suds-jurko-0.6-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-03-31", + "depends": [ + "python 3.5*" + ], + "license": "GNU Library or Lesser General Public License LGPL", + "license_family": "GPL3", + "md5": "802dc91922b59ac1b4e5fb1942939039", + "name": "suds-jurko", + "requires": [], + "size": 304457, + "version": "0.6" + }, + "supervisor-3.1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "783007f8181aa0cab0d4dc9cd173b126", + "name": "supervisor", + "requires": [], + "size": 374559, + "version": "3.1.3" + }, + "supervisor-3.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-07", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "ca91d92cc484a01fdfea30a9f0b11c55", + "name": "supervisor", + "requires": [], + "size": 374544, + "version": "3.1.3" + }, + "supervisor-3.1.3-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-08-28", + "depends": [ + "meld3 1.0.2", + "python 2.7*", + "setuptools" + ], + "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)", + "license_family": "BSD", + "md5": "e4d3d80129c14ff92074a3ba7d00d577", + "name": "supervisor", + "requires": [], + "size": 374579, + "version": "3.1.3" + }, + "svn-1.9.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-17", + "depends": [ + "apr", + "openssl", + "serf", + "sqlite", + "zlib" + ], + "license": "Apache Software License V.2", + "license_family": "Apache", + "md5": "6edee6ce80d8eff009bc42f08dabb8e9", + "name": "svn", + "requires": [], + "size": 12656717, + "version": "1.9.3" + }, + "swig-2.0.10-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "pcre 8.31" + ], + "license": "GPL3", + "md5": "95d40698c69cabffd6e182e9e0263224", + "name": "swig", + "requires": [], + "size": 1847362, + "version": "2.0.10" + }, + "swig-2.0.10-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pcre 8.31", + "python 2.7*" + ], + "license": "GPL3", + "md5": "51c1b12e8c50cad44593a83c5f39ff9a", + "name": "swig", + "requires": [], + "size": 1844805, + "version": "2.0.10" + }, + "swig-3.0.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-11-10", + "depends": [ + "pcre" + ], + "license": "GPL3", + "md5": "43ace6e7a00864fa89df51371922921f", + "name": "swig", + "requires": [], + "size": 1973949, + "version": "3.0.2" + }, + "swig-3.0.8-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-01-13", + "depends": [ + "pcre 8.31" + ], + "license": "GPL3", + "md5": "4a2480642f7e896fa2515112a79144aa", + "name": "swig", + "requires": [], + "size": 2168553, + "version": "3.0.8" + }, + "swig-3.0.8-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2016-01-14", + "depends": [ + "pcre" + ], + "license": "GPL3", + "md5": "34256162198a7cf87c8790be99ed1c8d", + "name": "swig", + "requires": [], + "size": 2048257, + "version": "3.0.8" + }, + "sympy-0.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ed1dad010b72725d33f4c06d7cbbf8ce", + "name": "sympy", + "requires": [], + "size": 3386160, + "version": "0.7.1" + }, + "sympy-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "78d218f06559d6a39b7715c1ce16d250", + "name": "sympy", + "requires": [], + "size": 3434027, + "version": "0.7.1" + }, + "sympy-0.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3f328ba1f0198b4065d1605dbedab89f", + "name": "sympy", + "requires": [], + "size": 4298981, + "version": "0.7.2" + }, + "sympy-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ed3d87798a3b1e63eee1878671d7e9dd", + "name": "sympy", + "requires": [], + "size": 4374752, + "version": "0.7.2" + }, + "sympy-0.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9b0b7e171f489a6f0af034e819f6d3c2", + "name": "sympy", + "requires": [], + "size": 4664464, + "version": "0.7.2" + }, + "sympy-0.7.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "0401d0069f8ddca6b256146b39112aca", + "name": "sympy", + "requires": [], + "size": 5139958, + "version": "0.7.3" + }, + "sympy-0.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3a3b6a8944ee9e39c9358865b52b1763", + "name": "sympy", + "requires": [], + "size": 5196144, + "version": "0.7.3" + }, + "sympy-0.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "417c6745798d29d6b5f5a608254dc655", + "name": "sympy", + "requires": [], + "size": 5553799, + "version": "0.7.3" + }, + "sympy-0.7.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "873c2281c2f613456dd1bf8940afcbb0", + "name": "sympy", + "requires": [], + "size": 5509491, + "version": "0.7.4" + }, + "sympy-0.7.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "cfd66a582bc533fb0a65ea0128ee63f0", + "name": "sympy", + "requires": [], + "size": 5601245, + "version": "0.7.4" + }, + "sympy-0.7.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "beaea458f727cba5cb7f4952da3f7490", + "name": "sympy", + "requires": [], + "size": 5984920, + "version": "0.7.4" + }, + "sympy-0.7.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "17c57291b8c03ca8bb66cdce03fcc1ac", + "name": "sympy", + "requires": [], + "size": 5510508, + "version": "0.7.4.1" + }, + "sympy-0.7.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2682d60ba85f4cca1bf6053c4757599a", + "name": "sympy", + "requires": [], + "size": 5602833, + "version": "0.7.4.1" + }, + "sympy-0.7.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9f916955f0487d246f0e41ff2fb415a7", + "name": "sympy", + "requires": [], + "size": 5986237, + "version": "0.7.4.1" + }, + "sympy-0.7.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2351b8e47f3b2e28b1b39e1c1544c7f9", + "name": "sympy", + "requires": [], + "size": 5691120, + "version": "0.7.5" + }, + "sympy-0.7.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ab43997c22c262be08f977f9aea72278", + "name": "sympy", + "requires": [], + "size": 5794577, + "version": "0.7.5" + }, + "sympy-0.7.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b2627716fbdb3d5f109441e4e107325c", + "name": "sympy", + "requires": [], + "size": 6156686, + "version": "0.7.5" + }, + "sympy-0.7.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f54c0d249954ffbdd1434f86d46f15a9", + "name": "sympy", + "requires": [], + "size": 6108266, + "version": "0.7.5" + }, + "sympy-0.7.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "fastcache", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "ffcf3dd9112b8004f71a4cdca19ab07a", + "name": "sympy", + "requires": [], + "size": 6395210, + "version": "0.7.6" + }, + "sympy-0.7.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "fastcache", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "d0f5a7ea992efd0b30a68f5f551889ac", + "name": "sympy", + "requires": [], + "size": 6469994, + "version": "0.7.6" + }, + "sympy-0.7.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "fastcache", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c91305cc4676efb77f746a536bea6e9a", + "name": "sympy", + "requires": [], + "size": 6903211, + "version": "0.7.6" + }, + "sympy-0.7.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-20", + "depends": [ + "fastcache", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b5213e8f43852910fc3631439f02a30d", + "name": "sympy", + "requires": [], + "size": 6813011, + "version": "0.7.6" + }, + "sympy-0.7.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-03", + "depends": [ + "fastcache", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "b6c5da16ee0aac46189e265920c6c7f3", + "name": "sympy", + "requires": [], + "size": 6470271, + "version": "0.7.6.1" + }, + "sympy-0.7.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-03", + "depends": [ + "fastcache", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7fe14d8087deb20afb597f98ebe133e6", + "name": "sympy", + "requires": [], + "size": 6816170, + "version": "0.7.6.1" + }, + "sympy-0.7.6.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "fastcache", + "python 3.5*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "c29afb6a08463d4695d795c76257bc98", + "name": "sympy", + "requires": [], + "size": 6791980, + "version": "0.7.6.1" + }, + "sympy-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "mpmath >=0.19", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "e96b1b72f0e023184d6c32f620932ae9", + "name": "sympy", + "requires": [], + "size": 5901257, + "version": "1.0" + }, + "sympy-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "mpmath >=0.19", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "3f5253005f70658cddb09a91a0bf1baf", + "name": "sympy", + "requires": [], + "size": 6235170, + "version": "1.0" + }, + "sympy-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-09", + "depends": [ + "mpmath >=0.19", + "python 3.5*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "056c01d8223c9153aa2748d2dc4be409", + "name": "sympy", + "requires": [], + "size": 6227099, + "version": "1.0" + }, + "system-5.8-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license_family": "GPL2", + "md5": "210d83c2261af6c4cb5adcf7846e7eeb", + "name": "system", + "requires": [], + "size": 497500, + "version": "5.8" + }, + "system-5.8-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [], + "license_family": "GPL2", + "md5": "78c2ce49f41804cdaa2d97a1a23c0c1b", + "name": "system", + "requires": [], + "size": 501839, + "version": "5.8" + }, + "system-5.8-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-03-04", + "depends": [], + "license_family": "GPL2", + "md5": "2d34ef0cfab944d5d3e160e64195d82a", + "name": "system", + "requires": [], + "size": 174210, + "version": "5.8" + }, + "tblib-1.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d5d11d6d95a6c96e605f3532d39099c3", + "name": "tblib", + "requires": [], + "size": 11004, + "version": "1.2.0" + }, + "tblib-1.2.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2016-02-21", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f2b869f7923201f53de45daa0afa0513", + "name": "tblib", + "requires": [], + "size": 11248, + "version": "1.2.0" + }, + "tblib-1.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "acc8276140bf398f08128fe4d97209fb", + "name": "tblib", + "requires": [], + "size": 11305, + "version": "1.2.0" + }, + "tblib-1.2.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2016-02-21", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "2f134ee144c9306bf7e4f5a2ecbee652", + "name": "tblib", + "requires": [], + "size": 11530, + "version": "1.2.0" + }, + "tblib-1.2.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "24f79d131e1ddac920533170a8210a47", + "name": "tblib", + "requires": [], + "size": 11285, + "version": "1.2.0" + }, + "tblib-1.2.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2016-02-21", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "af25c5318e8d9418f06e067e937e5300", + "name": "tblib", + "requires": [], + "size": 11520, + "version": "1.2.0" + }, + "tempita-0.5.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "2c0c6a0b84aee0f931a3ad04f3449c8a", + "name": "tempita", + "requires": [], + "size": 24057, + "version": "0.5.3" + }, + "tempita-0.5.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "f32d78f3c96411a83158f172dc9e9d79", + "name": "tempita", + "requires": [], + "size": 24808, + "version": "0.5.3" + }, + "tempita-0.5.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "e6720a16c2c9f9f69a53761ff0c2d6d6", + "name": "tempita", + "requires": [], + "size": 24680, + "version": "0.5.3" + }, + "teradata-15.10.0.11-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "12af485a21b0f2b7ae3402d9886d106a", + "name": "teradata", + "requires": [], + "size": 60762, + "version": "15.10.0.11" + }, + "teradata-15.10.0.11-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6decf6a006172c56f882aca74e1f1b37", + "name": "teradata", + "requires": [], + "size": 62205, + "version": "15.10.0.11" + }, + "teradata-15.10.0.11-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "46e0f2ca5712c18f434ff43834ced1e0", + "name": "teradata", + "requires": [], + "size": 61827, + "version": "15.10.0.11" + }, + "terminado-0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "ptyprocess 0.4", + "python 2.7*", + "tornado" + ], + "license": "BSD", + "md5": "29ba63ec2ad40a61334c7676dff10453", + "name": "terminado", + "requires": [], + "size": 18073, + "version": "0.5" + }, + "terminado-0.5-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-10-22", + "depends": [ + "ptyprocess 0.5", + "python 2.7*", + "tornado" + ], + "license": "BSD", + "md5": "d38fda2a2bdc5d0b7b42b27dfb0e331b", + "name": "terminado", + "requires": [], + "size": 17835, + "version": "0.5" + }, + "terminado-0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "ptyprocess 0.4", + "python 3.3*", + "tornado" + ], + "license": "BSD", + "md5": "803cce358a677246d3740301530e5275", + "name": "terminado", + "requires": [], + "size": 18705, + "version": "0.5" + }, + "terminado-0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-03", + "depends": [ + "ptyprocess 0.4", + "python 3.4*", + "tornado" + ], + "license": "BSD", + "md5": "b08bc0abe13332f929883a433f0bad10", + "name": "terminado", + "requires": [], + "size": 18768, + "version": "0.5" + }, + "terminado-0.5-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-10-22", + "depends": [ + "ptyprocess 0.5", + "python 3.4*", + "tornado" + ], + "license": "BSD", + "md5": "46d2cc32a3e4059dd938d110b7915239", + "name": "terminado", + "requires": [], + "size": 18508, + "version": "0.5" + }, + "terminado-0.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "ptyprocess 0.5", + "python 3.5*", + "tornado" + ], + "license": "BSD", + "md5": "8b65616d6a8d8dce56e221c933cfef3e", + "name": "terminado", + "requires": [], + "size": 18445, + "version": "0.5" + }, + "terminado-0.5-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-10-22", + "depends": [ + "ptyprocess 0.5", + "python 3.5*", + "tornado" + ], + "license": "BSD", + "md5": "361c448d6b787266ee9242ae3c5bdc40", + "name": "terminado", + "requires": [], + "size": 18455, + "version": "0.5" + }, + "text-unidecode-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "python 2.7*" + ], + "license": "Artistic License", + "license_family": "Other", + "md5": "2ee353ba8c3cf963a5f36562eb365dc6", + "name": "text-unidecode", + "requires": [], + "size": 62639, + "version": "1.0" + }, + "text-unidecode-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "python 3.4*" + ], + "license": "Artistic License", + "license_family": "Other", + "md5": "137bf63ddc39da53a157bd2280b29c28", + "name": "text-unidecode", + "requires": [], + "size": 62913, + "version": "1.0" + }, + "text-unidecode-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-09", + "depends": [ + "python 3.5*" + ], + "license": "Artistic License", + "license_family": "Other", + "md5": "54935173b801d7c88a25b090fbdd7935", + "name": "text-unidecode", + "requires": [], + "size": 62775, + "version": "1.0" + }, + "theano-0.5.0-np15py26_0.tar.bz2": { + "build": "np15py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "b6f800fe6e3b1610c8a64d10d4208438", + "name": "theano", + "requires": [], + "size": 1680630, + "version": "0.5.0" + }, + "theano-0.5.0-np15py27_0.tar.bz2": { + "build": "np15py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "c85dc12041b159c2550949fb350fe106", + "name": "theano", + "requires": [], + "size": 1685515, + "version": "0.5.0" + }, + "theano-0.5.0-np16py26_0.tar.bz2": { + "build": "np16py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "4804d033e32feffe2325439f039b8ab7", + "name": "theano", + "requires": [], + "size": 1680614, + "version": "0.5.0" + }, + "theano-0.5.0-np16py26_1.tar.bz2": { + "build": "np16py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "58ea920a993484e796f3aa9b2aefc5a5", + "name": "theano", + "requires": [], + "size": 1682429, + "version": "0.5.0" + }, + "theano-0.5.0-np16py27_0.tar.bz2": { + "build": "np16py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "f2efdc1e8b7c83ff7061604ff818b742", + "name": "theano", + "requires": [], + "size": 1685580, + "version": "0.5.0" + }, + "theano-0.5.0-np16py27_1.tar.bz2": { + "build": "np16py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.6*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "0927404a1f2b71957c54dcb6bc6b5587", + "name": "theano", + "requires": [], + "size": 1683807, + "version": "0.5.0" + }, + "theano-0.5.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "240bb2e7f5856c02f801a74a14b01c71", + "name": "theano", + "requires": [], + "size": 1680624, + "version": "0.5.0" + }, + "theano-0.5.0-np17py26_1.tar.bz2": { + "build": "np17py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "b15720c368be601967649dddc74811ba", + "name": "theano", + "requires": [], + "size": 1682658, + "version": "0.5.0" + }, + "theano-0.5.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "35819835583a8525d5c73b15e3ac008a", + "name": "theano", + "requires": [], + "size": 1684923, + "version": "0.5.0" + }, + "theano-0.5.0-np17py27_1.tar.bz2": { + "build": "np17py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "4e5aa2ca35ca63d12f98576d32c17899", + "name": "theano", + "requires": [], + "size": 1683923, + "version": "0.5.0" + }, + "theano-0.6.0-np17py26_0.tar.bz2": { + "build": "np17py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "bc252a297e40fcd5553a572af0455c6f", + "name": "theano", + "requires": [], + "size": 2281843, + "version": "0.6.0" + }, + "theano-0.6.0-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.7*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "98e1b9c896b8b5de458739ff932a7b9b", + "name": "theano", + "requires": [], + "size": 2278699, + "version": "0.6.0" + }, + "theano-0.6.0-np18py26_0.tar.bz2": { + "build": "np18py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "2a3c1aab31624df9790a41bb0e84257f", + "name": "theano", + "requires": [], + "size": 2281818, + "version": "0.6.0" + }, + "theano-0.6.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "numpy 1.8*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "e5ed6b14b2537bafca08af4b010408bd", + "name": "theano", + "requires": [], + "size": 2278995, + "version": "0.6.0" + }, + "theano-0.6.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "9bd7cf7efc8a746318250f8720821d87", + "name": "theano", + "requires": [], + "size": 2281906, + "version": "0.6.0" + }, + "theano-0.6.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "abda4927a07ba2e679ca7e1bafe56cca", + "name": "theano", + "requires": [], + "size": 2279129, + "version": "0.6.0" + }, + "theano-0.7.0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "ec7dbd3c13e4ae7c04b39752835a8e24", + "name": "theano", + "requires": [], + "size": 2671762, + "version": "0.7.0" + }, + "theano-0.7.0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.4*", + "scipy" + ], + "license": "BSD", + "md5": "1d0ca6cda7b6a725504d929ec45932fc", + "name": "theano", + "requires": [], + "size": 2844622, + "version": "0.7.0" + }, + "theano-0.7.0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "python 3.5*", + "scipy" + ], + "license": "BSD", + "md5": "40dcb335892ae0a4992f70af99c84a0f", + "name": "theano", + "requires": [], + "size": 2834272, + "version": "0.7.0" + }, + "theano-0.7.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-04-11", + "depends": [ + "numpy 1.9*", + "python 2.6*", + "scipy" + ], + "license": "BSD", + "md5": "51e71050048622b9629b1b46174db6fa", + "name": "theano", + "requires": [], + "size": 2660678, + "version": "0.7.0" + }, + "theano-0.7.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-04-11", + "depends": [ + "numpy 1.9*", + "python 2.7*", + "scipy" + ], + "license": "BSD", + "md5": "0d404e91e197fd96e1f5c93931619698", + "name": "theano", + "requires": [], + "size": 2671781, + "version": "0.7.0" + }, + "theano-0.7.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-04-11", + "depends": [ + "numpy 1.9*", + "python 3.3*", + "scipy" + ], + "license": "BSD", + "md5": "91e131397645828244b6a3052775e27b", + "name": "theano", + "requires": [], + "size": 2859415, + "version": "0.7.0" + }, + "theano-0.7.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-04-11", + "depends": [ + "numpy 1.9*", + "python 3.4*", + "scipy" + ], + "license": "BSD", + "md5": "545d47ea4e1a51c1018fa22acbe19794", + "name": "theano", + "requires": [], + "size": 2844834, + "version": "0.7.0" + }, + "theano-0.7.0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "python 3.5*", + "scipy" + ], + "license": "BSD", + "md5": "afe9241efe296f252acf8c94deeae5b5", + "name": "theano", + "requires": [], + "size": 2834655, + "version": "0.7.0" + }, + "thinc-1.74-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 2.6*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "a58152e4e0ff50a38f8c40d1e6e224aa", + "name": "thinc", + "requires": [], + "size": 355415, + "version": "1.74" + }, + "thinc-1.74-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 2.7*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "7108e5ce64db544a5f73d107a09eeb3d", + "name": "thinc", + "requires": [], + "size": 355148, + "version": "1.74" + }, + "thinc-1.74-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 3.3*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "a77b751da09f422f30240aa71d5e120f", + "name": "thinc", + "requires": [], + "size": 363395, + "version": "1.74" + }, + "thinc-1.74-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 3.4*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "8727c2e87a8f4a4169230364ab42a0e7", + "name": "thinc", + "requires": [], + "size": 388494, + "version": "1.74" + }, + "thinc-1.75-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 2.6*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "9207556245781decc9c5ba4efd3a5c7b", + "name": "thinc", + "requires": [], + "size": 355642, + "version": "1.75" + }, + "thinc-1.75-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 2.7*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "1fc37a10a58c993d3046ea189e71b396", + "name": "thinc", + "requires": [], + "size": 355303, + "version": "1.75" + }, + "thinc-1.75-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 3.3*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "b8a95df28b33d47b4c740528a8428992", + "name": "thinc", + "requires": [], + "size": 363435, + "version": "1.75" + }, + "thinc-1.75-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 3.4*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "1782cc9c2ca57ea6cbb1fe5a95229723", + "name": "thinc", + "requires": [], + "size": 387750, + "version": "1.75" + }, + "thinc-1.76-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 2.6*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "3000e9d04755ba6d01155202c2aa0a14", + "name": "thinc", + "requires": [], + "size": 354764, + "version": "1.76" + }, + "thinc-1.76-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 2.7*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "497330b3cbdb5b8840c75ee151c2bb7d", + "name": "thinc", + "requires": [], + "size": 354427, + "version": "1.76" + }, + "thinc-1.76-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 3.3*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "642aefeec2fc6cc45ea2562104b83b98", + "name": "thinc", + "requires": [], + "size": 362885, + "version": "1.76" + }, + "thinc-1.76-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-19", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 3.4*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "967013b884ff0bb836dcf87669b00831", + "name": "thinc", + "requires": [], + "size": 387865, + "version": "1.76" + }, + "thinc-3.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-01", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 2.6*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "40b9adfc4a270de2b735527cc162af72", + "name": "thinc", + "requires": [], + "size": 819754, + "version": "3.2" + }, + "thinc-3.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-01", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 2.7*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "579493cb464e2f965028d8a96593199b", + "name": "thinc", + "requires": [], + "size": 819793, + "version": "3.2" + }, + "thinc-3.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-01", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 3.3*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "677fc2d53f6010774040fcec111af4ef", + "name": "thinc", + "requires": [], + "size": 842346, + "version": "3.2" + }, + "thinc-3.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-01", + "depends": [ + "murmurhash 0.24", + "preshed 0.37", + "python 3.4*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "95f6650f4fd60e077e22b7d6a8ea7a5e", + "name": "thinc", + "requires": [], + "size": 905892, + "version": "3.2" + }, + "thinc-3.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "murmurhash 0.24", + "preshed 0.41", + "python 2.6*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "d20d0cef9ee824e494ddb19e4e7515b9", + "name": "thinc", + "requires": [], + "size": 819415, + "version": "3.3" + }, + "thinc-3.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "murmurhash 0.24", + "preshed 0.41", + "python 2.7*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "6fa49b3db86b536be923afcf1acd5efc", + "name": "thinc", + "requires": [], + "size": 818134, + "version": "3.3" + }, + "thinc-3.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "murmurhash 0.24", + "preshed 0.41", + "python 3.3*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "37d6b9f38d34916d5f279a331030f196", + "name": "thinc", + "requires": [], + "size": 841159, + "version": "3.3" + }, + "thinc-3.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "murmurhash 0.24", + "preshed 0.41", + "python 3.4*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "c2c36ff996e7cc70d93c7a3c6cbf6454", + "name": "thinc", + "requires": [], + "size": 905327, + "version": "3.3" + }, + "thinc-3.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "murmurhash 0.24", + "preshed 0.41", + "python 3.5*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "4ef639e230d11e9a4b4b308a0cb54108", + "name": "thinc", + "requires": [], + "size": 884600, + "version": "3.3" + }, + "thinc-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "murmurhash 0.24", + "preshed 0.44", + "python 2.7*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "b968c00abb7e4f0b6b5b88b2b5582112", + "name": "thinc", + "requires": [], + "size": 1115686, + "version": "4.0.0" + }, + "thinc-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "murmurhash 0.24", + "preshed 0.44", + "python 3.4*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "bb004c6a33d0ec8ec1caf3a951cfd8f5", + "name": "thinc", + "requires": [], + "size": 1258805, + "version": "4.0.0" + }, + "thinc-4.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "murmurhash 0.24", + "preshed 0.44", + "python 3.5*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "c5605e051bbd6134fbbf3c67f6bfde2b", + "name": "thinc", + "requires": [], + "size": 1230029, + "version": "4.0.0" + }, + "thinc-5.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "cymem >=1.30,<1.32", + "murmurhash >=0.26,<0.27", + "numpy", + "preshed >=0.46,<0.47", + "python 2.7*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "0bf3b5ace4b104482df417e6bef123b7", + "name": "thinc", + "requires": [], + "size": 1117570, + "version": "5.0.2" + }, + "thinc-5.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "cymem >=1.30,<1.32", + "murmurhash >=0.26,<0.27", + "numpy", + "preshed >=0.46,<0.47", + "python 3.4*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "bf3231f1956450480bc00f7da1bd9c5f", + "name": "thinc", + "requires": [], + "size": 1232725, + "version": "5.0.2" + }, + "thinc-5.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-05", + "depends": [ + "cymem >=1.30,<1.32", + "murmurhash >=0.26,<0.27", + "numpy", + "preshed >=0.46,<0.47", + "python 3.5*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "04b4d7cf7bffeb44ef3d3aff83b59973", + "name": "thinc", + "requires": [], + "size": 1190586, + "version": "5.0.2" + }, + "thinc-5.0.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "cymem >=1.30,<1.32", + "murmurhash >=0.26,<0.27", + "numpy", + "preshed >=0.46,<0.47", + "python 2.7*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "5870718acf29444e1d025dd9e9794323", + "name": "thinc", + "requires": [], + "size": 1256632, + "version": "5.0.6" + }, + "thinc-5.0.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-20", + "depends": [ + "cymem >=1.30,<1.32", + "murmurhash >=0.26,<0.27", + "numpy", + "preshed >=0.46,<0.47", + "python 3.4*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "13b12253aa9287fd920b07d548f15f6b", + "name": "thinc", + "requires": [], + "size": 1384613, + "version": "5.0.6" + }, + "thinc-5.0.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "cymem >=1.30,<1.32", + "murmurhash >=0.26,<0.27", + "numpy", + "preshed >=0.46,<0.47", + "python 3.5*" + ], + "license": "Commercial, GPLv2", + "license_family": "GPL2", + "md5": "191daeccbb685accc514d3d3ff818e17", + "name": "thinc", + "requires": [], + "size": 1341697, + "version": "5.0.6" + }, + "tk-8.5.13-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD-like", + "license_family": "BSD", + "md5": "912f2af91cfa2bba96c2c9fb99ac05c7", + "name": "tk", + "requires": [], + "size": 1912141, + "version": "8.5.13" + }, + "tk-8.5.15-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "BSD-like", + "license_family": "BSD", + "md5": "84584b8d7e7070ed52ee20cbf4197915", + "name": "tk", + "requires": [], + "size": 1926853, + "version": "8.5.15" + }, + "tk-8.5.18-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-03-16", + "depends": [], + "license": "BSD-like", + "license_family": "BSD", + "md5": "902f0fd689a01a835c9e69aefbe58fdd", + "name": "tk", + "requires": [], + "size": 1960193, + "version": "8.5.18" + }, + "toolz-0.6.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "6d73a60949517a20bbb443ceb81de296", + "name": "toolz", + "requires": [], + "size": 22935, + "version": "0.6.0" + }, + "toolz-0.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b8d9d620e02bcc0411f6fba98fd794c9", + "name": "toolz", + "requires": [], + "size": 22917, + "version": "0.6.0" + }, + "toolz-0.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "ae1839c7b051e538cd06797666ebdb32", + "name": "toolz", + "requires": [], + "size": 23214, + "version": "0.6.0" + }, + "toolz-0.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "55e6efe3e05bcd68823e6b8185f2737f", + "name": "toolz", + "requires": [], + "size": 23331, + "version": "0.6.0" + }, + "toolz-0.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "f00083ee91b50ad7542ce64f7882797d", + "name": "toolz", + "requires": [], + "size": 27443, + "version": "0.7.0" + }, + "toolz-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "775b738e91c4e88ee92bfb8222c06381", + "name": "toolz", + "requires": [], + "size": 27438, + "version": "0.7.0" + }, + "toolz-0.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7fadf1261d2f48f57111994b18b1ef29", + "name": "toolz", + "requires": [], + "size": 27784, + "version": "0.7.0" + }, + "toolz-0.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "129170accdb0a316de4ea64209f99a0e", + "name": "toolz", + "requires": [], + "size": 27930, + "version": "0.7.0" + }, + "toolz-0.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "85e432e3a4cef24b89723c2fe40636db", + "name": "toolz", + "requires": [], + "size": 28252, + "version": "0.7.1" + }, + "toolz-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "67594129b123f03938751fc3f5569598", + "name": "toolz", + "requires": [], + "size": 28258, + "version": "0.7.1" + }, + "toolz-0.7.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7ab387a7c4edf1f70bd0c02f6557393f", + "name": "toolz", + "requires": [], + "size": 28606, + "version": "0.7.1" + }, + "toolz-0.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "c49d354888d7ad6f4ab02f8fd7de6251", + "name": "toolz", + "requires": [], + "size": 28696, + "version": "0.7.1" + }, + "toolz-0.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "9723fe3f46486c36918737a4a8546813", + "name": "toolz", + "requires": [], + "size": 48927, + "version": "0.7.2" + }, + "toolz-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4657a45d571cc1799f766bce73b0cdd8", + "name": "toolz", + "requires": [], + "size": 49565, + "version": "0.7.2" + }, + "toolz-0.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "39a16acbd18d5dec4687bfaf73bcd1e8", + "name": "toolz", + "requires": [], + "size": 51012, + "version": "0.7.2" + }, + "toolz-0.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-12", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e3c096e80165290ae562aff1b2f01eb4", + "name": "toolz", + "requires": [], + "size": 51156, + "version": "0.7.2" + }, + "toolz-0.7.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-11", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e902c3bf017dc35175e8aa2db49375f6", + "name": "toolz", + "requires": [], + "size": 52583, + "version": "0.7.4" + }, + "toolz-0.7.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-11", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "88e13842d528982f2d3eea69906a02d5", + "name": "toolz", + "requires": [], + "size": 54242, + "version": "0.7.4" + }, + "toolz-0.7.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "60e0074db79f2592b1be79a86480fbf3", + "name": "toolz", + "requires": [], + "size": 54013, + "version": "0.7.4" + }, + "tornado-2.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "2ba48931e60823e98995dd341e094573", + "name": "tornado", + "requires": [], + "size": 390148, + "version": "2.3" + }, + "tornado-2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "2d95a800473dd2d2b3092f815f4be7f2", + "name": "tornado", + "requires": [], + "size": 390291, + "version": "2.3" + }, + "tornado-2.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "96800d2edefec01a6b75b73e5c695208", + "name": "tornado", + "requires": [], + "size": 246306, + "version": "2.3" + }, + "tornado-2.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "b3f860eb82ec478874d870ab8b4614ad", + "name": "tornado", + "requires": [], + "size": 401144, + "version": "2.4.1" + }, + "tornado-2.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "023bc7500758861d2ea07337e4227140", + "name": "tornado", + "requires": [], + "size": 401152, + "version": "2.4.1" + }, + "tornado-2.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "6fd5cd61e38de90fd3967802305c7cbc", + "name": "tornado", + "requires": [], + "size": 430040, + "version": "2.4.1" + }, + "tornado-3.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "86d73392154b677541874f31ca105080", + "name": "tornado", + "requires": [], + "size": 477105, + "version": "3.0.1" + }, + "tornado-3.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "5c07cc54faa6c18f07f5409ae59bf917", + "name": "tornado", + "requires": [], + "size": 477625, + "version": "3.0.1" + }, + "tornado-3.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "15740e088aeeeaf8f954b1d41f78418e", + "name": "tornado", + "requires": [], + "size": 525693, + "version": "3.0.1" + }, + "tornado-3.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "c822c31d62d5b98078248281a0a9b39d", + "name": "tornado", + "requires": [], + "size": 477280, + "version": "3.0.2" + }, + "tornado-3.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "ecd40570b7d8c05b0b7d48ac7db39188", + "name": "tornado", + "requires": [], + "size": 477671, + "version": "3.0.2" + }, + "tornado-3.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "5d1dd8743fa3f56e9205c106147288e4", + "name": "tornado", + "requires": [], + "size": 526013, + "version": "3.0.2" + }, + "tornado-3.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "d0188a38836f8ddb75c0c68944f48667", + "name": "tornado", + "requires": [], + "size": 507252, + "version": "3.1" + }, + "tornado-3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "54192d4d94e311e2ccb5e5173a8d5532", + "name": "tornado", + "requires": [], + "size": 506796, + "version": "3.1" + }, + "tornado-3.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "866ede3677fe90bbea62d3d54abd2a27", + "name": "tornado", + "requires": [], + "size": 555756, + "version": "3.1" + }, + "tornado-3.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "Apache", + "md5": "c12c981434bc65378cd23f0df9826bbd", + "name": "tornado", + "requires": [], + "size": 507125, + "version": "3.1.1" + }, + "tornado-3.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "d04ce89a419f7b7d81b984b49b556462", + "name": "tornado", + "requires": [], + "size": 506968, + "version": "3.1.1" + }, + "tornado-3.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "3211780c9eeade99a81849855616a979", + "name": "tornado", + "requires": [], + "size": 556208, + "version": "3.1.1" + }, + "tornado-3.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "a6276ca42f49dc89080a2d08af93f7f7", + "name": "tornado", + "requires": [], + "size": 543723, + "version": "3.2.0" + }, + "tornado-3.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "1d4350c78c9e02c40c2ee58a20208c7c", + "name": "tornado", + "requires": [], + "size": 543544, + "version": "3.2.0" + }, + "tornado-3.2.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "cc95f3e55e08117d3e11c657afab6e89", + "name": "tornado", + "requires": [], + "size": 595391, + "version": "3.2.0" + }, + "tornado-3.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "dd942c2d1ea81017331bb77221cdbf78", + "name": "tornado", + "requires": [], + "size": 582718, + "version": "3.2.0" + }, + "tornado-3.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "6a22c1362c64a00ea5628855b9fafffb", + "name": "tornado", + "requires": [], + "size": 547247, + "version": "3.2.1" + }, + "tornado-3.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "b4f0e308b517ca95731f38dceb606a23", + "name": "tornado", + "requires": [], + "size": 546850, + "version": "3.2.1" + }, + "tornado-3.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "ba9474850f9ac23a081e6f73b58db07d", + "name": "tornado", + "requires": [], + "size": 599255, + "version": "3.2.1" + }, + "tornado-3.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "8e76ea3934719cd6e679dbee23a1a0ed", + "name": "tornado", + "requires": [], + "size": 587274, + "version": "3.2.1" + }, + "tornado-3.2.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "3a4e900ed363d90658055b1bd16bdc53", + "name": "tornado", + "requires": [], + "size": 550753, + "version": "3.2.2" + }, + "tornado-3.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "80a6e6461dddd3c25e318fd293f8f3db", + "name": "tornado", + "requires": [], + "size": 550179, + "version": "3.2.2" + }, + "tornado-3.2.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "f190d06205bcff75224828cb640ef404", + "name": "tornado", + "requires": [], + "size": 601598, + "version": "3.2.2" + }, + "tornado-3.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "06e5f9ec63a9d5a4893040670720a4d7", + "name": "tornado", + "requires": [], + "size": 591356, + "version": "3.2.2" + }, + "tornado-4.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "f3c63eacc666b044d4dd8b4ca28aed40", + "name": "tornado", + "requires": [], + "size": 466902, + "version": "4.0.1" + }, + "tornado-4.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "47268512a501c67d1f6d6ecd84dd9e98", + "name": "tornado", + "requires": [], + "size": 465309, + "version": "4.0.1" + }, + "tornado-4.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "7e8719a747e7599b5ed6cc24d1a3960d", + "name": "tornado", + "requires": [], + "size": 522989, + "version": "4.0.1" + }, + "tornado-4.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "dc5b7e2dc68269ac54a11061eb154f28", + "name": "tornado", + "requires": [], + "size": 502822, + "version": "4.0.1" + }, + "tornado-4.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "python 2.6*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "197e7708e173a66b776eeb2362c345d6", + "name": "tornado", + "requires": [], + "size": 468276, + "version": "4.0.2" + }, + "tornado-4.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "a799687832890ef44a8a31e1fa00ee22", + "name": "tornado", + "requires": [], + "size": 467382, + "version": "4.0.2" + }, + "tornado-4.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "725aee66a506d6d43ca5e5f48e924ec4", + "name": "tornado", + "requires": [], + "size": 524520, + "version": "4.0.2" + }, + "tornado-4.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-12", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "687a2c50dee0604bf67687295a5533a9", + "name": "tornado", + "requires": [], + "size": 504550, + "version": "4.0.2" + }, + "tornado-4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "python 2.6*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "558dba71ca2c374ef8f84658a4feaa76", + "name": "tornado", + "requires": [], + "size": 493881, + "version": "4.1" + }, + "tornado-4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "2861e5fcbff4c8dc81361ce2edb882ea", + "name": "tornado", + "requires": [], + "size": 493152, + "version": "4.1" + }, + "tornado-4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "python 3.3*" + ], + "license": "Apache", + "md5": "bc85f13d8ec5da00ca210bccde9f3d88", + "name": "tornado", + "requires": [], + "size": 555433, + "version": "4.1" + }, + "tornado-4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-09", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "fccb00439cf21664fc13937eadbde0bb", + "name": "tornado", + "requires": [], + "size": 531058, + "version": "4.1" + }, + "tornado-4.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "certifi", + "python 2.6*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "00df04aa08c910bf88610dcd3e694d31", + "name": "tornado", + "requires": [], + "size": 536341, + "version": "4.2" + }, + "tornado-4.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "certifi", + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "96b676ac74b5c084e757dfd5f99fe083", + "name": "tornado", + "requires": [], + "size": 534842, + "version": "4.2" + }, + "tornado-4.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "certifi", + "python 3.3*" + ], + "license": "Apache", + "md5": "4ecd87ac111367d514ba1d8ba81d8021", + "name": "tornado", + "requires": [], + "size": 591173, + "version": "4.2" + }, + "tornado-4.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "certifi", + "python 3.4*" + ], + "license": "Apache", + "md5": "9ac461c579ec262d19a5b1ee3dfb215d", + "name": "tornado", + "requires": [], + "size": 570311, + "version": "4.2" + }, + "tornado-4.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "certifi", + "python 2.6*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "50727a1d311a37a89bfc18fd20ee0ab8", + "name": "tornado", + "requires": [], + "size": 536344, + "version": "4.2.1" + }, + "tornado-4.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "certifi", + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "b1d617b6e4bbcce99be613418fe8bd5c", + "name": "tornado", + "requires": [], + "size": 535251, + "version": "4.2.1" + }, + "tornado-4.2.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-10-28", + "depends": [ + "python 2.7*", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "0899b95e1134247390d8a794e65008a9", + "name": "tornado", + "requires": [], + "size": 535166, + "version": "4.2.1" + }, + "tornado-4.2.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "certifi", + "python 3.3*" + ], + "license": "Apache", + "md5": "598d751b47d7a13b7fd0bd79d44ee14b", + "name": "tornado", + "requires": [], + "size": 591115, + "version": "4.2.1" + }, + "tornado-4.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "certifi", + "python 3.4*" + ], + "license": "Apache", + "md5": "bbf29aeb80236939f340ea0cd2d4d6ec", + "name": "tornado", + "requires": [], + "size": 570398, + "version": "4.2.1" + }, + "tornado-4.2.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-10-28", + "depends": [ + "python 3.4*" + ], + "license": "Apache", + "md5": "71a48ddd48f2bf8ba3c7423f911cd970", + "name": "tornado", + "requires": [], + "size": 570305, + "version": "4.2.1" + }, + "tornado-4.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "certifi", + "python 3.5*" + ], + "license": "Apache", + "md5": "01f1244de5790af703cc53d73d3e127f", + "name": "tornado", + "requires": [], + "size": 569107, + "version": "4.2.1" + }, + "tornado-4.2.1-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-10-28", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "46da1d9252f5d10fff128f2e53a95574", + "name": "tornado", + "requires": [], + "size": 568820, + "version": "4.2.1" + }, + "tornado-4.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "backports_abc 0.4", + "python 2.7*", + "singledispatch 3.4.0.3", + "ssl_match_hostname 3.4.0.2" + ], + "license": "Apache", + "md5": "1420acc17778e628fbf0b0f8bbbe0130", + "name": "tornado", + "requires": [], + "size": 560973, + "version": "4.3" + }, + "tornado-4.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "backports_abc 0.4", + "python 3.4*" + ], + "license": "Apache", + "md5": "f7f8779842d52ea8e1f94cda23d6a006", + "name": "tornado", + "requires": [], + "size": 599666, + "version": "4.3" + }, + "tornado-4.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-24", + "depends": [ + "python 3.5*" + ], + "license": "Apache", + "md5": "d00f3407ed4f7a83c7c9b6b9cc7c4a0a", + "name": "tornado", + "requires": [], + "size": 597919, + "version": "4.3" + }, + "traitlets-4.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "decorator", + "ipython_genutils 0.1.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "42d7ec128bf2734db55d9b21fe49b2d1", + "name": "traitlets", + "requires": [], + "size": 90601, + "version": "4.0.0" + }, + "traitlets-4.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "decorator", + "ipython_genutils 0.1.0", + "python 3.4*" + ], + "license": "BSD", + "md5": "be7006603f61050b20a9aad1cc7e6c9b", + "name": "traitlets", + "requires": [], + "size": 94842, + "version": "4.0.0" + }, + "traitlets-4.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "decorator", + "ipython_genutils 0.1.0", + "python 3.5*" + ], + "license": "BSD", + "md5": "36dafb952c5aac4a90a58c1390d69d9b", + "name": "traitlets", + "requires": [], + "size": 94494, + "version": "4.0.0" + }, + "traitlets-4.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "decorator", + "ipython_genutils", + "python 2.7*" + ], + "license": "BSD", + "md5": "aba6f58bae8bed6f7804ee8f1a91ee9d", + "name": "traitlets", + "requires": [], + "size": 106144, + "version": "4.1.0" + }, + "traitlets-4.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "decorator", + "ipython_genutils", + "python 3.4*" + ], + "license": "BSD", + "md5": "ff17dfe23a90e08f74e84731b4cc9eac", + "name": "traitlets", + "requires": [], + "size": 111281, + "version": "4.1.0" + }, + "traitlets-4.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "decorator", + "ipython_genutils", + "python 3.5*" + ], + "license": "BSD", + "md5": "fe8e7cd66511e600eb88256cebe5ab63", + "name": "traitlets", + "requires": [], + "size": 110871, + "version": "4.1.0" + }, + "traitlets-4.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "decorator", + "ipython_genutils", + "python 2.7*" + ], + "license": "BSD", + "md5": "01baec7dce482f6390e39bef77242015", + "name": "traitlets", + "requires": [], + "size": 110186, + "version": "4.2.1" + }, + "traitlets-4.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "decorator", + "ipython_genutils", + "python 3.4*" + ], + "license": "BSD", + "md5": "8d32fc8750401baa00692239259ff4f0", + "name": "traitlets", + "requires": [], + "size": 115515, + "version": "4.2.1" + }, + "traitlets-4.2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-21", + "depends": [ + "decorator", + "ipython_genutils", + "python 3.5*" + ], + "license": "BSD", + "md5": "e2dd98a0cc42fae6ba054e3587718358", + "name": "traitlets", + "requires": [], + "size": 115141, + "version": "4.2.1" + }, + "traits-4.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "297fa69f280be93b7fb713cf00a1f341", + "name": "traits", + "requires": [], + "size": 489436, + "version": "4.3.0" + }, + "traits-4.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0745787c99aeaf13bbe0f2a5c6d5f3d2", + "name": "traits", + "requires": [], + "size": 490450, + "version": "4.3.0" + }, + "traits-4.4.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "6b1dd0ba29aef365ca84ea40039910a0", + "name": "traits", + "requires": [], + "size": 430980, + "version": "4.4.0" + }, + "traits-4.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e625f4006329b9e5ac715a2b1894eb5e", + "name": "traits", + "requires": [], + "size": 431212, + "version": "4.4.0" + }, + "traits-4.5.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "8729894cfe5cae86d1424f520aa7df32", + "name": "traits", + "requires": [], + "size": 432698, + "version": "4.5.0" + }, + "traits-4.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-10", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f8f8bf2bee0b45c7440a7bbcdd270f83", + "name": "traits", + "requires": [], + "size": 433253, + "version": "4.5.0" + }, + "traitsui-4.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pyface 4.3.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "5d925ca5cb0921ebb946aa401c668ecf", + "name": "traitsui", + "requires": [], + "size": 840197, + "version": "4.3.0" + }, + "traitsui-4.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "pyface 4.4.0", + "python 2.7*" + ], + "license": "BSD", + "md5": "07e8855feab5627a69c42af24fcd3906", + "name": "traitsui", + "requires": [], + "size": 856733, + "version": "4.4.0" + }, + "traitsui-4.5.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-02", + "depends": [ + "pyface 4.5.2", + "python 2.7*" + ], + "license": "BSD", + "md5": "6acebfe1cf3aaa144e68df122527d97d", + "name": "traitsui", + "requires": [], + "size": 868543, + "version": "4.5.1" + }, + "transaction-1.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-06", + "depends": [ + "python 2.7*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "6a9350a338272ccfd7bf6c87be0183d9", + "name": "transaction", + "requires": [], + "size": 58319, + "version": "1.4.4" + }, + "transaction-1.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-06", + "depends": [ + "python 3.4*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "daf63c374e350d5aa57edab1e03e0444", + "name": "transaction", + "requires": [], + "size": 61560, + "version": "1.4.4" + }, + "transaction-1.4.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "21dd6187202b8768cbb9688632f6b02b", + "name": "transaction", + "requires": [], + "size": 61499, + "version": "1.4.4" + }, + "translationstring-1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "f64e585a24eb4b625bff3045e0770f53", + "name": "translationstring", + "requires": [], + "size": 17747, + "version": "1.1" + }, + "translationstring-1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "403a370e03aa57dd3a376faf908081a4", + "name": "translationstring", + "requires": [], + "size": 17685, + "version": "1.1" + }, + "translationstring-1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "4a33529f1f326568e9fc62c0498e2988", + "name": "translationstring", + "requires": [], + "size": 18383, + "version": "1.1" + }, + "translationstring-1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-24", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "60c42493ae80caa39176394c63a12fb1", + "name": "translationstring", + "requires": [], + "size": 18346, + "version": "1.1" + }, + "translationstring-1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c7cc423ba33526c0ba47042f16d0edd8", + "name": "translationstring", + "requires": [], + "size": 18256, + "version": "1.2" + }, + "translationstring-1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "6d5cd106ae0b7747b6c4d48dfb3a26eb", + "name": "translationstring", + "requires": [], + "size": 18269, + "version": "1.2" + }, + "translationstring-1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "376d110c86eff8124b5f37f6551e5041", + "name": "translationstring", + "requires": [], + "size": 18983, + "version": "1.2" + }, + "translationstring-1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b3b60ecebaa764aa59f71cef56cb205a", + "name": "translationstring", + "requires": [], + "size": 18991, + "version": "1.2" + }, + "translationstring-1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "2fdf29e7f8cf1b6909edebca64c080b6", + "name": "translationstring", + "requires": [], + "size": 18366, + "version": "1.3" + }, + "translationstring-1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f7c46294d6b9a7835af0414aa061335e", + "name": "translationstring", + "requires": [], + "size": 18354, + "version": "1.3" + }, + "translationstring-1.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f9e96b9ed9cdc1f83283bad908dd9200", + "name": "translationstring", + "requires": [], + "size": 19094, + "version": "1.3" + }, + "translationstring-1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8bf062120feaf37ba16cfeb8e1dcc801", + "name": "translationstring", + "requires": [], + "size": 19047, + "version": "1.3" + }, + "translationstring-1.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "b818e854aba7cb39797b10ed959734d6", + "name": "translationstring", + "requires": [], + "size": 19011, + "version": "1.3" + }, + "trollius-2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "futures", + "python 2.7*", + "six" + ], + "license": "Apache", + "md5": "e49ea5ef733611878a7d530386e856ce", + "name": "trollius", + "requires": [], + "size": 168708, + "version": "2.1" + }, + "trollius-2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.4*", + "six" + ], + "license": "Apache", + "md5": "3fbf98d4c0eb026d54bd744ef5b4cb62", + "name": "trollius", + "requires": [], + "size": 171436, + "version": "2.1" + }, + "trollius-2.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "python 3.5*", + "six" + ], + "license": "Apache", + "md5": "972feebd104062b8b92175bfb9bf58da", + "name": "trollius", + "requires": [], + "size": 170608, + "version": "2.1" + }, + "twisted-12.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zope.interface 4.0.5" + ], + "license": "MIT", + "md5": "e502d14bfaa058874197b4f17c513fad", + "name": "twisted", + "requires": [], + "size": 4064909, + "version": "12.3.0" + }, + "twisted-12.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zope.interface 4.0.5" + ], + "license": "MIT", + "md5": "c6493b1bf6f5d480186983290aff419a", + "name": "twisted", + "requires": [], + "size": 4048888, + "version": "12.3.0" + }, + "twisted-13.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zope.interface 4.0.5" + ], + "license": "MIT", + "md5": "ce6cd11d403df1a0f73f6334f9589706", + "name": "twisted", + "requires": [], + "size": 4074771, + "version": "13.0.0" + }, + "twisted-13.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zope.interface 4.0.5" + ], + "license": "MIT", + "md5": "d7da3b5b2e98dc172bc1c40966fadb88", + "name": "twisted", + "requires": [], + "size": 4064830, + "version": "13.0.0" + }, + "twisted-13.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zope.interface 4.0.5" + ], + "license": "MIT", + "md5": "b293472d9a2ca663a21adb5eb55b2bd2", + "name": "twisted", + "requires": [], + "size": 4126065, + "version": "13.1.0" + }, + "twisted-13.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zope.interface 4.0.5" + ], + "license": "MIT", + "md5": "0c928b02a82ae265369f975f09fe595d", + "name": "twisted", + "requires": [], + "size": 4114504, + "version": "13.1.0" + }, + "twisted-13.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zope.interface 4.0.5" + ], + "license": "MIT", + "md5": "5b65e82944befa5391019bdded99a8b8", + "name": "twisted", + "requires": [], + "size": 4216808, + "version": "13.2.0" + }, + "twisted-13.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zope.interface 4.0.5" + ], + "license": "MIT", + "md5": "9981bb5a0fd0ed8d85b0ed7691019404", + "name": "twisted", + "requires": [], + "size": 4200033, + "version": "13.2.0" + }, + "twisted-14.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "zope.interface 4.1.1" + ], + "license": "MIT", + "md5": "288a747e22c8fadd3371a1b8122b5d4c", + "name": "twisted", + "requires": [], + "size": 4394657, + "version": "14.0.0" + }, + "twisted-14.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "zope.interface 4.1.1" + ], + "license": "MIT", + "md5": "ef84a3224fe40f368225e84fd76c3e7b", + "name": "twisted", + "requires": [], + "size": 4382566, + "version": "14.0.0" + }, + "twisted-14.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "python 2.6*", + "zope.interface 4.1.1" + ], + "license": "MIT", + "md5": "ca7d51dca4b7d87d02fbf2f48a0edba7", + "name": "twisted", + "requires": [], + "size": 4397264, + "version": "14.0.2" + }, + "twisted-14.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-19", + "depends": [ + "python 2.7*", + "zope.interface 4.1.1" + ], + "license": "MIT", + "md5": "008f60f4ce362a021da598c6f7565889", + "name": "twisted", + "requires": [], + "size": 4386974, + "version": "14.0.2" + }, + "twisted-15.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-04", + "depends": [ + "python 2.6*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "a15f09a1059f5fefb7890d496bc2bf45", + "name": "twisted", + "requires": [], + "size": 4421977, + "version": "15.0.0" + }, + "twisted-15.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-04", + "depends": [ + "python 2.7*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "83134a6889960ee8a6baf6dd341b2ce5", + "name": "twisted", + "requires": [], + "size": 4412554, + "version": "15.0.0" + }, + "twisted-15.1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-15", + "depends": [ + "python 2.6*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "1edc596d13c650df35779efd3a9c2a00", + "name": "twisted", + "requires": [], + "size": 4428726, + "version": "15.1.0" + }, + "twisted-15.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-15", + "depends": [ + "python 2.7*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "b268dce470a6582a1631cf53a1c184d3", + "name": "twisted", + "requires": [], + "size": 4425079, + "version": "15.1.0" + }, + "twisted-15.2.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 2.6*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "8755d5816cdec2c7ea8a50507b42da0b", + "name": "twisted", + "requires": [], + "size": 4526402, + "version": "15.2.0" + }, + "twisted-15.2.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-19", + "depends": [ + "python 2.7*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "c40380548d501d8237d43d96d0e7c4bd", + "name": "twisted", + "requires": [], + "size": 4523242, + "version": "15.2.0" + }, + "twisted-15.2.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-20", + "depends": [ + "python 3.4*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "b9e1aa4c9749db402abc7a30ad2d232a", + "name": "twisted", + "requires": [], + "size": 1735495, + "version": "15.2.0" + }, + "twisted-15.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "python 2.6*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "1f8998cea19dc80243d86137f28f1020", + "name": "twisted", + "requires": [], + "size": 4527283, + "version": "15.2.1" + }, + "twisted-15.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "python 2.7*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "06334271c39b86363ccd36ee444f410f", + "name": "twisted", + "requires": [], + "size": 4522867, + "version": "15.2.1" + }, + "twisted-15.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-26", + "depends": [ + "python 3.4*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "511b8d2583e959c1f2437c462a906a75", + "name": "twisted", + "requires": [], + "size": 1734898, + "version": "15.2.1" + }, + "twisted-15.3.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 2.6*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "069e469543f656d01bb6ff8ca66dc103", + "name": "twisted", + "requires": [], + "size": 4440085, + "version": "15.3.0" + }, + "twisted-15.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 2.7*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "c21c18dcdef8910872450f23a97e05fd", + "name": "twisted", + "requires": [], + "size": 4438694, + "version": "15.3.0" + }, + "twisted-15.3.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-05", + "depends": [ + "python 3.4*", + "zope.interface 4.1.2" + ], + "license": "MIT", + "md5": "5e1b41fee64d4809f7149de7c7a9120d", + "name": "twisted", + "requires": [], + "size": 2145555, + "version": "15.3.0" + }, + "twisted-15.4.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-08", + "depends": [ + "python 2.7*", + "zope.interface" + ], + "license": "MIT", + "md5": "490258731ab9bce95d2089d103085e6e", + "name": "twisted", + "requires": [], + "size": 4462163, + "version": "15.4.0" + }, + "twisted-15.4.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-08", + "depends": [ + "python 3.4*", + "zope.interface" + ], + "license": "MIT", + "md5": "fca6ae934daa804d1b345e024b6faa6d", + "name": "twisted", + "requires": [], + "size": 2375203, + "version": "15.4.0" + }, + "twisted-15.4.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "zope.interface" + ], + "license": "MIT", + "md5": "cbe0b223cd2fa9a14ee3ba9c4bd5b3a6", + "name": "twisted", + "requires": [], + "size": 2371284, + "version": "15.4.0" + }, + "twisted-15.5.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "python 2.7*", + "zope.interface" + ], + "license": "MIT", + "md5": "04e9d81c154ff78d6bca87a1ad6398a3", + "name": "twisted", + "requires": [], + "size": 4509416, + "version": "15.5.0" + }, + "twisted-15.5.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "python 3.4*", + "zope.interface" + ], + "license": "MIT", + "md5": "562b48fbd009ca33bc4620b25241cb7a", + "name": "twisted", + "requires": [], + "size": 2519897, + "version": "15.5.0" + }, + "twisted-15.5.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-11", + "depends": [ + "python 3.5*", + "zope.interface" + ], + "license": "MIT", + "md5": "09087acabeddd612cbe534a8a7799ac7", + "name": "twisted", + "requires": [], + "size": 2514582, + "version": "15.5.0" + }, + "twisted-16.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "python 2.7*", + "zope.interface" + ], + "license": "MIT", + "md5": "67515c33ab91c72df23e3b92c028eb82", + "name": "twisted", + "requires": [], + "size": 4556683, + "version": "16.0.0" + }, + "twisted-16.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "python 3.4*", + "zope.interface" + ], + "license": "MIT", + "md5": "41bfb7b3b5a32430b37206cd55c5f9bc", + "name": "twisted", + "requires": [], + "size": 2696402, + "version": "16.0.0" + }, + "twisted-16.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-15", + "depends": [ + "python 3.5*", + "zope.interface" + ], + "license": "MIT", + "md5": "ed3c8fe14951516fc247c63c7bba0e60", + "name": "twisted", + "requires": [], + "size": 2690859, + "version": "16.0.0" + }, + "twisted-16.1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "python 2.7*", + "zope.interface" + ], + "license": "MIT", + "md5": "efe83744f0689603903aa4d583ed1624", + "name": "twisted", + "requires": [], + "size": 4481097, + "version": "16.1.0" + }, + "twisted-16.1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "python 3.4*", + "zope.interface" + ], + "license": "MIT", + "md5": "176b89aecc8ad8214e9c5d207879d529", + "name": "twisted", + "requires": [], + "size": 2704683, + "version": "16.1.0" + }, + "twisted-16.1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-04", + "depends": [ + "python 3.5*", + "zope.interface" + ], + "license": "MIT", + "md5": "f44febc158366f635082163fcdd9943d", + "name": "twisted", + "requires": [], + "size": 2698512, + "version": "16.1.0" + }, + "ujson-1.33-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "72159422dfb7a786a1fc3e179447343b", + "name": "ujson", + "requires": [], + "size": 48207, + "version": "1.33" + }, + "ujson-1.33-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "1485a4f7e12d1183d146789b1af5e914", + "name": "ujson", + "requires": [], + "size": 48249, + "version": "1.33" + }, + "ujson-1.33-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3ba006b20c9f0723202028b7b0ff3ebb", + "name": "ujson", + "requires": [], + "size": 48310, + "version": "1.33" + }, + "ujson-1.33-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3cb7d86eb38d9af19b19bdd5887d3b0f", + "name": "ujson", + "requires": [], + "size": 49314, + "version": "1.33" + }, + "ujson-1.33-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "0193726917d1e00fcca0cd77b16e8be1", + "name": "ujson", + "requires": [], + "size": 55408, + "version": "1.33" + }, + "ujson-1.35-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ae4ea3031132bb52554525b14850d5a4", + "name": "ujson", + "requires": [], + "size": 58098, + "version": "1.35" + }, + "ujson-1.35-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f672dcf7a497ed5b2dfc1b9e26e1964a", + "name": "ujson", + "requires": [], + "size": 60460, + "version": "1.35" + }, + "ujson-1.35-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-29", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "2c8da16e5880d52cabd7a0c288581e88", + "name": "ujson", + "requires": [], + "size": 60658, + "version": "1.35" + }, + "unicodecsv-0.13.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "642bf932e50ba33e527565eb160f8a7b", + "name": "unicodecsv", + "requires": [], + "size": 18373, + "version": "0.13.0" + }, + "unicodecsv-0.13.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-02", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "4c0ee4602c67613d7223f9ae97eb68c1", + "name": "unicodecsv", + "requires": [], + "size": 19467, + "version": "0.13.0" + }, + "unicodecsv-0.13.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "e67ad4120f54726e8ba1e05efa1581b4", + "name": "unicodecsv", + "requires": [], + "size": 19369, + "version": "0.13.0" + }, + "unicodecsv-0.14.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "17f5af29c443f26fa707b901aa54b8e6", + "name": "unicodecsv", + "requires": [], + "size": 19866, + "version": "0.14.1" + }, + "unicodecsv-0.14.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "99faba268e82759d59606b1add96a3e3", + "name": "unicodecsv", + "requires": [], + "size": 21083, + "version": "0.14.1" + }, + "unicodecsv-0.14.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-23", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "b39896b57c668a57f648cd57fc562ff3", + "name": "unicodecsv", + "requires": [], + "size": 20981, + "version": "0.14.1" + }, + "unicodecsv-0.9.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "d196ca5e4550f1e83fee02875d798451", + "name": "unicodecsv", + "requires": [], + "size": 18247, + "version": "0.9.4" + }, + "unicodecsv-0.9.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "fa311511b8a7fd4e1e1c68179c5a7b83", + "name": "unicodecsv", + "requires": [], + "size": 18117, + "version": "0.9.4" + }, + "unidecode-0.4.17-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.6*" + ], + "license": "GPL2", + "md5": "e23adc601ec3d03daffd0fc53ef6c838", + "name": "unidecode", + "requires": [], + "size": 219465, + "version": "0.4.17" + }, + "unidecode-0.4.17-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 2.7*" + ], + "license": "GPL2", + "md5": "99146bfe0e3dc59f85e655d0d3afbe28", + "name": "unidecode", + "requires": [], + "size": 220095, + "version": "0.4.17" + }, + "unidecode-0.4.17-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.3*" + ], + "license": "GPL2", + "md5": "2a4660de87c7a3ac7d155ad4222c4655", + "name": "unidecode", + "requires": [], + "size": 223900, + "version": "0.4.17" + }, + "unidecode-0.4.17-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-27", + "depends": [ + "python 3.4*" + ], + "license": "GPL2", + "md5": "5907fc75d60659f4093e55a6a024f3ef", + "name": "unidecode", + "requires": [], + "size": 207550, + "version": "0.4.17" + }, + "unidecode-0.4.17-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "GPL2", + "md5": "c9150e9c81851eabbbd4d822f486bbfd", + "name": "unidecode", + "requires": [], + "size": 207216, + "version": "0.4.17" + }, + "unittest2-0.5.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "d6cf7c32bcdd5856620cd9278cf7d795", + "name": "unittest2", + "requires": [], + "size": 101482, + "version": "0.5.1" + }, + "unittest2-0.8.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "argparse", + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "780958a6eb775ef35d306693ba3452ec", + "name": "unittest2", + "requires": [], + "size": 139190, + "version": "0.8.0" + }, + "unixodbc-2.3.1-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "LGPLv2", + "license_family": "LGPL", + "md5": "d8b5813bacd8468badbf9c665414c431", + "name": "unixodbc", + "requires": [], + "size": 689760, + "version": "2.3.1" + }, + "unixodbc-2.3.1-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [], + "license": "LGPLv2", + "license_family": "LGPL", + "md5": "0b2cbed283409d6a985178a32946ae81", + "name": "unixodbc", + "requires": [], + "size": 689260, + "version": "2.3.1" + }, + "unixodbc-2.3.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-09-21", + "depends": [], + "license": "LGPLv2", + "license_family": "LGPL", + "md5": "9b2fadd3dd9c9fac66f52b3bc184a119", + "name": "unixodbc", + "requires": [], + "size": 704829, + "version": "2.3.4" + }, + "util-linux-2.21-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "GPL2", + "md5": "abf1d09a4e0b14f68093f0ca33976e0e", + "name": "util-linux", + "requires": [], + "size": 35826, + "version": "2.21" + }, + "uuid-1.30-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 2.6*" + ], + "license": "PSF", + "md5": "2f0c046bc47dbbbfb0341ae7136f041d", + "name": "uuid", + "requires": [], + "size": 11471, + "version": "1.30" + }, + "uuid-1.30-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-16", + "depends": [ + "python 2.7*" + ], + "license": "PSF", + "md5": "abdc487a0e4413226ce8ae34169657a0", + "name": "uuid", + "requires": [], + "size": 11529, + "version": "1.30" + }, + "venusian-1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "2b9490cdde4a6cad926419248ff65d76", + "name": "venusian", + "requires": [], + "size": 36583, + "version": "1.0" + }, + "venusian-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "a79feb8c38182380a374e977b6e3be91", + "name": "venusian", + "requires": [], + "size": 36566, + "version": "1.0" + }, + "venusian-1.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "0d29a3b207d6fbc45c3a558616ef0d67", + "name": "venusian", + "requires": [], + "size": 37849, + "version": "1.0" + }, + "venusian-1.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8ef12663a7028861cc158929b903625e", + "name": "venusian", + "requires": [], + "size": 37829, + "version": "1.0" + }, + "venusian-1.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "65400f911e7134c1bea5a905473d11ca", + "name": "venusian", + "requires": [], + "size": 37964, + "version": "1.0" + }, + "vincent-0.4.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "pandas", + "python 2.7*" + ], + "license": "MIT", + "md5": "ec56a20950bb25cad3b60d84a26bcdba", + "name": "vincent", + "requires": [], + "size": 82217, + "version": "0.4.4" + }, + "vincent-0.4.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "pandas", + "python 3.4*" + ], + "license": "MIT", + "md5": "dd877faadfffbdcd66b06f1693004db7", + "name": "vincent", + "requires": [], + "size": 83903, + "version": "0.4.4" + }, + "vincent-0.4.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-11", + "depends": [ + "pandas", + "python 3.5*" + ], + "license": "MIT", + "md5": "4995ee061209bdcad08b942bac3fc357", + "name": "vincent", + "requires": [], + "size": 83754, + "version": "0.4.4" + }, + "virtualenv-1.11.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "585c3a66bc06c9e7da28d395621acb77", + "name": "virtualenv", + "requires": [], + "size": 1586457, + "version": "1.11.6" + }, + "virtualenv-1.11.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "e7899a952389ab531d851ddd3b1cb35e", + "name": "virtualenv", + "requires": [], + "size": 1586297, + "version": "1.11.6" + }, + "virtualenv-1.11.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "81bc7e3dd87ccf949c0eb0e6ddc59918", + "name": "virtualenv", + "requires": [], + "size": 1551181, + "version": "1.11.6" + }, + "virtualenv-1.11.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-29", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "2a4f36e3d775280edfa88ccef67f7483", + "name": "virtualenv", + "requires": [], + "size": 1551041, + "version": "1.11.6" + }, + "virtualenv-12.0.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "90178f17e8f03b579a9b11e9180a4173", + "name": "virtualenv", + "requires": [], + "size": 1804780, + "version": "12.0.5" + }, + "virtualenv-12.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "8c7874cfe7b71666d9c5521e9f1d1863", + "name": "virtualenv", + "requires": [], + "size": 1804612, + "version": "12.0.5" + }, + "virtualenv-12.0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "8ddfa582b2a594fc7a4f2394ab19e9bf", + "name": "virtualenv", + "requires": [], + "size": 1741483, + "version": "12.0.5" + }, + "virtualenv-12.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-20", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "19d284aeec4d0c727af55f009d72ab04", + "name": "virtualenv", + "requires": [], + "size": 1741644, + "version": "12.0.5" + }, + "virtualenv-12.0.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "d86b2bb6c22a56ed5fdf5e5aeb073c70", + "name": "virtualenv", + "requires": [], + "size": 1821322, + "version": "12.0.7" + }, + "virtualenv-12.0.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "b8a4d2fbec0eec9e23a9a625edaa3d8c", + "name": "virtualenv", + "requires": [], + "size": 1821345, + "version": "12.0.7" + }, + "virtualenv-12.0.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "5ffffbe16d01b56a031149d6e4bf69e4", + "name": "virtualenv", + "requires": [], + "size": 1753486, + "version": "12.0.7" + }, + "virtualenv-12.0.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-16", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "d71669f6edf2c3bacf5567a6e158a45c", + "name": "virtualenv", + "requires": [], + "size": 1753705, + "version": "12.0.7" + }, + "virtualenv-13.0.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "MIT", + "md5": "aa3424c0f12d4fd9487e246cf64179e3", + "name": "virtualenv", + "requires": [], + "size": 1699007, + "version": "13.0.1" + }, + "virtualenv-13.0.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "MIT", + "md5": "b12d53527a34b603469790c0c4448cc1", + "name": "virtualenv", + "requires": [], + "size": 1699015, + "version": "13.0.1" + }, + "virtualenv-13.0.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "MIT", + "md5": "0f5632b2e6ce6c7d7ae908122c857d19", + "name": "virtualenv", + "requires": [], + "size": 1662306, + "version": "13.0.1" + }, + "virtualenv-13.0.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-05-29", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "MIT", + "md5": "e19a973b3c9754be5eb41a186e9187e5", + "name": "virtualenv", + "requires": [], + "size": 1662165, + "version": "13.0.1" + }, + "virtualenv-13.0.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "MIT", + "md5": "bf552f3d758e33cf0d2abee71aef5dff", + "name": "virtualenv", + "requires": [], + "size": 1662404, + "version": "13.0.1" + }, + "vispy-0.4.0.106.gf8a69d0-np110py27_0.tar.bz2": { + "build": "np110py27_0", + "build_number": 0, + "date": "2015-10-06", + "depends": [ + "numpy 1.10*", + "pyopengl 3.1.1a1", + "pyqt", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "9bd47e6db72d098d3e1113043162366e", + "name": "vispy", + "requires": [], + "size": 1001036, + "version": "0.4.0.106.gf8a69d0" + }, + "vispy-0.4.0.106.gf8a69d0-np110py34_0.tar.bz2": { + "build": "np110py34_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "pyopengl 3.1.1a1", + "pyqt", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2a1f5222a7df671dd121a3db0744bb6b", + "name": "vispy", + "requires": [], + "size": 1034844, + "version": "0.4.0.106.gf8a69d0" + }, + "vispy-0.4.0.106.gf8a69d0-np110py35_0.tar.bz2": { + "build": "np110py35_0", + "build_number": 0, + "date": "2015-10-07", + "depends": [ + "numpy 1.10*", + "pyopengl 3.1.1a1", + "pyqt", + "python 3.5*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "93b4e4c386d6167e6bda67de6c5c2c21", + "name": "vispy", + "requires": [], + "size": 1031201, + "version": "0.4.0.106.gf8a69d0" + }, + "vispy-0.4.0.106.gf8a69d0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "numpy 1.9*", + "pyopengl 3.1.1a1", + "pyqt", + "python 2.6*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "cf6556c874f111e30dc01e5754b061ad", + "name": "vispy", + "requires": [], + "size": 1000880, + "version": "0.4.0.106.gf8a69d0" + }, + "vispy-0.4.0.106.gf8a69d0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "numpy 1.9*", + "pyopengl 3.1.1a1", + "pyqt", + "python 2.7*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "2185435cb2691c32440567f8e5d8f4eb", + "name": "vispy", + "requires": [], + "size": 1000881, + "version": "0.4.0.106.gf8a69d0" + }, + "vispy-0.4.0.106.gf8a69d0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "numpy 1.9*", + "pyopengl 3.1.1a1", + "pyqt", + "python 3.3*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "7f4075179d0bc47a73fc8cbf023a67c1", + "name": "vispy", + "requires": [], + "size": 1036072, + "version": "0.4.0.106.gf8a69d0" + }, + "vispy-0.4.0.106.gf8a69d0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-01", + "depends": [ + "numpy 1.9*", + "pyopengl 3.1.1a1", + "pyqt", + "python 3.4*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "f0edb51399f58f24e6824eac55976fb0", + "name": "vispy", + "requires": [], + "size": 1033551, + "version": "0.4.0.106.gf8a69d0" + }, + "vispy-0.4.0.106.gf8a69d0-np19py35_0.tar.bz2": { + "build": "np19py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "numpy 1.9*", + "pyopengl 3.1.1a1", + "pyqt", + "python 3.5*" + ], + "license": "3-clause BSD", + "license_family": "BSD", + "md5": "51fa2048eefbce92eea15d050e527637", + "name": "vispy", + "requires": [], + "size": 1032751, + "version": "0.4.0.106.gf8a69d0" + }, + "vtk-5.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "da1fcbaa9e8e0d0b01864bb96c3c3fbf", + "name": "vtk", + "requires": [], + "size": 96707977, + "version": "5.10.1" + }, + "vtk-5.10.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d205a9c1f97a443e1a2be4634718eb28", + "name": "vtk", + "requires": [], + "size": 96713801, + "version": "5.10.1" + }, + "vtk-6.3.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-01", + "depends": [ + "mesa", + "python 2.7*" + ], + "license": "BSD", + "md5": "3f4764f1d14bbd6a1679d58b41f505c8", + "name": "vtk", + "requires": [], + "size": 31238620, + "version": "6.3.0" + }, + "vtk-6.3.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-12-08", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d614e86cd01a4461915e8b8e3cd6ddbf", + "name": "vtk", + "requires": [], + "size": 31268036, + "version": "6.3.0" + }, + "w3lib-1.11.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "04d48e999e0b4b47bd3979bf77b646c6", + "name": "w3lib", + "requires": [], + "size": 19370, + "version": "1.11.0" + }, + "w3lib-1.11.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "92d9a85cef5c6ca57c5cc9a39ce69f8d", + "name": "w3lib", + "requires": [], + "size": 19719, + "version": "1.11.0" + }, + "w3lib-1.11.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-28", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "53c9d44d52b663e4bf5ae6c5390c42e3", + "name": "w3lib", + "requires": [], + "size": 19685, + "version": "1.11.0" + }, + "w3lib-1.12.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "e327ecf7223fed6a0717bbfbd04cea3c", + "name": "w3lib", + "requires": [], + "size": 19491, + "version": "1.12.0" + }, + "w3lib-1.12.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "b960964b52904a901674243f1919ce90", + "name": "w3lib", + "requires": [], + "size": 19759, + "version": "1.12.0" + }, + "w3lib-1.12.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-30", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "0409120f7bcb6b5eea386e961773b8ce", + "name": "w3lib", + "requires": [], + "size": 19761, + "version": "1.12.0" + }, + "w3lib-1.12.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "six" + ], + "license": "BSD", + "md5": "87eb1c2cfe1255597d1497785e27ad96", + "name": "w3lib", + "requires": [], + "size": 19713, + "version": "1.12.0" + }, + "w3lib-1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a1b755dafc02f7ec7c33653b06e76252", + "name": "w3lib", + "requires": [], + "size": 15273, + "version": "1.2" + }, + "w3lib-1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "1e1bc850d86d028a94a24945497627ef", + "name": "w3lib", + "requires": [], + "size": 15219, + "version": "1.2" + }, + "w3lib-1.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "f9f9d036d3b37cad4f983eb2960489cf", + "name": "w3lib", + "requires": [], + "size": 15279, + "version": "1.3" + }, + "w3lib-1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "aae116b33d6c42ec78b77e12de49bb53", + "name": "w3lib", + "requires": [], + "size": 15254, + "version": "1.3" + }, + "w3lib-1.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*", + "six" + ], + "license": "BSD", + "md5": "e3c081af5c3fb7930f13d34849d9fb71", + "name": "w3lib", + "requires": [], + "size": 16175, + "version": "1.5" + }, + "w3lib-1.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "83578af80976e322ffedd9b8db2e55ff", + "name": "w3lib", + "requires": [], + "size": 16139, + "version": "1.5" + }, + "w3lib-1.8.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "fa4ba70949426f289299f87ae04534b3", + "name": "w3lib", + "requires": [], + "size": 29843, + "version": "1.8.1" + }, + "w3lib-1.8.1-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.7*", + "six" + ], + "license": "BSD", + "md5": "f4bbfd3ae37b38bcbbb9617adca2035a", + "name": "w3lib", + "requires": [], + "size": 19672, + "version": "1.8.1" + }, + "w3lib-1.8.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "51d917ca2254d5e93ba5b6d511cf2e97", + "name": "w3lib", + "requires": [], + "size": 30295, + "version": "1.8.1" + }, + "w3lib-1.8.1-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.3*", + "six" + ], + "license": "BSD", + "md5": "e29be6ceb3fdb1dba0fade6de48683a0", + "name": "w3lib", + "requires": [], + "size": 19978, + "version": "1.8.1" + }, + "w3lib-1.8.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "6b50589bbc33dbd7f6969f82d5f24c59", + "name": "w3lib", + "requires": [], + "size": 29996, + "version": "1.8.1" + }, + "w3lib-1.8.1-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.4*", + "six" + ], + "license": "BSD", + "md5": "9ff338883fd3b6851575e4c761741f4f", + "name": "w3lib", + "requires": [], + "size": 19980, + "version": "1.8.1" + }, + "waitress-0.8.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "aefbc3ac438abc53a802c414d1b514c7", + "name": "waitress", + "requires": [], + "size": 145292, + "version": "0.8.9" + }, + "waitress-0.8.9-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "a54bafbe6e7faabaac6c290c633bef68", + "name": "waitress", + "requires": [], + "size": 150432, + "version": "0.8.9" + }, + "waitress-0.8.9-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "b2b9e7fe20e973c48c3d08489d8785df", + "name": "waitress", + "requires": [], + "size": 150259, + "version": "0.8.9" + }, + "wakaridata-1.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license_family": "Other", + "md5": "c1901e803173f021bf5de698130e2773", + "name": "wakaridata", + "requires": [], + "size": 14150, + "version": "1.0" + }, + "wakaridata-1.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "Other", + "md5": "854614bbaa046d334d7f9f5a088c0a2b", + "name": "wakaridata", + "requires": [], + "size": 14128, + "version": "1.0" + }, + "webob-1.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "b9d44e61dbeecd1bde82c687d4c62e2c", + "name": "webob", + "requires": [], + "size": 109598, + "version": "1.4" + }, + "webob-1.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "23c09bdd08486e0bd31e61a2411ab885", + "name": "webob", + "requires": [], + "size": 109712, + "version": "1.4" + }, + "webob-1.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "a955bbc9eaae398683f4a2ce359e8658", + "name": "webob", + "requires": [], + "size": 113050, + "version": "1.4" + }, + "webob-1.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "17ee06da293ee25e2afc884b9891039c", + "name": "webob", + "requires": [], + "size": 113548, + "version": "1.4" + }, + "webob-1.4.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "029e7d2d9f99e6c3bf46ac8aba179879", + "name": "webob", + "requires": [], + "size": 110368, + "version": "1.4.1" + }, + "webob-1.4.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "0e62dc240293eaaa13a337da5a4315d9", + "name": "webob", + "requires": [], + "size": 110428, + "version": "1.4.1" + }, + "webob-1.4.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "4c4a58dd740ce60999ab20a54d5c621d", + "name": "webob", + "requires": [], + "size": 113673, + "version": "1.4.1" + }, + "webob-1.4.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-29", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "6c40e5fd74c7a5f99876522a38af0ab5", + "name": "webob", + "requires": [], + "size": 114187, + "version": "1.4.1" + }, + "webob-1.4.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "cb6f0b867f72f249016a8ba499c00691", + "name": "webob", + "requires": [], + "size": 113687, + "version": "1.4.1" + }, + "websocket-0.2.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "gevent 1.0.1", + "greenlet 0.4*", + "python 2.6*" + ], + "license": "MIT", + "md5": "d2f904d22669b187f53b2eeeb8a2a1b9", + "name": "websocket", + "requires": [], + "size": 203058, + "version": "0.2.1" + }, + "websocket-0.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-12", + "depends": [ + "gevent 1.0.1", + "greenlet 0.4*", + "python 2.7*" + ], + "license": "MIT", + "md5": "bc4874251212be9b7c2c8704dfed5b78", + "name": "websocket", + "requires": [], + "size": 203080, + "version": "0.2.1" + }, + "webtest-2.0.18-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "beautiful-soup 4.3.2", + "python 2.7*", + "six", + "waitress 0.8.9", + "webob 1.4.1" + ], + "license": "MIT", + "md5": "467f05cc66e4019fbfff99c20ca8e595", + "name": "webtest", + "requires": [], + "size": 50210, + "version": "2.0.18" + }, + "webtest-2.0.18-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-07", + "depends": [ + "beautiful-soup 4.3.2", + "python 3.4*", + "six", + "waitress 0.8.9", + "webob 1.4.1" + ], + "license": "MIT", + "md5": "257ace0d980b95b5d854e9d9fc93800c", + "name": "webtest", + "requires": [], + "size": 51486, + "version": "2.0.18" + }, + "webtest-2.0.18-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "beautifulsoup4 4.4.0", + "python 3.5*", + "six", + "waitress 0.8.9", + "webob 1.4.1" + ], + "license": "MIT", + "md5": "fe83479879bfb6bb4f49b59ddf697e81", + "name": "webtest", + "requires": [], + "size": 51078, + "version": "2.0.18" + }, + "werkzeug-0.10.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-02-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "941966d7981747ee5521c2ab2a5aa0e5", + "name": "werkzeug", + "requires": [], + "size": 383038, + "version": "0.10.1" + }, + "werkzeug-0.10.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-02-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "14588e604254fcefa76c54613fc1991b", + "name": "werkzeug", + "requires": [], + "size": 383107, + "version": "0.10.1" + }, + "werkzeug-0.10.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-02-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "5516e046f6951d5ce963bcfabb324b97", + "name": "werkzeug", + "requires": [], + "size": 425900, + "version": "0.10.1" + }, + "werkzeug-0.10.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-02-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "01805e6ad9b99c9760d34dccfd56a1b7", + "name": "werkzeug", + "requires": [], + "size": 412994, + "version": "0.10.1" + }, + "werkzeug-0.10.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "33d922c10a6bf776ac866ed568ae6cc8", + "name": "werkzeug", + "requires": [], + "size": 382976, + "version": "0.10.4" + }, + "werkzeug-0.10.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "994062a84b255c780f2e2b3d58adff01", + "name": "werkzeug", + "requires": [], + "size": 383061, + "version": "0.10.4" + }, + "werkzeug-0.10.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a89e8e7e2443cb23379ab196eef63c24", + "name": "werkzeug", + "requires": [], + "size": 426594, + "version": "0.10.4" + }, + "werkzeug-0.10.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-01", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "853e5772d07b6934cf7c451f6d991f0e", + "name": "werkzeug", + "requires": [], + "size": 412729, + "version": "0.10.4" + }, + "werkzeug-0.10.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "9053afed0b0cef907903c0af74c219aa", + "name": "werkzeug", + "requires": [], + "size": 412875, + "version": "0.10.4" + }, + "werkzeug-0.11.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "45729f01d8e02fc535afe95db86d8a66", + "name": "werkzeug", + "requires": [], + "size": 398619, + "version": "0.11.2" + }, + "werkzeug-0.11.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "6ef25be9eaaf4fb641f55d6b6a369c7e", + "name": "werkzeug", + "requires": [], + "size": 429967, + "version": "0.11.2" + }, + "werkzeug-0.11.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "2d14bdee1a32023a6c38f91fe1051760", + "name": "werkzeug", + "requires": [], + "size": 428554, + "version": "0.11.2" + }, + "werkzeug-0.11.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "03b5544caf0dd50b88987c4ec255c012", + "name": "werkzeug", + "requires": [], + "size": 398762, + "version": "0.11.3" + }, + "werkzeug-0.11.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "d885997cb18a7890c89e4205b45a620c", + "name": "werkzeug", + "requires": [], + "size": 430195, + "version": "0.11.3" + }, + "werkzeug-0.11.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-12-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "f0e9b9043901c33699937241279cf07e", + "name": "werkzeug", + "requires": [], + "size": 428745, + "version": "0.11.3" + }, + "werkzeug-0.11.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b5b1e92ea0dfc24d16e766c5ccc4f7db", + "name": "werkzeug", + "requires": [], + "size": 400214, + "version": "0.11.4" + }, + "werkzeug-0.11.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "59a1000461a01116bad0c30eb5dc2257", + "name": "werkzeug", + "requires": [], + "size": 431739, + "version": "0.11.4" + }, + "werkzeug-0.11.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-15", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "2c513c6e3815108be076398b71e67823", + "name": "werkzeug", + "requires": [], + "size": 430487, + "version": "0.11.4" + }, + "werkzeug-0.11.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ebc826acb5da7175161cb63669aac78c", + "name": "werkzeug", + "requires": [], + "size": 400210, + "version": "0.11.5" + }, + "werkzeug-0.11.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "fc5cd5688cf7b675c0ed82f94a81ca7f", + "name": "werkzeug", + "requires": [], + "size": 431747, + "version": "0.11.5" + }, + "werkzeug-0.11.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-31", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "1f0e47a2a13ba15bca552888e3ea449d", + "name": "werkzeug", + "requires": [], + "size": 430453, + "version": "0.11.5" + }, + "werkzeug-0.8.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "15f8672a748ece43d7487cddcab966fe", + "name": "werkzeug", + "requires": [], + "size": 356335, + "version": "0.8.3" + }, + "werkzeug-0.8.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3126d453016b3642d604755a2fb58c74", + "name": "werkzeug", + "requires": [], + "size": 357596, + "version": "0.8.3" + }, + "werkzeug-0.9-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "625c88f93861a79509f6a0482c54b577", + "name": "werkzeug", + "requires": [], + "size": 392398, + "version": "0.9" + }, + "werkzeug-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a1256f5b9f346e969d723dbafa6c733d", + "name": "werkzeug", + "requires": [], + "size": 390502, + "version": "0.9.1" + }, + "werkzeug-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f4621474c166e87e24ccccddfd46c7b9", + "name": "werkzeug", + "requires": [], + "size": 392496, + "version": "0.9.1" + }, + "werkzeug-0.9.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "5dd0c6ed6deaf35509bc35b46ffff790", + "name": "werkzeug", + "requires": [], + "size": 391613, + "version": "0.9.3" + }, + "werkzeug-0.9.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "96a7c4068ce9b492bae7ccff4aaafff7", + "name": "werkzeug", + "requires": [], + "size": 393666, + "version": "0.9.3" + }, + "werkzeug-0.9.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "c4f6d974b75389baaeca7a73469d8286", + "name": "werkzeug", + "requires": [], + "size": 442939, + "version": "0.9.3" + }, + "werkzeug-0.9.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "06d414929a4350b22399ce6cb528dd29", + "name": "werkzeug", + "requires": [], + "size": 392125, + "version": "0.9.4" + }, + "werkzeug-0.9.4-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "78c1f72040aad2bb934aef7944f432ac", + "name": "werkzeug", + "requires": [], + "size": 392919, + "version": "0.9.4" + }, + "werkzeug-0.9.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "493e150957547c9a4f02e0a98927d176", + "name": "werkzeug", + "requires": [], + "size": 393847, + "version": "0.9.4" + }, + "werkzeug-0.9.4-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "901c558ac50c53d40caf485d2f16c0d5", + "name": "werkzeug", + "requires": [], + "size": 394121, + "version": "0.9.4" + }, + "werkzeug-0.9.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "578de21bcfcbe6c5ce61a9f7132b4afa", + "name": "werkzeug", + "requires": [], + "size": 443260, + "version": "0.9.4" + }, + "werkzeug-0.9.4-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "73fb0930a2549136aa912fbec179bf9d", + "name": "werkzeug", + "requires": [], + "size": 443072, + "version": "0.9.4" + }, + "werkzeug-0.9.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "9e1c174e48fbe69dd94e2dc9c72168ce", + "name": "werkzeug", + "requires": [], + "size": 422591, + "version": "0.9.4" + }, + "werkzeug-0.9.4-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8c42395c7b6ca5cd5b9748b539cabfdb", + "name": "werkzeug", + "requires": [], + "size": 422704, + "version": "0.9.4" + }, + "werkzeug-0.9.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "e75f855443841c0e10f8445915864c77", + "name": "werkzeug", + "requires": [], + "size": 396423, + "version": "0.9.6" + }, + "werkzeug-0.9.6-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "338ec7594c1b7daa8d2e5509062d6e02", + "name": "werkzeug", + "requires": [], + "size": 498429, + "version": "0.9.6" + }, + "werkzeug-0.9.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "955ffbee083472cefe97988660eab422", + "name": "werkzeug", + "requires": [], + "size": 397077, + "version": "0.9.6" + }, + "werkzeug-0.9.6-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "a56923a8182320ec7ce5bae87e60e5c8", + "name": "werkzeug", + "requires": [], + "size": 499857, + "version": "0.9.6" + }, + "werkzeug-0.9.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "2c7201cd65648dabd3cb6062bb160570", + "name": "werkzeug", + "requires": [], + "size": 446290, + "version": "0.9.6" + }, + "werkzeug-0.9.6-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "b2854d27e78dec7471bbcd33e439b2ee", + "name": "werkzeug", + "requires": [], + "size": 541409, + "version": "0.9.6" + }, + "werkzeug-0.9.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3806e16ad52bef4dab47439792da2f8b", + "name": "werkzeug", + "requires": [], + "size": 425717, + "version": "0.9.6" + }, + "werkzeug-0.9.6-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7d13a0e60f23905f6247f71dcd3b9632", + "name": "werkzeug", + "requires": [], + "size": 533043, + "version": "0.9.6" + }, + "wheel-0.24.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "51bb94c9f9f33d2013663af450df76dd", + "name": "wheel", + "requires": [], + "size": 76797, + "version": "0.24.0" + }, + "wheel-0.24.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-08-18", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "5a63e2844c17f8ad438e1e7fb622e4b8", + "name": "wheel", + "requires": [], + "size": 78425, + "version": "0.24.0" + }, + "wheel-0.24.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-12", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "479cf0ca8afc36e265cf0bd866889e57", + "name": "wheel", + "requires": [], + "size": 78333, + "version": "0.24.0" + }, + "wheel-0.24.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "e6ac1f25b586af790d1aff299f31be33", + "name": "wheel", + "requires": [], + "size": 78149, + "version": "0.24.0" + }, + "wheel-0.26.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "c453cdf3d38749e146c13d034c081f3d", + "name": "wheel", + "requires": [], + "size": 76981, + "version": "0.26.0" + }, + "wheel-0.26.0-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-09-24", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "831d08e31a80c2f4c01d456c018c6ee1", + "name": "wheel", + "requires": [], + "size": 77360, + "version": "0.26.0" + }, + "wheel-0.26.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "344fc65969db8426eb67c04b1c12e26c", + "name": "wheel", + "requires": [], + "size": 78731, + "version": "0.26.0" + }, + "wheel-0.26.0-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-09-24", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "f1df02eb48106e4b6618317c98cbd5f5", + "name": "wheel", + "requires": [], + "size": 79080, + "version": "0.26.0" + }, + "wheel-0.26.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "0b295d0a40d16d20a98564729841531b", + "name": "wheel", + "requires": [], + "size": 78649, + "version": "0.26.0" + }, + "wheel-0.26.0-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-09-24", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "2291096588ab2393f8e446fbe38a6e56", + "name": "wheel", + "requires": [], + "size": 79044, + "version": "0.26.0" + }, + "wheel-0.26.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-21", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "5bc22d1f48ec1a80da5207ce2d9d2e92", + "name": "wheel", + "requires": [], + "size": 78457, + "version": "0.26.0" + }, + "wheel-0.26.0-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-24", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "0e03083414d7bb753c966759cc27ff0d", + "name": "wheel", + "requires": [], + "size": 78797, + "version": "0.26.0" + }, + "wheel-0.29.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "35cf0da93616ea8c495ce1d143316d7c", + "name": "wheel", + "requires": [], + "size": 82465, + "version": "0.29.0" + }, + "wheel-0.29.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "python 3.3*" + ], + "license": "MIT", + "md5": "cd07620bc092c69e8878e50d31a5e33b", + "name": "wheel", + "requires": [], + "size": 84173, + "version": "0.29.0" + }, + "wheel-0.29.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "python 3.4*" + ], + "license": "MIT", + "md5": "ffe8321a9595fc7488e3259778a37ef1", + "name": "wheel", + "requires": [], + "size": 84059, + "version": "0.29.0" + }, + "wheel-0.29.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-08", + "depends": [ + "python 3.5*" + ], + "license": "MIT", + "md5": "a489d3c609c001af399b41e1bd2eedeb", + "name": "wheel", + "requires": [], + "size": 83741, + "version": "0.29.0" + }, + "whisper-0.9.13-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.7*" + ], + "license": "Apache", + "md5": "d49873f7f3caf442c1ca23aee684e071", + "name": "whisper", + "requires": [], + "size": 21864, + "version": "0.9.13" + }, + "whoosh-2.5.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "ffa44552b4d751123889d8f5da32b7d1", + "name": "whoosh", + "requires": [], + "size": 1067330, + "version": "2.5.7" + }, + "whoosh-2.5.7-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "6f51a1aa23377079187d89769bc9df6a", + "name": "whoosh", + "requires": [], + "size": 665397, + "version": "2.5.7" + }, + "whoosh-2.5.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "58f339577299306abba9b35d4b99589c", + "name": "whoosh", + "requires": [], + "size": 1063931, + "version": "2.5.7" + }, + "whoosh-2.5.7-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "80124d018875a2b705dd5d2e4b5e0f29", + "name": "whoosh", + "requires": [], + "size": 666047, + "version": "2.5.7" + }, + "whoosh-2.5.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "c22d468898b56ae1c78953b69c2eb32e", + "name": "whoosh", + "requires": [], + "size": 1106327, + "version": "2.5.7" + }, + "whoosh-2.5.7-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a12faf5e348e9ed6896aea93a536b191", + "name": "whoosh", + "requires": [], + "size": 714040, + "version": "2.5.7" + }, + "whoosh-2.5.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "2eb072948cb35371cdd02805b224479a", + "name": "whoosh", + "requires": [], + "size": 1088476, + "version": "2.5.7" + }, + "whoosh-2.5.7-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2014-09-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b2a884778efbb8627db6a0cc6daa8be0", + "name": "whoosh", + "requires": [], + "size": 710354, + "version": "2.5.7" + }, + "whoosh-2.7.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "9c1f3cc60f365f4d9fd810ef44a2dcde", + "name": "whoosh", + "requires": [], + "size": 629659, + "version": "2.7.0" + }, + "whoosh-2.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "4247ab5da08e70ca6e9174b8f2870526", + "name": "whoosh", + "requires": [], + "size": 631853, + "version": "2.7.0" + }, + "whoosh-2.7.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a8c7b59077c72a885e466ab0103faba0", + "name": "whoosh", + "requires": [], + "size": 688939, + "version": "2.7.0" + }, + "whoosh-2.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1001486803899bd275effc511d79c28b", + "name": "whoosh", + "requires": [], + "size": 671273, + "version": "2.7.0" + }, + "whoosh-2.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "193f63859bda31d97e954aaddc329003", + "name": "whoosh", + "requires": [], + "size": 668645, + "version": "2.7.0" + }, + "whoosh-2.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "965e7f355e133df555358f10f14ee7c2", + "name": "whoosh", + "requires": [], + "size": 633402, + "version": "2.7.2" + }, + "whoosh-2.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "08a57b04e835b74f8988bc8f6d1c1390", + "name": "whoosh", + "requires": [], + "size": 675018, + "version": "2.7.2" + }, + "whoosh-2.7.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-21", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "29e83bac5ff5d9b1f78d6bd732335a67", + "name": "whoosh", + "requires": [], + "size": 672453, + "version": "2.7.2" + }, + "whoosh-2.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "f5ca5b288ed684109788c2597dbd66b5", + "name": "whoosh", + "requires": [], + "size": 633542, + "version": "2.7.3" + }, + "whoosh-2.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "40fb8199862dee226daad7ba0afbc267", + "name": "whoosh", + "requires": [], + "size": 674666, + "version": "2.7.3" + }, + "whoosh-2.7.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-04-01", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "6faf0f40a57a29d10646c7b3292e3dce", + "name": "whoosh", + "requires": [], + "size": 673091, + "version": "2.7.3" + }, + "workerpool-0.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "MIT", + "md5": "8c7bfbd185d5bc2c45ccf2fa4527bcc8", + "name": "workerpool", + "requires": [], + "size": 6566, + "version": "0.9.2" + }, + "workerpool-0.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "MIT", + "md5": "40b6f44c0e73ae1fa358fa48e23c8549", + "name": "workerpool", + "requires": [], + "size": 6573, + "version": "0.9.2" + }, + "workerpool-0.9.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.6*", + "six" + ], + "license": "MIT", + "md5": "612dbb1bde1241e2a6ec2bfac665caec", + "name": "workerpool", + "requires": [], + "size": 6793, + "version": "0.9.4" + }, + "workerpool-0.9.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 2.7*", + "six" + ], + "license": "MIT", + "md5": "f91392322ced7913b072158b11ca3cc3", + "name": "workerpool", + "requires": [], + "size": 6826, + "version": "0.9.4" + }, + "workerpool-0.9.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.3*", + "six" + ], + "license": "MIT", + "md5": "685379dc92eb9711d790e8241ebf866d", + "name": "workerpool", + "requires": [], + "size": 7036, + "version": "0.9.4" + }, + "workerpool-0.9.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-29", + "depends": [ + "python 3.4*", + "six" + ], + "license": "MIT", + "md5": "69d1afc0f430019996ae24a19cbd8b86", + "name": "workerpool", + "requires": [], + "size": 7066, + "version": "0.9.4" + }, + "workerpool-0.9.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "six" + ], + "license": "MIT", + "md5": "a4d000c119c96f9687597dd2a0a044dc", + "name": "workerpool", + "requires": [], + "size": 7030, + "version": "0.9.4" + }, + "wrapt-1.10.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "e702b3e8bbba0cae3b483db4c9cfbb10", + "name": "wrapt", + "requires": [], + "size": 57610, + "version": "1.10.6" + }, + "wrapt-1.10.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "16e0ad209f3eaefacd11af6865ad9fe4", + "name": "wrapt", + "requires": [], + "size": 60279, + "version": "1.10.6" + }, + "wrapt-1.10.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-18", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "ba5de3bbd87d3b2f944018fe5c5881e2", + "name": "wrapt", + "requires": [], + "size": 60446, + "version": "1.10.6" + }, + "wtforms-2.0.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "ordereddict", + "python 2.6*" + ], + "license": "BSD", + "md5": "c034749be7098b838a761dc3bd257412", + "name": "wtforms", + "requires": [], + "size": 91695, + "version": "2.0.2" + }, + "wtforms-2.0.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "9804e035a92f13787fedaea3b05c43a0", + "name": "wtforms", + "requires": [], + "size": 91729, + "version": "2.0.2" + }, + "wtforms-2.0.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "c5f394bc79367d5e26015677f6607658", + "name": "wtforms", + "requires": [], + "size": 93660, + "version": "2.0.2" + }, + "wtforms-2.0.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-18", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "02ea2739650b7ec492cebbcc55125e43", + "name": "wtforms", + "requires": [], + "size": 94397, + "version": "2.0.2" + }, + "wtforms-2.0.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "8bcbcc3ba7dbe43da4739ce21fedb753", + "name": "wtforms", + "requires": [], + "size": 94717, + "version": "2.0.2" + }, + "wxpython-3.0.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license_family": "Other", + "md5": "cc9774b0f943729445695b25e5e5b05c", + "name": "wxpython", + "requires": [], + "size": 35720760, + "version": "3.0.0.0" + }, + "wxpython-3.0.0.0-py27_2.tar.bz2": { + "build": "py27_2", + "build_number": 2, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "wxWindows Licese", + "license_family": "Other", + "md5": "65114526007bb353c1d9a1328e76be70", + "name": "wxpython", + "requires": [], + "size": 33164882, + "version": "3.0.0.0" + }, + "xarray-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "numpy", + "pandas >=0.15", + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "bd9f94bcc78b18aac44be0340cc30913", + "name": "xarray", + "requires": [], + "size": 314970, + "version": "0.7.0" + }, + "xarray-0.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "numpy", + "pandas >=0.15", + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "784da1f14fd7b9b7c09b7229558abcd4", + "name": "xarray", + "requires": [], + "size": 326288, + "version": "0.7.0" + }, + "xarray-0.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "numpy", + "pandas >=0.15", + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "b7d2c2e88f370bc701c44307772615ce", + "name": "xarray", + "requires": [], + "size": 324819, + "version": "0.7.0" + }, + "xarray-0.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "numpy", + "pandas >=0.15", + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "5cabee5fe13fd5ec5a6541b7fe41ebcd", + "name": "xarray", + "requires": [], + "size": 317767, + "version": "0.7.1" + }, + "xarray-0.7.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "numpy", + "pandas >=0.15", + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "46c97a733b4ed727a8e42e6c1083344b", + "name": "xarray", + "requires": [], + "size": 328957, + "version": "0.7.1" + }, + "xarray-0.7.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-18", + "depends": [ + "numpy", + "pandas >=0.15", + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "149702b8aad46b24757316357aa6748c", + "name": "xarray", + "requires": [], + "size": 327441, + "version": "0.7.1" + }, + "xarray-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "numpy", + "pandas >=0.15", + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "9cb495020a598236519f85b1e76eba2f", + "name": "xarray", + "requires": [], + "size": 336943, + "version": "0.7.2" + }, + "xarray-0.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "numpy", + "pandas >=0.15", + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "a2f213e356b35017b57e5bd29c15b3fd", + "name": "xarray", + "requires": [], + "size": 343818, + "version": "0.7.2" + }, + "xarray-0.7.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-03-14", + "depends": [ + "numpy", + "pandas >=0.15", + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "7f60c348425c9056760021d159f110bf", + "name": "xarray", + "requires": [], + "size": 342109, + "version": "0.7.2" + }, + "xerces-c-3.1.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-14", + "depends": [], + "license": "Apache 2.0", + "license_family": "Apache", + "md5": "1204c47712dea597ffbdaaadec803b52", + "name": "xerces-c", + "requires": [], + "size": 7909323, + "version": "3.1.2" + }, + "xlrd-0.9.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "7cfeb5552be63931bee87daab32cd944", + "name": "xlrd", + "requires": [], + "size": 180950, + "version": "0.9.0" + }, + "xlrd-0.9.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "cbf8fbc7679960f751209aaabf69ef52", + "name": "xlrd", + "requires": [], + "size": 182768, + "version": "0.9.0" + }, + "xlrd-0.9.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d9de7177eb0007bd6f71e6b820283afa", + "name": "xlrd", + "requires": [], + "size": 183772, + "version": "0.9.0" + }, + "xlrd-0.9.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "4514fd30d710178783168afa456328be", + "name": "xlrd", + "requires": [], + "size": 160651, + "version": "0.9.1" + }, + "xlrd-0.9.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "c17a0c6717f1dca9b1148511517c3a1b", + "name": "xlrd", + "requires": [], + "size": 162692, + "version": "0.9.1" + }, + "xlrd-0.9.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "09f9c2d521d94a0207a0176ef2752836", + "name": "xlrd", + "requires": [], + "size": 164017, + "version": "0.9.1" + }, + "xlrd-0.9.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "782de98efd3373110774639d7a84bdea", + "name": "xlrd", + "requires": [], + "size": 180245, + "version": "0.9.2" + }, + "xlrd-0.9.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "8eab5eb66f633bac6178b6798fedd78e", + "name": "xlrd", + "requires": [], + "size": 181945, + "version": "0.9.2" + }, + "xlrd-0.9.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "7091e533412db639f5ecc4e1d9b85a3e", + "name": "xlrd", + "requires": [], + "size": 183079, + "version": "0.9.2" + }, + "xlrd-0.9.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "48a8cbe8ef71a896a84e9b557c1e5a32", + "name": "xlrd", + "requires": [], + "size": 185193, + "version": "0.9.2" + }, + "xlrd-0.9.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "61ec62b825dce371622d446da33bc390", + "name": "xlrd", + "requires": [], + "size": 161914, + "version": "0.9.3" + }, + "xlrd-0.9.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "306532f1bde2635c8995dab833087e5a", + "name": "xlrd", + "requires": [], + "size": 163899, + "version": "0.9.3" + }, + "xlrd-0.9.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f5f783f588fe9b8ee7d918ae49e09ac1", + "name": "xlrd", + "requires": [], + "size": 165065, + "version": "0.9.3" + }, + "xlrd-0.9.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "b58b82bc4ad253a0fe81d6a6ef088a1f", + "name": "xlrd", + "requires": [], + "size": 166645, + "version": "0.9.3" + }, + "xlrd-0.9.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "c8a428fefb1cd5b58b16313963e53580", + "name": "xlrd", + "requires": [], + "size": 181439, + "version": "0.9.4" + }, + "xlrd-0.9.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "73f17f03d3d10458b2b697274e0f0216", + "name": "xlrd", + "requires": [], + "size": 182911, + "version": "0.9.4" + }, + "xlrd-0.9.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "32e841dbf2e7e34b63d4046cde96d311", + "name": "xlrd", + "requires": [], + "size": 184149, + "version": "0.9.4" + }, + "xlrd-0.9.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "5689604e1dee64250f7c3c19433e3493", + "name": "xlrd", + "requires": [], + "size": 186151, + "version": "0.9.4" + }, + "xlrd-0.9.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "6aa94001ab85620c55befcc8ef298508", + "name": "xlrd", + "requires": [], + "size": 184874, + "version": "0.9.4" + }, + "xlsxwriter-0.5.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "bbc91369f595272e16c64b7b9d326bd9", + "name": "xlsxwriter", + "requires": [], + "size": 163639, + "version": "0.5.2" + }, + "xlsxwriter-0.5.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "b2dbc8357f0e50eb6d3478fb0fc576b7", + "name": "xlsxwriter", + "requires": [], + "size": 164618, + "version": "0.5.2" + }, + "xlsxwriter-0.5.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "d51ef8f39c1bde10899d9a00c1978694", + "name": "xlsxwriter", + "requires": [], + "size": 172040, + "version": "0.5.2" + }, + "xlsxwriter-0.5.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "a2594563923b5e08eb5df0933382ae9b", + "name": "xlsxwriter", + "requires": [], + "size": 165128, + "version": "0.5.3" + }, + "xlsxwriter-0.5.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "744a854b290019ef3843b78f1daa00f2", + "name": "xlsxwriter", + "requires": [], + "size": 166362, + "version": "0.5.3" + }, + "xlsxwriter-0.5.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f33e662630d9da8f05f2cdfd2f74df59", + "name": "xlsxwriter", + "requires": [], + "size": 174048, + "version": "0.5.3" + }, + "xlsxwriter-0.5.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "f05576570c88b022e0e5587492cf3ebc", + "name": "xlsxwriter", + "requires": [], + "size": 168549, + "version": "0.5.3" + }, + "xlsxwriter-0.5.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "06515e2ea6d04353ffbb45b56235c473", + "name": "xlsxwriter", + "requires": [], + "size": 165331, + "version": "0.5.5" + }, + "xlsxwriter-0.5.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "262dbc0d68877d5911e528ed44a6f54f", + "name": "xlsxwriter", + "requires": [], + "size": 166422, + "version": "0.5.5" + }, + "xlsxwriter-0.5.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "406665b5a65ba24ef98b88f045e7b360", + "name": "xlsxwriter", + "requires": [], + "size": 174228, + "version": "0.5.5" + }, + "xlsxwriter-0.5.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7a8c0d5afead7d02d3742a389cde64f8", + "name": "xlsxwriter", + "requires": [], + "size": 168658, + "version": "0.5.5" + }, + "xlsxwriter-0.5.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "8ccde828678e625222ff100d9da31415", + "name": "xlsxwriter", + "requires": [], + "size": 165847, + "version": "0.5.7" + }, + "xlsxwriter-0.5.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "dad19909531c0d0fc7e0ba6eef92b108", + "name": "xlsxwriter", + "requires": [], + "size": 166845, + "version": "0.5.7" + }, + "xlsxwriter-0.5.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "74927823182e7ca3b7c49e1e7b58ae24", + "name": "xlsxwriter", + "requires": [], + "size": 174613, + "version": "0.5.7" + }, + "xlsxwriter-0.5.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-25", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "35e3d72ed944c678091f6ccae3573e82", + "name": "xlsxwriter", + "requires": [], + "size": 169281, + "version": "0.5.7" + }, + "xlsxwriter-0.6.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "3512dddf66c9e89b5d6f7eae0848036a", + "name": "xlsxwriter", + "requires": [], + "size": 173335, + "version": "0.6.0" + }, + "xlsxwriter-0.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "cbd520e55c2a3a5aba1fbe5f4c8a9daa", + "name": "xlsxwriter", + "requires": [], + "size": 174401, + "version": "0.6.0" + }, + "xlsxwriter-0.6.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "ae59e7a7af5abe58d3e187de197c7c01", + "name": "xlsxwriter", + "requires": [], + "size": 180648, + "version": "0.6.0" + }, + "xlsxwriter-0.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-28", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "0be1a3d818c0e78ec123915d8673e828", + "name": "xlsxwriter", + "requires": [], + "size": 176416, + "version": "0.6.0" + }, + "xlsxwriter-0.6.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "14e4c6fe389fbf1b1583f09a305cd85f", + "name": "xlsxwriter", + "requires": [], + "size": 174814, + "version": "0.6.2" + }, + "xlsxwriter-0.6.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "d7b4e0b0a01c7afe58362c9aca5e5cb6", + "name": "xlsxwriter", + "requires": [], + "size": 175905, + "version": "0.6.2" + }, + "xlsxwriter-0.6.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "e8ba9647334935f78ccccef84b9ac7e2", + "name": "xlsxwriter", + "requires": [], + "size": 182051, + "version": "0.6.2" + }, + "xlsxwriter-0.6.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-04", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "866ec791c0de80bf9e67247351babf06", + "name": "xlsxwriter", + "requires": [], + "size": 178060, + "version": "0.6.2" + }, + "xlsxwriter-0.6.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "05d4ee01ce26ba6a7340cb1add3f993b", + "name": "xlsxwriter", + "requires": [], + "size": 177837, + "version": "0.6.3" + }, + "xlsxwriter-0.6.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "75f363f8646d741adbb7234212b4d60a", + "name": "xlsxwriter", + "requires": [], + "size": 178959, + "version": "0.6.3" + }, + "xlsxwriter-0.6.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "f98ab64b294e24a9f69a4fc68f2f493d", + "name": "xlsxwriter", + "requires": [], + "size": 184419, + "version": "0.6.3" + }, + "xlsxwriter-0.6.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-11-07", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "ee0569bfdffb79392bd2ffd1d8378f44", + "name": "xlsxwriter", + "requires": [], + "size": 180795, + "version": "0.6.3" + }, + "xlsxwriter-0.6.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "d6c5d26056f4e89714e62be6adc92277", + "name": "xlsxwriter", + "requires": [], + "size": 178271, + "version": "0.6.4" + }, + "xlsxwriter-0.6.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "5bd74e9a6d320eb8c55faebd874ec7d4", + "name": "xlsxwriter", + "requires": [], + "size": 179232, + "version": "0.6.4" + }, + "xlsxwriter-0.6.4-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "50a12e0d6e33a93f0ec9f01eb4635781", + "name": "xlsxwriter", + "requires": [], + "size": 184790, + "version": "0.6.4" + }, + "xlsxwriter-0.6.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-12-01", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "6e843a3fc01719b38ad2155d1e9e1394", + "name": "xlsxwriter", + "requires": [], + "size": 181097, + "version": "0.6.4" + }, + "xlsxwriter-0.6.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "00dcde80c9e9401f522819ce54cf0749", + "name": "xlsxwriter", + "requires": [], + "size": 178349, + "version": "0.6.5" + }, + "xlsxwriter-0.6.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "122d823086b291a9c06f4c9afa760aac", + "name": "xlsxwriter", + "requires": [], + "size": 179420, + "version": "0.6.5" + }, + "xlsxwriter-0.6.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "752c68452e264c1f1802a67f2a3b61a4", + "name": "xlsxwriter", + "requires": [], + "size": 185042, + "version": "0.6.5" + }, + "xlsxwriter-0.6.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3297def5806b010e5acaf56096443754", + "name": "xlsxwriter", + "requires": [], + "size": 181316, + "version": "0.6.5" + }, + "xlsxwriter-0.6.6-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "3257e1abdce36813da66acbf9a5a2f44", + "name": "xlsxwriter", + "requires": [], + "size": 178640, + "version": "0.6.6" + }, + "xlsxwriter-0.6.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "cdf577b82c107f4c169d72db9e314713", + "name": "xlsxwriter", + "requires": [], + "size": 179405, + "version": "0.6.6" + }, + "xlsxwriter-0.6.6-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "5cc245870429c93bb34e98a1cee1be8e", + "name": "xlsxwriter", + "requires": [], + "size": 185010, + "version": "0.6.6" + }, + "xlsxwriter-0.6.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-19", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e9c2cf36ebc98ac4a831c4c0ee0632b0", + "name": "xlsxwriter", + "requires": [], + "size": 180924, + "version": "0.6.6" + }, + "xlsxwriter-0.6.7-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "5dac12bac7c79d11b6e1921985e7c897", + "name": "xlsxwriter", + "requires": [], + "size": 178331, + "version": "0.6.7" + }, + "xlsxwriter-0.6.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "cb29610923436ad6461b8d3e790c6116", + "name": "xlsxwriter", + "requires": [], + "size": 179373, + "version": "0.6.7" + }, + "xlsxwriter-0.6.7-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "53fe069ff3852f6a37cc2dec6318858c", + "name": "xlsxwriter", + "requires": [], + "size": 184992, + "version": "0.6.7" + }, + "xlsxwriter-0.6.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-03-06", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "65083fcd36962265e80df40c9d005799", + "name": "xlsxwriter", + "requires": [], + "size": 181367, + "version": "0.6.7" + }, + "xlsxwriter-0.7.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "29a5d7e96399ba121ad30bd50bd9676d", + "name": "xlsxwriter", + "requires": [], + "size": 187750, + "version": "0.7.2" + }, + "xlsxwriter-0.7.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-06", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "2b7b789649f37a164c84593fc261966a", + "name": "xlsxwriter", + "requires": [], + "size": 189016, + "version": "0.7.2" + }, + "xlsxwriter-0.7.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "3c8184a39103796e7536932b2131e6ba", + "name": "xlsxwriter", + "requires": [], + "size": 193112, + "version": "0.7.2" + }, + "xlsxwriter-0.7.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "7cf9b5be9ba663602f008cf7f46d22ca", + "name": "xlsxwriter", + "requires": [], + "size": 190117, + "version": "0.7.2" + }, + "xlsxwriter-0.7.3-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "d71239e9009666b894c84ff9f0824937", + "name": "xlsxwriter", + "requires": [], + "size": 187031, + "version": "0.7.3" + }, + "xlsxwriter-0.7.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "5ccc7e2a531103b525b8a9afb8d309ab", + "name": "xlsxwriter", + "requires": [], + "size": 188305, + "version": "0.7.3" + }, + "xlsxwriter-0.7.3-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "517d61c70081742211e572ae2d3defc8", + "name": "xlsxwriter", + "requires": [], + "size": 192469, + "version": "0.7.3" + }, + "xlsxwriter-0.7.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-06-17", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "29c41989c1f5ef89bf772cc9be22d207", + "name": "xlsxwriter", + "requires": [], + "size": 189179, + "version": "0.7.3" + }, + "xlsxwriter-0.7.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "6184a29890cfd41122f3f6ef7a942318", + "name": "xlsxwriter", + "requires": [], + "size": 188697, + "version": "0.7.3" + }, + "xlsxwriter-0.7.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-30", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "518be4f18062bcd6ea12acace9c86dda", + "name": "xlsxwriter", + "requires": [], + "size": 188573, + "version": "0.7.4" + }, + "xlsxwriter-0.7.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-30", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "40b7a84e58dc2cbce413f6d5c51b9f7c", + "name": "xlsxwriter", + "requires": [], + "size": 189484, + "version": "0.7.4" + }, + "xlsxwriter-0.7.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-30", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "5e7c3119c1ab386a33fe3484192572bb", + "name": "xlsxwriter", + "requires": [], + "size": 188543, + "version": "0.7.4" + }, + "xlsxwriter-0.7.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "cdb0ff336bec51bd8898c1c5c9a540fe", + "name": "xlsxwriter", + "requires": [], + "size": 188597, + "version": "0.7.5" + }, + "xlsxwriter-0.7.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "8b54b9a51f1a27bd61015f6ed99fec9b", + "name": "xlsxwriter", + "requires": [], + "size": 189481, + "version": "0.7.5" + }, + "xlsxwriter-0.7.5-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "9d814a142517e544ecc106b604d84154", + "name": "xlsxwriter", + "requires": [], + "size": 188800, + "version": "0.7.5" + }, + "xlsxwriter-0.7.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-13", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "3a9de7ab728234aa75d5bedd4964e3c3", + "name": "xlsxwriter", + "requires": [], + "size": 188816, + "version": "0.7.6" + }, + "xlsxwriter-0.7.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-13", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "3a33bcc7c7702915b5eabed1aa138970", + "name": "xlsxwriter", + "requires": [], + "size": 189710, + "version": "0.7.6" + }, + "xlsxwriter-0.7.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-13", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "90c7e73af87e26cb8e8db876008a7831", + "name": "xlsxwriter", + "requires": [], + "size": 189039, + "version": "0.7.6" + }, + "xlsxwriter-0.7.7-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "0ca26cd74cd0ed77192a5b5d19c5f97e", + "name": "xlsxwriter", + "requires": [], + "size": 188844, + "version": "0.7.7" + }, + "xlsxwriter-0.7.7-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "1732a5525f2462766330f70425f60860", + "name": "xlsxwriter", + "requires": [], + "size": 189968, + "version": "0.7.7" + }, + "xlsxwriter-0.7.7-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "c274dd2fefb45482ba9e6949f455134d", + "name": "xlsxwriter", + "requires": [], + "size": 189279, + "version": "0.7.7" + }, + "xlsxwriter-0.8.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "54e297361a76c54a964d09d3a97c3638", + "name": "xlsxwriter", + "requires": [], + "size": 191794, + "version": "0.8.2" + }, + "xlsxwriter-0.8.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "e1869666fb176cb75a7eac21b97087ad", + "name": "xlsxwriter", + "requires": [], + "size": 192580, + "version": "0.8.2" + }, + "xlsxwriter-0.8.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-14", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "d0eb3bbf4a2e060bd3eeb0e19ee2f2cf", + "name": "xlsxwriter", + "requires": [], + "size": 191487, + "version": "0.8.2" + }, + "xlsxwriter-0.8.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "ace57f5d83059e19a296eb5d0145bf0d", + "name": "xlsxwriter", + "requires": [], + "size": 192963, + "version": "0.8.4" + }, + "xlsxwriter-0.8.4-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "0cf7293bb180360a5ee5e97367e1e44d", + "name": "xlsxwriter", + "requires": [], + "size": 193895, + "version": "0.8.4" + }, + "xlsxwriter-0.8.4-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-01", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "34140b13d8fbed43f00878eb9e93578f", + "name": "xlsxwriter", + "requires": [], + "size": 193042, + "version": "0.8.4" + }, + "xlutils-1.7.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 2.6*", + "xlrd", + "xlwt" + ], + "license": "MIT", + "md5": "25eb328152c147c3d2cd9ccba8a46843", + "name": "xlutils", + "requires": [], + "size": 66829, + "version": "1.7.1" + }, + "xlutils-1.7.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-09-17", + "depends": [ + "python 2.7*", + "xlrd", + "xlwt" + ], + "license": "MIT", + "md5": "40ffc7bb2771fdf866005cb6c0a0e29b", + "name": "xlutils", + "requires": [], + "size": 66670, + "version": "1.7.1" + }, + "xlwt-0.7.4-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "b07252999890ad03d11124cb6f515228", + "name": "xlwt", + "requires": [], + "size": 174250, + "version": "0.7.4" + }, + "xlwt-0.7.4-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "afbef0f406dc271f46804786f7162f0e", + "name": "xlwt", + "requires": [], + "size": 174146, + "version": "0.7.4" + }, + "xlwt-0.7.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "9cf799900564b70ac5306036620716df", + "name": "xlwt", + "requires": [], + "size": 176031, + "version": "0.7.5" + }, + "xlwt-0.7.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "bacbeb3ffbbe2e7b45b526f5a276a22d", + "name": "xlwt", + "requires": [], + "size": 176053, + "version": "0.7.5" + }, + "xlwt-1.0.0-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 2.6*" + ], + "license": "BSD", + "md5": "278dd38b92de04dbb5eb561fbd72fca4", + "name": "xlwt", + "requires": [], + "size": 154792, + "version": "1.0.0" + }, + "xlwt-1.0.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 2.7*" + ], + "license": "BSD", + "md5": "742b38e5e5de1d334c1754b217f2d5be", + "name": "xlwt", + "requires": [], + "size": 155409, + "version": "1.0.0" + }, + "xlwt-1.0.0-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 3.3*" + ], + "license": "BSD", + "md5": "a0f781937acc810062a05e668aa5f6bb", + "name": "xlwt", + "requires": [], + "size": 163610, + "version": "1.0.0" + }, + "xlwt-1.0.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-04-22", + "depends": [ + "python 3.4*" + ], + "license": "BSD", + "md5": "01b17399b2fc5b3a154dfda612d55e23", + "name": "xlwt", + "requires": [], + "size": 161511, + "version": "1.0.0" + }, + "xlwt-1.0.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*" + ], + "license": "BSD", + "md5": "8f7cfe147441f82ccc61d9c80f52a6de", + "name": "xlwt", + "requires": [], + "size": 160389, + "version": "1.0.0" + }, + "xmlrpc2-0.3.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "dateutil", + "python 2.7*", + "requests", + "six" + ], + "license": "BSD", + "md5": "2bdf7d596b39b1d4b2051133e52832e6", + "name": "xmlrpc2", + "requires": [], + "size": 7551, + "version": "0.3.1" + }, + "xray-0.4.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-05-06", + "depends": [ + "numpy 1.9*", + "ordereddict", + "pandas", + "python 2.6*" + ], + "license": "Apache", + "md5": "7a894cffbbfff32a05ea99e3c97ee386", + "name": "xray", + "requires": [], + "size": 204852, + "version": "0.4.1" + }, + "xray-0.4.1-np19py26_1.tar.bz2": { + "build": "np19py26_1", + "build_number": 1, + "date": "2015-05-19", + "depends": [ + "netcdf4 1.1.6", + "numpy 1.9*", + "ordereddict", + "pandas", + "python 2.6*" + ], + "license": "Apache", + "md5": "79df57736673396fdd69c61dd776fdf9", + "name": "xray", + "requires": [], + "size": 204851, + "version": "0.4.1" + }, + "xray-0.4.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-05-06", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "Apache", + "md5": "ed334ea5f6ee8e00417fd7da43dc0005", + "name": "xray", + "requires": [], + "size": 203218, + "version": "0.4.1" + }, + "xray-0.4.1-np19py27_1.tar.bz2": { + "build": "np19py27_1", + "build_number": 1, + "date": "2015-05-19", + "depends": [ + "netcdf4 1.1.6", + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "Apache", + "md5": "2b32b1fc75cc7d537ab5909b3ebc492b", + "name": "xray", + "requires": [], + "size": 203169, + "version": "0.4.1" + }, + "xray-0.4.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-05-06", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "Apache", + "md5": "4605df02542ed92833638b495a7d5ea9", + "name": "xray", + "requires": [], + "size": 209915, + "version": "0.4.1" + }, + "xray-0.4.1-np19py33_1.tar.bz2": { + "build": "np19py33_1", + "build_number": 1, + "date": "2015-05-19", + "depends": [ + "netcdf4 1.1.6", + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "Apache", + "md5": "c8d6e9e8d5a83f7be4260560f688e8e6", + "name": "xray", + "requires": [], + "size": 209870, + "version": "0.4.1" + }, + "xray-0.4.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-05-06", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "Apache", + "md5": "4a5bc2ebc7179d1e4e5b8682d056da62", + "name": "xray", + "requires": [], + "size": 207375, + "version": "0.4.1" + }, + "xray-0.4.1-np19py34_1.tar.bz2": { + "build": "np19py34_1", + "build_number": 1, + "date": "2015-05-19", + "depends": [ + "netcdf4 1.1.6", + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "Apache", + "md5": "81d054e3b9a349079fec720a109b3e2a", + "name": "xray", + "requires": [], + "size": 207251, + "version": "0.4.1" + }, + "xray-0.5.0-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "numpy 1.9*", + "ordereddict", + "pandas", + "python 2.6*" + ], + "license": "Apache", + "md5": "df19bef6fed1f0d92016679282310df1", + "name": "xray", + "requires": [], + "size": 236911, + "version": "0.5.0" + }, + "xray-0.5.0-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "Apache", + "md5": "2778c43a52630abd419ef6cf92f12f4a", + "name": "xray", + "requires": [], + "size": 235021, + "version": "0.5.0" + }, + "xray-0.5.0-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "Apache", + "md5": "058beaf5c178e0852fe764fe00e884e7", + "name": "xray", + "requires": [], + "size": 242345, + "version": "0.5.0" + }, + "xray-0.5.0-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-04", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "Apache", + "md5": "5726677c1224e1083df3ed97b30743e3", + "name": "xray", + "requires": [], + "size": 245060, + "version": "0.5.0" + }, + "xray-0.5.1-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "numpy 1.9*", + "ordereddict", + "pandas", + "python 2.6*" + ], + "license": "Apache", + "md5": "67f4b8e1a17a5ca5a62f2ee84c2c6f5b", + "name": "xray", + "requires": [], + "size": 236934, + "version": "0.5.1" + }, + "xray-0.5.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "Apache", + "md5": "6569a178a385d30b4decf7b6f4d1f19d", + "name": "xray", + "requires": [], + "size": 234956, + "version": "0.5.1" + }, + "xray-0.5.1-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "Apache", + "md5": "be8756f34bcbc93943e9650f39eca716", + "name": "xray", + "requires": [], + "size": 242624, + "version": "0.5.1" + }, + "xray-0.5.1-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-06-22", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "Apache", + "md5": "f8acbc9054313ddca3033bc184797109", + "name": "xray", + "requires": [], + "size": 244901, + "version": "0.5.1" + }, + "xray-0.5.2-np19py26_0.tar.bz2": { + "build": "np19py26_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "numpy 1.9*", + "ordereddict", + "pandas", + "python 2.6*" + ], + "license": "Apache", + "md5": "3e99e14acb157f7bf1f52e538554dc20", + "name": "xray", + "requires": [], + "size": 243392, + "version": "0.5.2" + }, + "xray-0.5.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "numpy 1.9*", + "pandas", + "python 2.7*" + ], + "license": "Apache", + "md5": "c493d6ea57b2deb61e361b4361d8ce18", + "name": "xray", + "requires": [], + "size": 241467, + "version": "0.5.2" + }, + "xray-0.5.2-np19py33_0.tar.bz2": { + "build": "np19py33_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.3*" + ], + "license": "Apache", + "md5": "8eee755f4c4c3c11a2a46b9a9ee6dc13", + "name": "xray", + "requires": [], + "size": 248676, + "version": "0.5.2" + }, + "xray-0.5.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-20", + "depends": [ + "numpy 1.9*", + "pandas", + "python 3.4*" + ], + "license": "Apache", + "md5": "ee3039d8d088b730633bdcaa3f4fc978", + "name": "xray", + "requires": [], + "size": 252358, + "version": "0.5.2" + }, + "xray-0.6.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-27", + "depends": [ + "pandas", + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "46ba4a97eb1af6ddf60be53b62364e15", + "name": "xray", + "requires": [], + "size": 274077, + "version": "0.6.0" + }, + "xray-0.6.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-27", + "depends": [ + "pandas", + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "07f5f9bcc6fe6e6ba000101e3eaf60a1", + "name": "xray", + "requires": [], + "size": 286823, + "version": "0.6.0" + }, + "xray-0.6.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "pandas", + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "c1d4e493d6c108c523155f219ad4bd16", + "name": "xray", + "requires": [], + "size": 285600, + "version": "0.6.0" + }, + "xray-0.6.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "pandas", + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "0ab1e6bf738ee745a28a0957b76f492e", + "name": "xray", + "requires": [], + "size": 299503, + "version": "0.6.1" + }, + "xray-0.6.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "pandas", + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "18704c62428d8b79423abc0d2167329b", + "name": "xray", + "requires": [], + "size": 310052, + "version": "0.6.1" + }, + "xray-0.6.1-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-22", + "depends": [ + "pandas", + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "bb314785b5fba524049a980a2332fb7b", + "name": "xray", + "requires": [], + "size": 308898, + "version": "0.6.1" + }, + "xray-0.7.0-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "pandas", + "python 2.7*", + "setuptools" + ], + "license": "Apache", + "md5": "0af8b0e23e579d79363193d52827cccd", + "name": "xray", + "requires": [], + "size": 315322, + "version": "0.7.0" + }, + "xray-0.7.0-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "pandas", + "python 3.4*", + "setuptools" + ], + "license": "Apache", + "md5": "b3e4e00c5b19fa92c97781444b298cf2", + "name": "xray", + "requires": [], + "size": 326772, + "version": "0.7.0" + }, + "xray-0.7.0-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-01-26", + "depends": [ + "pandas", + "python 3.5*", + "setuptools" + ], + "license": "Apache", + "md5": "1aedbfacd688558f4f003b38498264c3", + "name": "xray", + "requires": [], + "size": 325260, + "version": "0.7.0" + }, + "xz-5.0.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-31", + "depends": [], + "license": "Public-Domain, GPL", + "license_family": "GPL2", + "md5": "ad8d2d640ec1415b8a5724a7edc7005d", + "name": "xz", + "requires": [], + "size": 516555, + "version": "5.0.5" + }, + "xz-5.0.5-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2016-02-13", + "depends": [], + "license": "Public-Domain, GPL", + "license_family": "GPL2", + "md5": "a029c67ad64a612d6081d4f3fe1a0797", + "name": "xz", + "requires": [], + "size": 585979, + "version": "5.0.5" + }, + "xz-5.2.2-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2016-04-01", + "depends": [], + "license": "Public-Domain, GPL", + "license_family": "GPL2", + "md5": "e695dd33979086349147a4f354f5c2bd", + "name": "xz", + "requires": [], + "size": 659118, + "version": "5.2.2" + }, + "yaml-0.1.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "MIT", + "md5": "6beaf5762f6aa506604a309f76a7a91c", + "name": "yaml", + "requires": [], + "size": 210146, + "version": "0.1.4" + }, + "yaml-0.1.6-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-06-19", + "depends": [], + "license": "MIT", + "md5": "dac36570434ddc9e16e54709c114bd96", + "name": "yaml", + "requires": [], + "size": 252137, + "version": "0.1.6" + }, + "yt-2.6-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "h5py 2.2*", + "hdf5 1.8.9", + "libpng 1.5.13", + "matplotlib", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "d3b380d962da3b22175e6d8b2670a811", + "name": "yt", + "requires": [], + "size": 4445392, + "version": "2.6" + }, + "yt-2.6.1-np17py27_0.tar.bz2": { + "build": "np17py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "h5py 2.2*", + "hdf5 1.8.9", + "libpng 1.5.13", + "matplotlib", + "numpy 1.7*", + "python 2.7*" + ], + "license": "BSD", + "md5": "fbd791dcf737870f1fe24e7e47fe3a30", + "name": "yt", + "requires": [], + "size": 4445877, + "version": "2.6.1" + }, + "yt-2.6.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "h5py 2.2*", + "hdf5 1.8.9", + "libpng 1.5.13", + "matplotlib", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "8f3c0f27bf2b3ee3ed4ee73374efbfef", + "name": "yt", + "requires": [], + "size": 4445904, + "version": "2.6.1" + }, + "yt-2.6.2-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "freetype 2.4*", + "h5py 2.2*", + "hdf5 1.8.9", + "libpng 1.5.13", + "matplotlib", + "numpy 1.8*", + "python 2.7*" + ], + "license": "BSD", + "md5": "a7674a5e9f4b25f6d59ca5418e64fc11", + "name": "yt", + "requires": [], + "size": 4578258, + "version": "2.6.2" + }, + "yt-3.0-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "h5py 2.3*", + "ipython", + "matplotlib", + "numpy 1.8*", + "python 2.7*", + "sympy 0.7.5" + ], + "license": "BSD", + "md5": "1bced8e0159328228932a98e18b963c0", + "name": "yt", + "requires": [], + "size": 7237354, + "version": "3.0" + }, + "yt-3.0.1-np18py27_0.tar.bz2": { + "build": "np18py27_0", + "build_number": 0, + "date": "2014-09-04", + "depends": [ + "h5py 2.3*", + "ipython", + "matplotlib", + "numpy 1.8*", + "python 2.7*", + "sympy 0.7.5" + ], + "license": "BSD", + "md5": "a514c86506bb07ec0338991bb1c60279", + "name": "yt", + "requires": [], + "size": 7697461, + "version": "3.0.1" + }, + "yt-3.0.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-09-09", + "depends": [ + "h5py 2.3*", + "ipython", + "matplotlib", + "numpy 1.9*", + "python 2.7*", + "sympy 0.7.5" + ], + "license": "BSD", + "md5": "f7b55959b789f32548429fb9d940a8d0", + "name": "yt", + "requires": [], + "size": 7698917, + "version": "3.0.1" + }, + "yt-3.0.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2014-10-03", + "depends": [ + "h5py 2.3*", + "ipython", + "matplotlib", + "numpy 1.9*", + "python 2.7*", + "sympy 0.7.5" + ], + "license": "BSD", + "md5": "08a4b1d0dbfbee6cb0c4c38169f08e70", + "name": "yt", + "requires": [], + "size": 7775951, + "version": "3.0.2" + }, + "yt-3.1-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "h5py 2.4*", + "ipython", + "matplotlib", + "numpy 1.9*", + "python 2.7*", + "sympy 0.7.6" + ], + "license": "BSD", + "md5": "069b767c02c637e51c7dce0b3e8e49d6", + "name": "yt", + "requires": [], + "size": 7906731, + "version": "3.1" + }, + "yt-3.2-np19py27_0.tar.bz2": { + "build": "np19py27_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "h5py 2.5*", + "ipython", + "matplotlib", + "numpy 1.9*", + "python 2.7*", + "sympy 0.7.6" + ], + "license": "BSD", + "md5": "0cb22102786fc5a63be5f57a4b4d6475", + "name": "yt", + "requires": [], + "size": 8386890, + "version": "3.2" + }, + "yt-3.2-np19py34_0.tar.bz2": { + "build": "np19py34_0", + "build_number": 0, + "date": "2015-07-27", + "depends": [ + "h5py 2.5*", + "ipython", + "matplotlib", + "numpy 1.9*", + "python 3.4*", + "sympy 0.7.6" + ], + "license": "BSD", + "md5": "25f3a08c446b743929ccff6e6d2f783c", + "name": "yt", + "requires": [], + "size": 8586892, + "version": "3.2" + }, + "yt-3.2.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "h5py", + "ipython", + "matplotlib", + "numpy", + "python 2.7*", + "sympy" + ], + "license": "BSD", + "md5": "4f4f894a4aae271a0bca336ed4fc038a", + "name": "yt", + "requires": [], + "size": 8129582, + "version": "3.2.1" + }, + "yt-3.2.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "h5py", + "ipython", + "matplotlib", + "numpy", + "python 3.4*", + "sympy" + ], + "license": "BSD", + "md5": "029a132c8e4d31585e6cfc0db9b9ec56", + "name": "yt", + "requires": [], + "size": 8156560, + "version": "3.2.1" + }, + "yt-3.2.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "h5py", + "ipython", + "matplotlib", + "numpy", + "python 2.7*", + "sympy" + ], + "license": "BSD", + "md5": "eb9bdbf1b4ff1755620ecc2f448982af", + "name": "yt", + "requires": [], + "size": 8154573, + "version": "3.2.2" + }, + "yt-3.2.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "h5py", + "ipython", + "matplotlib", + "numpy", + "python 3.4*", + "sympy" + ], + "license": "BSD", + "md5": "22d26aa1513cf1c1fbeb262aa3bef836", + "name": "yt", + "requires": [], + "size": 8147885, + "version": "3.2.2" + }, + "yt-3.2.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-11-16", + "depends": [ + "h5py", + "ipython", + "matplotlib", + "numpy", + "python 3.5*", + "sympy" + ], + "license": "BSD", + "md5": "a0abff8eb12ac504d356cdb348cd8e2d", + "name": "yt", + "requires": [], + "size": 8152873, + "version": "3.2.2" + }, + "yt-3.2.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "h5py", + "matplotlib", + "numpy", + "python 2.7*", + "sympy" + ], + "license": "BSD", + "md5": "cc82fdaa2dfb3c8685aa0be18ca1db04", + "name": "yt", + "requires": [], + "size": 8167507, + "version": "3.2.3" + }, + "yt-3.2.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "h5py", + "matplotlib", + "numpy", + "python 3.4*", + "sympy" + ], + "license": "BSD", + "md5": "ea69bd900d447d77c428e32721e73b7b", + "name": "yt", + "requires": [], + "size": 8156674, + "version": "3.2.3" + }, + "yt-3.2.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2016-02-10", + "depends": [ + "h5py", + "matplotlib", + "numpy", + "python 3.5*", + "sympy" + ], + "license": "BSD", + "md5": "313233a175cbcb9e24e65fca9dca6959", + "name": "yt", + "requires": [], + "size": 8001963, + "version": "3.2.3" + }, + "zeromq-2.2.0-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "util-linux 2.21" + ], + "license": "LGPL", + "md5": "21e4285a09a2260e8ccad61269619387", + "name": "zeromq", + "requires": [], + "size": 1663334, + "version": "2.2.0" + }, + "zeromq-2.2.0-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2014-08-22", + "depends": [ + "util-linux 2.21" + ], + "license": "LGPL", + "md5": "9d6389f6f46b26c95e6cae66e4b7b275", + "name": "zeromq", + "requires": [], + "size": 2277712, + "version": "2.2.0" + }, + "zeromq-4.0.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libsodium 0.4.5" + ], + "license": "LGPL", + "md5": "e533bc4a5334d0aa07ccdccddce4cb77", + "name": "zeromq", + "requires": [], + "size": 2475335, + "version": "4.0.3" + }, + "zeromq-4.0.4-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "libsodium 0.4.5" + ], + "license": "LGPL", + "md5": "ff3a69fb0b0df1e2d731a4b8b845e982", + "name": "zeromq", + "requires": [], + "size": 2474959, + "version": "4.0.4" + }, + "zeromq-4.0.5-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-04-23", + "depends": [ + "libsodium 0.4.5" + ], + "license": "LGPL", + "md5": "b46ec706c90e977d0cedd784c7417811", + "name": "zeromq", + "requires": [], + "size": 2727851, + "version": "4.0.5" + }, + "zeromq-4.1.3-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-10-20", + "depends": [ + "libsodium 1.0.3" + ], + "license": "LGPL", + "md5": "1100b6a69c2de16989be313296942388", + "name": "zeromq", + "requires": [], + "size": 4253169, + "version": "4.1.3" + }, + "zlib-1.2.7-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2014-08-22", + "depends": [], + "license": "zlib (http://zlib.net/zlib_license.html)", + "license_family": "Other", + "md5": "16b53f7f3d430b6ae4ae8980323c7fd8", + "name": "zlib", + "requires": [], + "size": 97283, + "version": "1.2.7" + }, + "zlib-1.2.7-1.tar.bz2": { + "build": "1", + "build_number": 1, + "date": "2015-01-05", + "depends": [], + "license": "zlib (http://zlib.net/zlib_license.html)", + "license_family": "Other", + "md5": "b521917e997ffa8da6a13e53d0a87f06", + "name": "zlib", + "requires": [], + "size": 101876, + "version": "1.2.7" + }, + "zlib-1.2.7-2.tar.bz2": { + "build": "2", + "build_number": 2, + "date": "2015-01-05", + "depends": [], + "license": "zlib (http://zlib.net/zlib_license.html)", + "license_family": "Other", + "md5": "c1a5020d9930d4a30a595d82c078c0bf", + "name": "zlib", + "requires": [], + "size": 101887, + "version": "1.2.7" + }, + "zlib-1.2.8-0.tar.bz2": { + "build": "0", + "build_number": 0, + "date": "2015-01-05", + "depends": [], + "license": "zlib (http://zlib.net/zlib_license.html)", + "license_family": "Other", + "md5": "42f5acc5a5ec3340b72092fcc129157b", + "name": "zlib", + "requires": [], + "size": 102434, + "version": "1.2.8" + }, + "zope.deprecation-4.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "626094dc7f07261ced9b0c66de8664ee", + "name": "zope.deprecation", + "requires": [], + "size": 12538, + "version": "4.1.1" + }, + "zope.deprecation-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "343c485c38ba5e10443772e4ce8eb4eb", + "name": "zope.deprecation", + "requires": [], + "size": 12482, + "version": "4.1.1" + }, + "zope.deprecation-4.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "5eed5412e2498481f51dc7c8de3975e6", + "name": "zope.deprecation", + "requires": [], + "size": 13235, + "version": "4.1.1" + }, + "zope.deprecation-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-10-27", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "cd486c11d6227475c40f229cdbded652", + "name": "zope.deprecation", + "requires": [], + "size": 13169, + "version": "4.1.1" + }, + "zope.deprecation-4.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.6*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "c3061739d921b9b3bd0fcfd3aafe039d", + "name": "zope.deprecation", + "requires": [], + "size": 12599, + "version": "4.1.2" + }, + "zope.deprecation-4.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 2.7*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "f2a8d9fc8ebdd422ad62f3125bf012b8", + "name": "zope.deprecation", + "requires": [], + "size": 12526, + "version": "4.1.2" + }, + "zope.deprecation-4.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 3.3*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "b6d600e25084e4ace2d0c11a06ba0f62", + "name": "zope.deprecation", + "requires": [], + "size": 13353, + "version": "4.1.2" + }, + "zope.deprecation-4.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-14", + "depends": [ + "python 3.4*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "eec0517651bb849f7f455652fbb24e52", + "name": "zope.deprecation", + "requires": [], + "size": 13245, + "version": "4.1.2" + }, + "zope.deprecation-4.1.2-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "setuptools" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "67dc0c8db915000cabe0f9ff7d814cf6", + "name": "zope.deprecation", + "requires": [], + "size": 13700, + "version": "4.1.2" + }, + "zope.interface-4.0.5-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "e361afda5c6efe88b5a3e9a001f4db62", + "name": "zope.interface", + "requires": [], + "size": 142394, + "version": "4.0.5" + }, + "zope.interface-4.0.5-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "90bc2ac608c516527a8c7474850fe4b0", + "name": "zope.interface", + "requires": [], + "size": 141925, + "version": "4.0.5" + }, + "zope.interface-4.0.5-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 3.3*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "979522d1f2a83a4cb6068ded106ae314", + "name": "zope.interface", + "requires": [], + "size": 156495, + "version": "4.0.5" + }, + "zope.interface-4.0.5-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "9cc2bbf1602529138f6e31e8edfed410", + "name": "zope.interface", + "requires": [], + "size": 151466, + "version": "4.0.5" + }, + "zope.interface-4.1.1-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "57b378f32a6c835870a997e514782503", + "name": "zope.interface", + "requires": [], + "size": 143795, + "version": "4.1.1" + }, + "zope.interface-4.1.1-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "d7cb15096e0672e842021c3306a4c11d", + "name": "zope.interface", + "requires": [], + "size": 143472, + "version": "4.1.1" + }, + "zope.interface-4.1.1-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 3.3*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "c0dd929496ae47d645d610d61e457ad9", + "name": "zope.interface", + "requires": [], + "size": 157746, + "version": "4.1.1" + }, + "zope.interface-4.1.1-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2014-08-22", + "depends": [ + "nose", + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "01780eb2dfc5836d2cef3b3f986b5fb4", + "name": "zope.interface", + "requires": [], + "size": 152687, + "version": "4.1.1" + }, + "zope.interface-4.1.2-py26_0.tar.bz2": { + "build": "py26_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "a0d583e91955eb5c9eaaf53c22b5376a", + "name": "zope.interface", + "requires": [], + "size": 147156, + "version": "4.1.2" + }, + "zope.interface-4.1.2-py26_1.tar.bz2": { + "build": "py26_1", + "build_number": 1, + "date": "2015-06-22", + "depends": [ + "nose", + "python 2.6*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "2aa109b6efdebaab67b79a1fc330185d", + "name": "zope.interface", + "requires": [], + "size": 161237, + "version": "4.1.2" + }, + "zope.interface-4.1.2-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "e05d9e6f5fa58a53323bbe2f65c38024", + "name": "zope.interface", + "requires": [], + "size": 146596, + "version": "4.1.2" + }, + "zope.interface-4.1.2-py27_1.tar.bz2": { + "build": "py27_1", + "build_number": 1, + "date": "2015-06-22", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "896a4b69b03f3b6d53c4207a2cb1f9d1", + "name": "zope.interface", + "requires": [], + "size": 160697, + "version": "4.1.2" + }, + "zope.interface-4.1.2-py33_0.tar.bz2": { + "build": "py33_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "nose", + "python 3.3*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "1d1286c970028b4934e07ffd0d61c007", + "name": "zope.interface", + "requires": [], + "size": 161013, + "version": "4.1.2" + }, + "zope.interface-4.1.2-py33_1.tar.bz2": { + "build": "py33_1", + "build_number": 1, + "date": "2015-06-22", + "depends": [ + "nose", + "python 3.3*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "a2acefed27e58a1d9babdd177648976c", + "name": "zope.interface", + "requires": [], + "size": 175123, + "version": "4.1.2" + }, + "zope.interface-4.1.2-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-01-05", + "depends": [ + "nose", + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "bde22926767a4e0d13efa0dc41bf78dd", + "name": "zope.interface", + "requires": [], + "size": 156987, + "version": "4.1.2" + }, + "zope.interface-4.1.2-py34_1.tar.bz2": { + "build": "py34_1", + "build_number": 1, + "date": "2015-06-22", + "depends": [ + "nose", + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "c232ef665bb894e7f6427f7894930d91", + "name": "zope.interface", + "requires": [], + "size": 171567, + "version": "4.1.2" + }, + "zope.interface-4.1.2-py35_1.tar.bz2": { + "build": "py35_1", + "build_number": 1, + "date": "2015-09-10", + "depends": [ + "nose", + "python 3.5*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "f281d5895ae45d5dd60be50ad80319d8", + "name": "zope.interface", + "requires": [], + "size": 171315, + "version": "4.1.2" + }, + "zope.interface-4.1.3-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "nose", + "python 2.7*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "c795a23d026ef711c7947a8021f163cd", + "name": "zope.interface", + "requires": [], + "size": 160269, + "version": "4.1.3" + }, + "zope.interface-4.1.3-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "nose", + "python 3.4*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "c3b6e78490b3fae76bf4a4bd6897efe0", + "name": "zope.interface", + "requires": [], + "size": 171174, + "version": "4.1.3" + }, + "zope.interface-4.1.3-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-10-05", + "depends": [ + "nose", + "python 3.5*" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "6c701d9f9956ed72e0e4b07cd41851a9", + "name": "zope.interface", + "requires": [], + "size": 171032, + "version": "4.1.3" + }, + "zope.sqlalchemy-0.7.6-py27_0.tar.bz2": { + "build": "py27_0", + "build_number": 0, + "date": "2015-08-06", + "depends": [ + "python 2.7*", + "sqlalchemy", + "transaction 1.4.4", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "b70c977bca3504d8424a9a168cf7f708", + "name": "zope.sqlalchemy", + "requires": [], + "size": 24001, + "version": "0.7.6" + }, + "zope.sqlalchemy-0.7.6-py34_0.tar.bz2": { + "build": "py34_0", + "build_number": 0, + "date": "2015-08-06", + "depends": [ + "python 3.4*", + "sqlalchemy", + "transaction 1.4.4", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "de08b52f733241b2b89733a89f62fce2", + "name": "zope.sqlalchemy", + "requires": [], + "size": 24753, + "version": "0.7.6" + }, + "zope.sqlalchemy-0.7.6-py35_0.tar.bz2": { + "build": "py35_0", + "build_number": 0, + "date": "2015-09-10", + "depends": [ + "python 3.5*", + "sqlalchemy", + "transaction 1.4.4", + "zope.interface 4.1.2" + ], + "license": "ZPL 2.1", + "license_family": "Other", + "md5": "a9dabf7d7e221316c2c4c0ce22d7bfd6", + "name": "zope.sqlalchemy", + "requires": [], + "size": 24668, + "version": "0.7.6" + } + } +}