{ "info": { "author": "Mike Jarvis", "author_email": "michael@jarvis.net", "bugtrack_url": null, "classifiers": [], "description": ".. image:: https://travis-ci.org/rmjarvis/TreeCorr.svg?branch=main\n :target: https://travis-ci.org/rmjarvis/TreeCorr\n.. image:: https://codecov.io/gh/rmjarvis/TreeCorr/branch/main/graph/badge.svg\n :target: https://codecov.io/gh/rmjarvis/TreeCorr\n\n\nTreeCorr is a package for efficiently computing 2-point and 3-point correlation\nfunctions.\n\n- The code is hosted at https://github.com/rmjarvis/TreeCorr\n- It can compute correlations of regular number counts, weak lensing shears, or\n scalar quantities such as convergence or CMB temperature fluctutations.\n- 2-point correlations may be auto-correlations or cross-correlations. This\n includes shear-shear, count-shear, count-count, kappa-kappa, etc. (Any\n combination of shear, kappa, and counts.)\n- 3-point correlations currently can only be auto-correlations. This includes\n shear-shear-shear, count-count-count, and kappa-kappa-kappa. The cross\n varieties are planned to be added in the near future.\n- Both 2- and 3-point functions can be done with the correct curved-sky\n calculation using RA, Dec coordinates, on a Euclidean tangent plane, or in\n 3D using either (RA,Dec,r) or (x,y,z) positions.\n- The front end is in Python, which can be used as a Python module or as a\n standalone executable using configuration files. (The executable is corr2\n for 2-point and corr3 for 3-point.)\n- The actual computation of the correlation functions is done in C++ using ball\n trees (similar to kd trees), which make the calculation extremely efficient.\n- When available, OpenMP is used to run in parallel on multi-core machines.\n- Approximate running time for 2-point shear-shear is ~30 sec * (N/10^6) / core\n for a bin size b=0.1 in log(r). It scales as b^(-2). This is the slowest\n of the various kinds of 2-point correlations, so others will be a bit faster,\n but with the same scaling with N and b.\n- The running time for 3-point functions are highly variable depending on the\n range of triangle geometries you are calculating. They are significantly\n slower than the 2-point functions, but many orders of magnitude faster than\n brute force algorithms.\n- **If you use TreeCorr in published research, please reference:\n Jarvis, Bernstein, & Jain, 2004, MNRAS, 352, 338**\n (I'm working on new paper about TreeCorr, including some of the improvements\n I've made since then, but this will suffice as a reference for now.)\n- Record on the Astrophyics Source Code Library: http://ascl.net/1508.007\n- Developed by Mike Jarvis. Fee free to contact me with questions or comments\n at mikejarvis17 at gmail. Or post an issue (see below) if you have any\n problems with the code.\n\nThe code is licensed under a FreeBSD license. Essentially, you can use the\ncode in any way you want, but if you distribute it, you need to include the\nfile ``TreeCorr_LICENSE`` with the distribution. See that file for details.\n\n\nInstallation\n------------\n\nThe easiest ways to install TreeCorr are either with pip::\n\n pip install treecorr\n\nor with conda::\n\n conda install -c conda-forge treecorr\n\nIf you have previously installed TreeCorr, and want to upgrade to a new\nreleased version, you should do::\n\n pip install treecorr --upgrade\n\nor::\n\n conda update -c conda-forge treecorr\n\nDepending on the write permissions of the python distribution for your specific\nsystem, you might need to use one of the following variants for pip installation::\n\n sudo pip install treecorr\n pip install treecorr --user\n\nThe latter installs the Python module into ``~/.local/lib/python3.7/site-packages``,\nwhich is normally already in your PYTHONPATH, but it puts the executables\n``corr2`` and ``corr3`` into ``~/.local/bin`` which is probably not in your PATH.\nTo use these scripts, you should add this directory to your PATH. If you would\nrather install into a different prefix rather than ~/.local, you can use::\n\n pip install treecorr --install-option=\"--prefix=PREFIX\"\n\nThis would install the executables into ``PREFIX/bin`` and the Python module\ninto ``PREFIX/lib/python3.7/site-packages``.\n\n\nIf you would rather download the tarball and install TreeCorr yourself,\nthat is also relatively straightforward:\n\n1. Download TreeCorr\n^^^^^^^^^^^^^^^^^^^^\n\n You can download the latest tarball from::\n\n https://github.com/rmjarvis/TreeCorr/releases/\n\n Or you can clone the repository using either of the following::\n\n git clone git@github.com:rmjarvis/TreeCorr.git\n git clone https://github.com/rmjarvis/TreeCorr.git\n\n which will start out in the current stable release branch.\n\n Either way, cd into the TreeCorr directory.\n\n2. Install dependencies\n^^^^^^^^^^^^^^^^^^^^^^^\n\n All required dependencies should be installed automatically for you by\n setup.py or conda, so you should not need to worry about these. But if you\n are interested, the dependencies are:\n\n - numpy\n - pyyaml\n - LSSTDESC.Coord\n - cffi\n\n They can all be installed at once by running::\n\n pip install -r requirements.txt\n\n or::\n\n conda install -c conda-forge treecorr --only-deps\n\n The last dependency is the only one that typically could cause any problems, since it in\n turn depends on a library called libffi. This is a common thing to have installed already\n on linux machines, so it is likely that you won't have any trouble with it, but if you get\n errors about \"ffi.h\" not being found, then you may need to either install it yourself or\n update your paths to include the directory where ffi.h is found.\n\n See https://cffi.readthedocs.io/en/latest/installation.html for more information about\n installing cffi, including its libffi dependency.\n\n .. note::\n\n Three additional modules are not required for basic TreeCorr operations, but are\n potentially useful.\n\n a) fitsio is required for reading FITS catalogs or writing to FITS output files.\n\n b) pandas will signficantly speed up reading from ASCII catalogs.\n\n c) h5py is required for reading HDF5 catalogs.\n\n These are all pip installable::\n\n pip install fitsio\n pip install pandas\n pip install h5py\n\n But they are not installed with TreeCorr automatically.\n\n\n3. Install\n^^^^^^^^^^\n\n You can then install TreeCorr in the normal way with setup.py. Typically this would be the\n command::\n\n python setup.py install\n\n If you don't have write permission in your python distribution, you might need\n to use::\n\n python setup.py install --user\n\n In addition to installing the Python module ``treecorr``, this will install\n the executables ``corr2`` and ``corr3`` in a ``bin`` folder somewhere on your\n system. Look for a line like::\n\n Installing corr2 script to /anaconda3/bin\n\n or similar in the output to see where the scripts are installed. If the\n directory is not in your path, you will also get a warning message at the\n end letting you know which directory you should add to your path if you want\n to run these scripts.\n\n\n4. Run Tests (optional)\n^^^^^^^^^^^^^^^^^^^^^^^\n\n If you want to run the unit tests, you can do the following::\n\n pip install -r test_requirements.txt\n cd tests\n nosetests\n\n\nTwo-point Correlations\n----------------------\n\nThis software is able to compute a variety of two-point correlations:\n\n:NN: The normal two-point correlation function of number counts (typically\n galaxy counts).\n\n:GG: Two-point shear-shear correlation function.\n\n:KK: Nominally the two-point kappa-kappa correlation function, although any\n scalar quantity can be used as \"kappa\". In lensing, kappa is the\n convergence, but this could be used for temperature, size, etc.\n\n:NG: Cross-correlation of counts with shear. This is what is often called\n galaxy-galaxy lensing.\n\n:NK: Cross-correlation of counts with kappa. Again, \"kappa\" here can be any scalar\n quantity.\n\n:KG: Cross-correlation of convergence with shear. Like the NG calculation, but\n weighting the pairs by the kappa values the foreground points.\n\nSee `Two-point Correlation Functions\n`_ for more details.\n\nThree-point Correlations\n------------------------\n\nThis software is not yet able to compute three-point cross-correlations, so the\nonly avaiable three-point correlations are:\n\n:NNN: Three-point correlation function of number counts.\n\n:GGG: Three-point shear correlation function. We use the \"natural components\"\n called Gamma, described by Schneider & Lombardi (2003) (Astron.Astrophys.\n 397, 809) using the triangle centroid as the reference point.\n\n:KKK: Three-point kappa correlation function. Again, \"kappa\" here can be any\n scalar quantity.\n\nSee `Three-point Correlation Functions\n`_ for more details.\n\nRunning corr2 and corr3\n-----------------------\n\nThe executables corr2 and corr3 each take one required command-line argument,\nwhich is the name of a configuration file::\n\n corr2 config_file\n corr3 config_file\n\nA sample configuration file for corr2 is provided, called sample.params.\nSee `Configuration Parameters `_\nfor the complete documentation about the allowed parameters.\n\nYou can also specify parameters on the command line after the name of\nthe configuration file. e.g.::\n\n corr2 config_file file_name=file1.dat gg_file_name=file1.out\n corr2 config_file file_name=file2.dat gg_file_name=file2.out\n ...\n\nThis can be useful when running the program from a script for lots of input\nfiles.\n\nSee `Using configuration files `_\nfor more details.\n\nUsing the Python module\n-----------------------\n\nThe typical usage in python is in three stages:\n\n1. Define one or more Catalogs with the input data to be correlated.\n2. Define the correlation function that you want to perform on those data.\n3. Run the correlation by calling ``process``.\n4. Maybe write the results to a file or use them in some way.\n\nFor instance, computing a shear-shear correlation from an input file stored\nin a fits file would look something like the following::\n\n >>> import treecorr\n >>> cat = treecorr.Catalog('cat.fits', ra_col='RA', dec_col='DEC',\n ... ra_units='degrees', dec_units='degrees',\n ... g1_col='GAMMA1', g2_col='GAMMA2')\n >>> gg = treecorr.GGCorrelation(min_sep=1., max_sep=100., bin_size=0.1,\n ... sep_units='arcmin')\n >>> gg.process(cat)\n >>> xip = gg.xip # The xi_plus correlation function\n >>> xim = gg.xim # The xi_minus correlation function\n >>> gg.write('gg.out') # Write results to a file\n\nFor more details, see our slightly longer `Getting Started Guide\n`_.\n\nOr for a more involved worked example, see our `Jupyter notebook tutorial\n`_.\n\nAnd for the complete details about all aspects of the code, see the `Sphinx-generated\ndocumentation `_.\n\n\nReporting bugs\n--------------\n\nIf you find a bug running the code, please report it at:\n\nhttps://github.com/rmjarvis/TreeCorr/issues\n\nClick \"New Issue\", which will open up a form for you to fill in with the\ndetails of the problem you are having.\n\n\nRequesting features\n-------------------\n\nIf you would like to request a new feature, do the same thing. Open a new\nissue and fill in the details of the feature you would like added to TreeCorr.\nOr if there is already an issue for your desired feature, please add to the\ndiscussion, describing your use case. The more people who say they want a\nfeature, the more likely I am to get around to it sooner than later.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/rmjarvis/TreeCorr/releases/tag/v4.2.8.zip", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/rmjarvis/TreeCorr", "keywords": "", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "TreeCorr", "package_url": "https://pypi.org/project/TreeCorr/", "platform": null, "project_url": "https://pypi.org/project/TreeCorr/", "project_urls": { "Download": "https://github.com/rmjarvis/TreeCorr/releases/tag/v4.2.8.zip", "Homepage": "https://github.com/rmjarvis/TreeCorr" }, "release_url": "https://pypi.org/project/TreeCorr/4.2.8/", "requires_dist": [ "numpy", "cffi", "pyyaml", "LSSTDESC.Coord (>=1.1)" ], "requires_python": "", "summary": "Python module for computing 2-point correlation functions", "version": "4.2.8", "yanked": false, "yanked_reason": null }, "last_serial": 13447447, "releases": { "3.0.0": [ { "comment_text": "", "digests": { "md5": "863d753ebf9b344f0b91fa20b9ad2044", "sha256": "b1971fa8ad7a46424b9492a5a05d3564706f3c63664b9a5e6b7ce68fd1f515fa" }, "downloads": -1, "filename": "TreeCorr-3.0.0.tar.gz", "has_sig": false, "md5_digest": "863d753ebf9b344f0b91fa20b9ad2044", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80442, "upload_time": "2014-08-21T08:03:42", "upload_time_iso_8601": "2014-08-21T08:03:42.906805Z", "url": "https://files.pythonhosted.org/packages/c3/55/893da8393ff35b3c4076dfad2fc32a9ba4a465fc63135dd5f46f640934f0/TreeCorr-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "b39c346e8e2ef2deb21973526a1da8a3", "sha256": "35526082407dbbac756782aa5898063b67fdb8044e7a421c9583a7601a1b469f" }, "downloads": -1, "filename": "TreeCorr-3.0.1.tar.gz", "has_sig": false, "md5_digest": "b39c346e8e2ef2deb21973526a1da8a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80600, "upload_time": "2014-08-21T22:22:46", "upload_time_iso_8601": "2014-08-21T22:22:46.139892Z", "url": "https://files.pythonhosted.org/packages/9b/b4/7524c5415adf0e860495a9239464cfcf70cc9a8d10a29072b0c535c0f18a/TreeCorr-3.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "a721ed3a3d227fdc8d1475d6963597b1", "sha256": "4c66c4f873a96bca7facbb6d2417f213704c9fc76d2ef51763613296ec1644e4" }, "downloads": -1, "filename": "TreeCorr-3.0.2.tar.gz", "has_sig": false, "md5_digest": "a721ed3a3d227fdc8d1475d6963597b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80615, "upload_time": "2014-08-21T22:30:43", "upload_time_iso_8601": "2014-08-21T22:30:43.996791Z", "url": "https://files.pythonhosted.org/packages/85/84/47db1fd83442508e7b6aea532a3f3832d405095308483277e3a47a819d88/TreeCorr-3.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "31f5abc7385a44d0c8e27b999b3d7d96", "sha256": "0f104f1a70fb0cb43b3184442bff26c09a70ac80a65a1063420ae73fee2dbe49" }, "downloads": -1, "filename": "TreeCorr-3.1.0.tar.gz", "has_sig": false, "md5_digest": "31f5abc7385a44d0c8e27b999b3d7d96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90387, "upload_time": "2014-08-30T03:13:26", "upload_time_iso_8601": "2014-08-30T03:13:26.508628Z", "url": "https://files.pythonhosted.org/packages/93/16/c185043fbd511bed828af7b67425892f7fc6cf057d239be8ce366fcba7b2/TreeCorr-3.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "55b37ccf565afbaf304131336f1ffbab", "sha256": "dd02daedd39f3b9942ea98781567545d89253181ff88117555c850b4942419b9" }, "downloads": -1, "filename": "TreeCorr-3.1.1.tar.gz", "has_sig": false, "md5_digest": "55b37ccf565afbaf304131336f1ffbab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90439, "upload_time": "2015-03-18T23:37:22", "upload_time_iso_8601": "2015-03-18T23:37:22.037102Z", "url": "https://files.pythonhosted.org/packages/68/97/dd7c2d9edbb6844dfe9770293de1e1a7a5e78e62debfca3a6ed13d051fe8/TreeCorr-3.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "209df900b38b97d8e2c0a16600028ccf", "sha256": "99973bf96c2bc1ca06ba271d054cae610cd3b8602f03a6264318de10f5c8720a" }, "downloads": -1, "filename": "TreeCorr-3.1.2.tar.gz", "has_sig": false, "md5_digest": "209df900b38b97d8e2c0a16600028ccf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91107, "upload_time": "2015-09-26T23:12:02", "upload_time_iso_8601": "2015-09-26T23:12:02.070400Z", "url": "https://files.pythonhosted.org/packages/eb/08/09f55771900c2bb25eda85df836ca6c166dfb040f4af6e2590640dded026/TreeCorr-3.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "c29c2e9348647ad0c65ed42fe918c8fa", "sha256": "86fa7385d7d6a4b69ade64362d13a2034a702fd7c448c5d2282bb0d8a39e288d" }, "downloads": -1, "filename": "TreeCorr-3.2.0.zip", "has_sig": false, "md5_digest": "c29c2e9348647ad0c65ed42fe918c8fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 230693, "upload_time": "2015-10-01T22:07:36", "upload_time_iso_8601": "2015-10-01T22:07:36.606703Z", "url": "https://files.pythonhosted.org/packages/74/e1/54e4976f29c406f1e9be323b6e91fdde0ef9b6132c963e3015bd43b01f5e/TreeCorr-3.2.0.zip", "yanked": false, "yanked_reason": null } ], "3.2.1": [ { "comment_text": "", "digests": { "md5": "2050deb34ebb20856e3113efec3e2b10", "sha256": "73cd7830caef98dd0b3611db727e2f232772480f2873ad3418d37b810c692a31" }, "downloads": -1, "filename": "TreeCorr-3.2.1.tar.gz", "has_sig": false, "md5_digest": "2050deb34ebb20856e3113efec3e2b10", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162849, "upload_time": "2015-10-10T12:57:39", "upload_time_iso_8601": "2015-10-10T12:57:39.396361Z", "url": "https://files.pythonhosted.org/packages/e0/79/afc928f1be56a1d156898970497abe7b2a9706e4f57a59f08305ea42a427/TreeCorr-3.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "856caa0b988f557053b82c98ea6c9730", "sha256": "de64c2dd868f988d034abe7ba7cf8437e3297cb9cf19f67f1f15865351f99e22" }, "downloads": -1, "filename": "TreeCorr-3.2.2.tar.gz", "has_sig": false, "md5_digest": "856caa0b988f557053b82c98ea6c9730", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163027, "upload_time": "2015-10-21T14:39:50", "upload_time_iso_8601": "2015-10-21T14:39:50.703573Z", "url": "https://files.pythonhosted.org/packages/81/cc/3ef171b96c1a587e462a6bc2c832c677db61a8c9f5857e978408f3009ded/TreeCorr-3.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.3": [ { "comment_text": "", "digests": { "md5": "976b041625145eb299dc145f232e68ef", "sha256": "710256142f9d29a6d077381ae028c06436ea4ab5cf61519377019bbb9fee7312" }, "downloads": -1, "filename": "TreeCorr-3.2.3.tar.gz", "has_sig": false, "md5_digest": "976b041625145eb299dc145f232e68ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163066, "upload_time": "2015-11-06T17:58:16", "upload_time_iso_8601": "2015-11-06T17:58:16.972769Z", "url": "https://files.pythonhosted.org/packages/81/a2/8f9340809d9a20f21dc96846b5c847aeeeaab2a18331279051a4a57f2f4f/TreeCorr-3.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "2f56d41dc42454c6a1c98a6e98b7baa1", "sha256": "a2e2c6b5528ffcc0db7b4c2c1df2d283af21da69ddb190fa74e184cc58d6be51" }, "downloads": -1, "filename": "TreeCorr-3.3.0.tar.gz", "has_sig": false, "md5_digest": "2f56d41dc42454c6a1c98a6e98b7baa1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179475, "upload_time": "2016-06-13T20:04:26", "upload_time_iso_8601": "2016-06-13T20:04:26.367835Z", "url": "https://files.pythonhosted.org/packages/f0/bc/e7392ba32ac9a140babf0c28717b719ab08271ed7b614359cf6d2dfd0acb/TreeCorr-3.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "3c3619b701650b030932ee205854508e", "sha256": "3399876b824dc14d20d102c4693f6f040ea7bcf418e29691598f3574d8731fbc" }, "downloads": -1, "filename": "TreeCorr-3.3.1.tar.gz", "has_sig": false, "md5_digest": "3c3619b701650b030932ee205854508e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 179747, "upload_time": "2016-06-17T16:29:21", "upload_time_iso_8601": "2016-06-17T16:29:21.633819Z", "url": "https://files.pythonhosted.org/packages/41/8a/64be9a0b09c3fa5b9270e500206c77555458d352ad1cc1fb01a351cdbeed/TreeCorr-3.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.10": [ { "comment_text": "", "digests": { "md5": "7b4c46798d6a49c2795a00d6778e58fd", "sha256": "d5821dcb55393d8c24acf7e2844f9f3c168c3aedecbc68d0c4cf7c6a4805a92d" }, "downloads": -1, "filename": "TreeCorr-3.3.10.tar.gz", "has_sig": false, "md5_digest": "7b4c46798d6a49c2795a00d6778e58fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 429077, "upload_time": "2018-10-01T22:31:08", "upload_time_iso_8601": "2018-10-01T22:31:08.076847Z", "url": "https://files.pythonhosted.org/packages/50/a6/f6945db6b3b98ce914fd91fb97ce08d748cc15cefdd5394e5b321d9a716b/TreeCorr-3.3.10.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.11": [ { "comment_text": "", "digests": { "md5": "7abc118834648e3d0019214390569ff8", "sha256": "e0acf0283fa3f5677061358621f6ae0fd7cc6bda8bfced1343256dd4f127b366" }, "downloads": -1, "filename": "TreeCorr-3.3.11.tar.gz", "has_sig": false, "md5_digest": "7abc118834648e3d0019214390569ff8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1086802, "upload_time": "2018-10-15T17:01:13", "upload_time_iso_8601": "2018-10-15T17:01:13.584812Z", "url": "https://files.pythonhosted.org/packages/b1/17/8b1cb2c860a0de50254b49cf63629b2841392a1bb0ddb2dbb2a9dbb12cd8/TreeCorr-3.3.11.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.2": [ { "comment_text": "", "digests": { "md5": "d2965a6b34797a09c74154b934ee5577", "sha256": "847f6b8716e32c2bc38ec53794694cb19dbb6feeff6180d2f1f4f39d9783929c" }, "downloads": -1, "filename": "TreeCorr-3.3.2.tar.gz", "has_sig": false, "md5_digest": "d2965a6b34797a09c74154b934ee5577", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425030, "upload_time": "2016-06-24T18:56:48", "upload_time_iso_8601": "2016-06-24T18:56:48.123036Z", "url": "https://files.pythonhosted.org/packages/47/3c/674dffa1774c73afea99c318d6bb7ef9fe570de2cda4d48b6594c2513562/TreeCorr-3.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.3": [ { "comment_text": "", "digests": { "md5": "86395334be4b2ecbaaf1cecffeb72f98", "sha256": "05f898572eeec0ebff1a1c38ba235613d838a86b51823613c54076b3cc7f2405" }, "downloads": -1, "filename": "TreeCorr-3.3.3.tar.gz", "has_sig": false, "md5_digest": "86395334be4b2ecbaaf1cecffeb72f98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425231, "upload_time": "2016-06-25T18:32:27", "upload_time_iso_8601": "2016-06-25T18:32:27.325288Z", "url": "https://files.pythonhosted.org/packages/00/2a/6f0f58b3971076fc369452a413542e1e32b9b27744dd1cb49c75c9808e07/TreeCorr-3.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.4": [ { "comment_text": "", "digests": { "md5": "24f82c5d50ce7c6d70b9a9a9b5c8e95d", "sha256": "45293fe8205c46a8f066f4ee10f7cbe202c1fbcf84ce99dd73fd3f54ecaa9896" }, "downloads": -1, "filename": "TreeCorr-3.3.4.tar.gz", "has_sig": false, "md5_digest": "24f82c5d50ce7c6d70b9a9a9b5c8e95d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425276, "upload_time": "2016-08-03T17:58:12", "upload_time_iso_8601": "2016-08-03T17:58:12.036516Z", "url": "https://files.pythonhosted.org/packages/3e/aa/0cde5ad021805947c3c68436e4db1cacddd63377b17857fa6f4b1135fb73/TreeCorr-3.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.5": [ { "comment_text": "", "digests": { "md5": "9d76b8a77b3fd36670b67d220d5a0d79", "sha256": "963f918e7dd4f45500429404065292df8b29e025db5469f74f2573c3e2611f30" }, "downloads": -1, "filename": "TreeCorr-3.3.5.tar.gz", "has_sig": false, "md5_digest": "9d76b8a77b3fd36670b67d220d5a0d79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425661, "upload_time": "2016-10-03T19:06:45", "upload_time_iso_8601": "2016-10-03T19:06:45.746780Z", "url": "https://files.pythonhosted.org/packages/fb/3b/a5b95f83cdab40fd75c618354a5de5ee8c9b747c3e4d3cc18751f5678e0e/TreeCorr-3.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.6": [ { "comment_text": "", "digests": { "md5": "f2b59f81b273f7215945ba5216d92584", "sha256": "67f75c64baca55400d463b275c1ad65708b366f7f20a907b64e4fa25e26c0ae2" }, "downloads": -1, "filename": "TreeCorr-3.3.6.tar.gz", "has_sig": false, "md5_digest": "f2b59f81b273f7215945ba5216d92584", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 426370, "upload_time": "2016-11-28T02:53:52", "upload_time_iso_8601": "2016-11-28T02:53:52.526894Z", "url": "https://files.pythonhosted.org/packages/6f/d7/7e39ee4b48ab3385c169bcfc8aaf6aaea62c5093f585b1d3022971512ac4/TreeCorr-3.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.7": [ { "comment_text": "", "digests": { "md5": "54bdf201d7e8a52b5fa9ea5e1ff1d101", "sha256": "bcd4c6b3525ba4843451121cfc0f08ed19e0b6284bad8ba6bc54a119304238ea" }, "downloads": -1, "filename": "TreeCorr-3.3.7.tar.gz", "has_sig": false, "md5_digest": "54bdf201d7e8a52b5fa9ea5e1ff1d101", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 428204, "upload_time": "2017-04-12T20:45:33", "upload_time_iso_8601": "2017-04-12T20:45:33.270717Z", "url": "https://files.pythonhosted.org/packages/5a/59/466fca95804e60a4ad0cf34de70e92fd57e6a711d09fbf1f0f8d00f833de/TreeCorr-3.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.8": [ { "comment_text": "", "digests": { "md5": "79fb85aa2dcc2e3bf1fca7895491b0d6", "sha256": "ab7e237fc7d132932215a9d5d43e54495ed78598a13486083cae60926841aa72" }, "downloads": -1, "filename": "TreeCorr-3.3.8.tar.gz", "has_sig": false, "md5_digest": "79fb85aa2dcc2e3bf1fca7895491b0d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 429166, "upload_time": "2018-10-01T21:17:34", "upload_time_iso_8601": "2018-10-01T21:17:34.049682Z", "url": "https://files.pythonhosted.org/packages/9b/39/0deb36f8608c27e253fefc5dfd5b0357540a3fc25d8644dca9083f099e41/TreeCorr-3.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "3.3.9": [ { "comment_text": "", "digests": { "md5": "5baa10e18316bfa85a94aa3155925486", "sha256": "c1d0c2e63a9b09edfd8a31f931ccf3a131df8e385501607acde04c5f178cc434" }, "downloads": -1, "filename": "TreeCorr-3.3.9.tar.gz", "has_sig": false, "md5_digest": "5baa10e18316bfa85a94aa3155925486", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 429197, "upload_time": "2018-10-01T21:26:50", "upload_time_iso_8601": "2018-10-01T21:26:50.621996Z", "url": "https://files.pythonhosted.org/packages/0f/ac/30118682cccf1acb46140bf83a872d2e6519bcddca1df2ba9ba4173d6ba4/TreeCorr-3.3.9.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "1e132fd7684db89c23a895a16510ce96", "sha256": "de9a198badb70c37f995c9fe21a07d57a41b3a9e3a22bd38023bba61ed070353" }, "downloads": -1, "filename": "TreeCorr-4.0.0.tar.gz", "has_sig": false, "md5_digest": "1e132fd7684db89c23a895a16510ce96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1256348, "upload_time": "2019-04-12T04:47:40", "upload_time_iso_8601": "2019-04-12T04:47:40.336049Z", "url": "https://files.pythonhosted.org/packages/c8/62/4f3628673ef8a1a22d7b17b06ad7e9cb3df2d24fbfa187bdfbdb8d85f453/TreeCorr-4.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "8b5e1fde089d636d909093c6d197ec57", "sha256": "d71ad0f08ac4706ecc6d746e2d8fdf3cc589d7023b78bac3a6aeaa33b4a64754" }, "downloads": -1, "filename": "TreeCorr-4.0.1.tar.gz", "has_sig": false, "md5_digest": "8b5e1fde089d636d909093c6d197ec57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1256435, "upload_time": "2019-04-12T18:10:03", "upload_time_iso_8601": "2019-04-12T18:10:03.804777Z", "url": "https://files.pythonhosted.org/packages/58/41/3ff4313457a38ff69b9f155b44a9fa76e89c724d550acb2d14fbbde363f7/TreeCorr-4.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.10": [ { "comment_text": "", "digests": { "md5": "c647fba3bf284c351595952399bde8a0", "sha256": "9a3ae532782e70cce8f6ee4053aa16a800e0bce960a596ecc8b98332d7094135" }, "downloads": -1, "filename": "TreeCorr-4.0.10.tar.gz", "has_sig": false, "md5_digest": "c647fba3bf284c351595952399bde8a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1393379, "upload_time": "2019-11-04T23:42:23", "upload_time_iso_8601": "2019-11-04T23:42:23.154201Z", "url": "https://files.pythonhosted.org/packages/29/88/a4ce586fc79907fdaf859f6093d9be1394bc410e732ac7b0ff77d71fd295/TreeCorr-4.0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "2950e4198773850b9a535ff90370d008", "sha256": "3332f51e178a1ae6b6e32900d89623eab573df2c7c2df4c719a280302822839d" }, "downloads": -1, "filename": "TreeCorr-4.0.2.tar.gz", "has_sig": false, "md5_digest": "2950e4198773850b9a535ff90370d008", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1390435, "upload_time": "2019-06-02T19:18:13", "upload_time_iso_8601": "2019-06-02T19:18:13.729402Z", "url": "https://files.pythonhosted.org/packages/89/de/7b39b50ae6f4560f465419612ce7b169bed6d887adb6c2e1f384ca9bb698/TreeCorr-4.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.3": [ { "comment_text": "", "digests": { "md5": "f4fe998a042065b79224468fa0e6cdbd", "sha256": "051618858552c3eef53c851f1e7d1d9b285e52e615c03f363c44576a41bd2686" }, "downloads": -1, "filename": "TreeCorr-4.0.3.tar.gz", "has_sig": false, "md5_digest": "f4fe998a042065b79224468fa0e6cdbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1390709, "upload_time": "2019-06-06T01:17:52", "upload_time_iso_8601": "2019-06-06T01:17:52.945785Z", "url": "https://files.pythonhosted.org/packages/3b/6d/a93807f56f71795e9123e7b7097a1b68b92b3613df288eec7f8c89254f5a/TreeCorr-4.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.4": [ { "comment_text": "", "digests": { "md5": "0bedfb085aead375b32fb342b2d603db", "sha256": "a02206c46f85efb9908aac7d221c2e612e65f91adbb0a3dc7270b9f7bab61da7" }, "downloads": -1, "filename": "TreeCorr-4.0.4.tar.gz", "has_sig": false, "md5_digest": "0bedfb085aead375b32fb342b2d603db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1391379, "upload_time": "2019-06-06T18:19:10", "upload_time_iso_8601": "2019-06-06T18:19:10.822368Z", "url": "https://files.pythonhosted.org/packages/06/72/0b86c778e815a0611a7fc7bd5239d17ed346d9f382b8733f6cab1b38a06e/TreeCorr-4.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.5": [ { "comment_text": "", "digests": { "md5": "8634bfeb4abf451201d0980da30eaa0e", "sha256": "989e97b8eed4b4a779b4dd16191615f4ef8fa5e45eac03288a96a411310e5df6" }, "downloads": -1, "filename": "TreeCorr-4.0.5.tar.gz", "has_sig": false, "md5_digest": "8634bfeb4abf451201d0980da30eaa0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1391814, "upload_time": "2019-07-13T05:28:28", "upload_time_iso_8601": "2019-07-13T05:28:28.374780Z", "url": "https://files.pythonhosted.org/packages/47/0b/f4a9c7e1b7b96c246c8ab5556c1c2c1f96cdf0de4512bd8bbd43ea186c31/TreeCorr-4.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.6": [ { "comment_text": "", "digests": { "md5": "9fbdad1e2a7030faad8ab09b456e777d", "sha256": "bb1e06f4c1612afd8038137e3a5ded5da5eef2252577009afba2c8bea321ebe0" }, "downloads": -1, "filename": "TreeCorr-4.0.6.tar.gz", "has_sig": false, "md5_digest": "9fbdad1e2a7030faad8ab09b456e777d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1392266, "upload_time": "2019-07-30T12:27:56", "upload_time_iso_8601": "2019-07-30T12:27:56.821489Z", "url": "https://files.pythonhosted.org/packages/66/3f/1e600a8df6f640f43048a10323d5d6adad7ac100718dcfed9fe7a5d224cf/TreeCorr-4.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.7": [ { "comment_text": "", "digests": { "md5": "8705035cd1fceee7490b5bf24b416c50", "sha256": "e5464eab759163360c205200ebc4dc0ef5e0a868dd551993009bc2220d51ff7a" }, "downloads": -1, "filename": "TreeCorr-4.0.7.tar.gz", "has_sig": false, "md5_digest": "8705035cd1fceee7490b5bf24b416c50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1370927, "upload_time": "2019-08-27T21:33:16", "upload_time_iso_8601": "2019-08-27T21:33:16.144496Z", "url": "https://files.pythonhosted.org/packages/76/7d/c2289071c26114223d5541c93dd4fb32f8f3b2dbe1eb4a4e5682f882aba5/TreeCorr-4.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.8": [ { "comment_text": "", "digests": { "md5": "08fbc3cd66896ad2f7d6150233ce6da9", "sha256": "28083dfc442d9a33146be816d7ea3de4f35409e0848bea8e4ebfc536fa55b91a" }, "downloads": -1, "filename": "TreeCorr-4.0.8.tar.gz", "has_sig": false, "md5_digest": "08fbc3cd66896ad2f7d6150233ce6da9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1392972, "upload_time": "2019-08-28T13:20:48", "upload_time_iso_8601": "2019-08-28T13:20:48.438080Z", "url": "https://files.pythonhosted.org/packages/b1/1f/6940f05e3ee7b529631c9982dc42e3361d0cf850f7eefe0e7ed741f3d8cc/TreeCorr-4.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.9": [ { "comment_text": "", "digests": { "md5": "6f4537ba7e632971703bc2899385b07c", "sha256": "6a2708738e3aa408a505ab319c2a0b41f5119996dd2cc4519ae4e92948cc9cac" }, "downloads": -1, "filename": "TreeCorr-4.0.9.tar.gz", "has_sig": false, "md5_digest": "6f4537ba7e632971703bc2899385b07c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1393302, "upload_time": "2019-10-27T22:55:54", "upload_time_iso_8601": "2019-10-27T22:55:54.816940Z", "url": "https://files.pythonhosted.org/packages/52/9b/17403ad9d895b5cb71418b44ced81a05bc07b4d8327229591ff4fd0b2bcf/TreeCorr-4.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "9eddbcd7fba382103119c7a5862374d7", "sha256": "045d95edb4b45c3d786efebc12b52119ca560c77ac93bb5630658fb591efddcd" }, "downloads": -1, "filename": "TreeCorr-4.1.0.tar.gz", "has_sig": false, "md5_digest": "9eddbcd7fba382103119c7a5862374d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1456892, "upload_time": "2020-05-06T07:22:07", "upload_time_iso_8601": "2020-05-06T07:22:07.468636Z", "url": "https://files.pythonhosted.org/packages/70/fa/a235ef9b39c01a4b4a7c3dc1148ce2c734105dcedb51fa8c2d7c495eeba0/TreeCorr-4.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "d1714422bfa1d51ee6e78e77542c04db", "sha256": "7f1e8a7fa5ea1daad8fa4a3b9dfa6f9bfacecef3e1016e988a5deb9086994961" }, "downloads": -1, "filename": "TreeCorr-4.1.1.tar.gz", "has_sig": false, "md5_digest": "d1714422bfa1d51ee6e78e77542c04db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1458141, "upload_time": "2020-05-09T22:25:17", "upload_time_iso_8601": "2020-05-09T22:25:17.005112Z", "url": "https://files.pythonhosted.org/packages/0d/70/565776840bfc4ee5cc17ab79568d61736510e4c69e40eb7d497df02d089f/TreeCorr-4.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.2": [ { "comment_text": "", "digests": { "md5": "92527888d0c4f26b7ac7c0f7d603933f", "sha256": "3017181deee895efdb75d8219e95a2f09c6c98263ab326e7a9f5768f319b6a86" }, "downloads": -1, "filename": "TreeCorr-4.1.2.tar.gz", "has_sig": false, "md5_digest": "92527888d0c4f26b7ac7c0f7d603933f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1458846, "upload_time": "2020-05-29T21:49:14", "upload_time_iso_8601": "2020-05-29T21:49:14.913823Z", "url": "https://files.pythonhosted.org/packages/3b/b4/a392f545454c7535ac48c8f294bf969059f01f635b81f5d15b5a420be887/TreeCorr-4.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.3": [ { "comment_text": "", "digests": { "md5": "a945398c438966f1ab208c8006744590", "sha256": "fab072feee7b1f63e1ead6f66d75e820e8717b2106d5844e672b377b8b2822d6" }, "downloads": -1, "filename": "TreeCorr-4.1.3.tar.gz", "has_sig": false, "md5_digest": "a945398c438966f1ab208c8006744590", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1458904, "upload_time": "2020-05-30T00:28:38", "upload_time_iso_8601": "2020-05-30T00:28:38.115322Z", "url": "https://files.pythonhosted.org/packages/03/1a/9b4bb9bb9dbdb81de56b8264177c9fc79e8a06317dc04bacb0050a96e9e4/TreeCorr-4.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.4": [ { "comment_text": "", "digests": { "md5": "8a7423f8510bca10d9405aaeae4c316a", "sha256": "05c65d187b59f85c043d7b2e3ed7f374115b9d92913ca1edd7adf0d7905014af" }, "downloads": -1, "filename": "TreeCorr-4.1.4.tar.gz", "has_sig": false, "md5_digest": "8a7423f8510bca10d9405aaeae4c316a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1440806, "upload_time": "2020-07-23T18:20:49", "upload_time_iso_8601": "2020-07-23T18:20:49.640611Z", "url": "https://files.pythonhosted.org/packages/3b/51/217617deebaafc4582c487b64b057778aab549a2f3721e76048d51e68cd9/TreeCorr-4.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.5": [ { "comment_text": "", "digests": { "md5": "a7ce72a87b2cc6ecf4bbf963bab37439", "sha256": "0cd832909ed1c033834d452bd8736ae1f918b2acd2fb1e8e6928537791b5f4d5" }, "downloads": -1, "filename": "TreeCorr-4.1.5.tar.gz", "has_sig": false, "md5_digest": "a7ce72a87b2cc6ecf4bbf963bab37439", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461119, "upload_time": "2020-07-30T19:14:08", "upload_time_iso_8601": "2020-07-30T19:14:08.468068Z", "url": "https://files.pythonhosted.org/packages/d3/bc/f87665b5d461255dff7e9beebff43def259856b6a25962d85c2b358bebab/TreeCorr-4.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.6": [ { "comment_text": "", "digests": { "md5": "d2bdb32a5fa50fd6b96be8c0633d8736", "sha256": "c29995c998581ff53d80d89094d625315bb57e4952090688e5a7f6fc0b0d4b9a" }, "downloads": -1, "filename": "TreeCorr-4.1.6.tar.gz", "has_sig": false, "md5_digest": "d2bdb32a5fa50fd6b96be8c0633d8736", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1447841, "upload_time": "2021-02-16T22:10:43", "upload_time_iso_8601": "2021-02-16T22:10:43.286166Z", "url": "https://files.pythonhosted.org/packages/49/bf/2c6ec3e269b79a0bfd89172d7c491244813fbc6b636b04563cec4d00a4aa/TreeCorr-4.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "4.1.7": [ { "comment_text": "", "digests": { "md5": "d934cceb4e22d0c4bb1d7ec5ebadd8b5", "sha256": "16ea1681685727c4cd8d3dbf3cf76d82f6d06f2d9d4cc7e7728869ba87429eff" }, "downloads": -1, "filename": "TreeCorr-4.1.7.tar.gz", "has_sig": false, "md5_digest": "d934cceb4e22d0c4bb1d7ec5ebadd8b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1449241, "upload_time": "2021-03-03T18:36:05", "upload_time_iso_8601": "2021-03-03T18:36:05.618955Z", "url": "https://files.pythonhosted.org/packages/22/6b/ccccc72b835d7473f3345fbb094de50777343861ed4c9bd1dd7040310193/TreeCorr-4.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "1690c4c30247a05cee31c22e40d8fdec", "sha256": "63dba3fd39dc8c13f5b6491265f2dd52779b833c19385c659c1dab6e50c86b57" }, "downloads": -1, "filename": "TreeCorr-4.2.0.tar.gz", "has_sig": false, "md5_digest": "1690c4c30247a05cee31c22e40d8fdec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1515109, "upload_time": "2021-05-01T23:50:14", "upload_time_iso_8601": "2021-05-01T23:50:14.548463Z", "url": "https://files.pythonhosted.org/packages/92/aa/aad2b8941c739cbd0f380b0125589f4d2ed180a1f8119f43c2be8c8c4d08/TreeCorr-4.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.1": [ { "comment_text": "", "digests": { "md5": "9de2dd7ca0ea96bc14409104fbe36d96", "sha256": "f2b800e5135bbd8bb8df76dad82a518953247f6ecb5bf31e62bdf692c359c8bf" }, "downloads": -1, "filename": "TreeCorr-4.2.1.tar.gz", "has_sig": false, "md5_digest": "9de2dd7ca0ea96bc14409104fbe36d96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1515270, "upload_time": "2021-05-06T22:45:49", "upload_time_iso_8601": "2021-05-06T22:45:49.498781Z", "url": "https://files.pythonhosted.org/packages/51/f2/0121c0738375193a1aa5bdd24d6237c2a841010b035f6fd937ece54980d2/TreeCorr-4.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.2": [ { "comment_text": "", "digests": { "md5": "57e315458b2b450e30b2a19e4b9f75f9", "sha256": "cf80779464b91be728a49bd6650ed671c5796d9b3cf300ebd49ab8ab8d6d5cc2" }, "downloads": -1, "filename": "TreeCorr-4.2.2.tar.gz", "has_sig": false, "md5_digest": "57e315458b2b450e30b2a19e4b9f75f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1515367, "upload_time": "2021-05-13T01:23:43", "upload_time_iso_8601": "2021-05-13T01:23:43.533728Z", "url": "https://files.pythonhosted.org/packages/a5/7d/05504f9bff9fdf2ec238ae27b30b587949ddedddd122f378623eec0eccec/TreeCorr-4.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.3": [ { "comment_text": "", "digests": { "md5": "b926bb5b6061e7d62be849caa8f67396", "sha256": "a34eb1acc74e46d19616ecda89263c4fffc33824c01ee0db35148adf09a1aa63" }, "downloads": -1, "filename": "TreeCorr-4.2.3.tar.gz", "has_sig": false, "md5_digest": "b926bb5b6061e7d62be849caa8f67396", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1516295, "upload_time": "2021-05-22T16:15:22", "upload_time_iso_8601": "2021-05-22T16:15:22.716357Z", "url": "https://files.pythonhosted.org/packages/8e/71/56d0f55006153bef964c0a336578b51ba784b0c3ea139c8614fbba97901a/TreeCorr-4.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.4": [ { "comment_text": "", "digests": { "md5": "371bd346f125b04e1244d3227dacf045", "sha256": "52acf7fad4fb11098f3806bb136bd669463a99b0ebc26833e1137f062051b347" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "371bd346f125b04e1244d3227dacf045", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1185649, "upload_time": "2021-08-13T22:41:09", "upload_time_iso_8601": "2021-08-13T22:41:09.419382Z", "url": "https://files.pythonhosted.org/packages/a3/76/5142a44d2772d34c0bbc20340b47fa9d4ee9bf040354391eb5608e5881db/TreeCorr-4.2.4-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f410f5425f9870067b3b203ed32d4fc", "sha256": "8b8eb6cd2f9fa4ee3b5d396affc460d85b293016bac961d98157ce7d4f28f3d8" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp27-cp27m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "0f410f5425f9870067b3b203ed32d4fc", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7692363, "upload_time": "2021-08-13T22:41:11", "upload_time_iso_8601": "2021-08-13T22:41:11.042032Z", "url": "https://files.pythonhosted.org/packages/c5/2a/5f632948199f4a52694666d4b4030a48e82dae00366f5e839aa991ce34a8/TreeCorr-4.2.4-cp27-cp27m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b91fc2aede65241059235918aaa312d5", "sha256": "f10b5bbbe083fd4f808b6430689842e0325080991f43bbeb00276f89a94f760a" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b91fc2aede65241059235918aaa312d5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8750469, "upload_time": "2021-08-13T22:41:13", "upload_time_iso_8601": "2021-08-13T22:41:13.248419Z", "url": "https://files.pythonhosted.org/packages/4f/d6/8642aff0daf5a2a8d8763c384460d42e04b1773b0727ceed8cfaa77c5d25/TreeCorr-4.2.4-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e95b9e4f22548050f2e3ef6a04a34955", "sha256": "94204f1cc89e5f12d06ee12e3e8967cbf7b0a69bea4485e6c57f3e90b4c6343e" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp27-cp27mu-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "e95b9e4f22548050f2e3ef6a04a34955", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7692592, "upload_time": "2021-08-13T22:41:15", "upload_time_iso_8601": "2021-08-13T22:41:15.076834Z", "url": "https://files.pythonhosted.org/packages/94/fe/aa08f61053a88d49b6dd0b2fbc1578a9e1ac6ff4cc49e16effda2f3bd76d/TreeCorr-4.2.4-cp27-cp27mu-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da17e97455deef6ddf71b9e50e9b06b2", "sha256": "c599b41a51c073f041c99a3a62aeab16128adb9e1de9458957b6417b5e66da92" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "da17e97455deef6ddf71b9e50e9b06b2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8750391, "upload_time": "2021-08-13T22:41:17", "upload_time_iso_8601": "2021-08-13T22:41:17.843936Z", "url": "https://files.pythonhosted.org/packages/d8/d4/95b292175bb7b6846664f11d5f7a09a74208f62d1eb9a2914be738b949a9/TreeCorr-4.2.4-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d652b410912e6189abf5bd6d71f43e2", "sha256": "30d936e39243ad3b2a05535686b9a1b079e2a69dedbe297900855f5e42f9378f" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3d652b410912e6189abf5bd6d71f43e2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1185725, "upload_time": "2021-08-13T22:41:19", "upload_time_iso_8601": "2021-08-13T22:41:19.391898Z", "url": "https://files.pythonhosted.org/packages/ad/07/f768c3b6770095f0bd728313287bfbeb8c7f047449cb565e393f925b912a/TreeCorr-4.2.4-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5e6ad1572736dbfd7f8aa5d09d8f54a", "sha256": "2d21633f0e068946b925a0fb8aad5a1d728b11face617bc6bdc8c2fca90cd755" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp35-cp35m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "e5e6ad1572736dbfd7f8aa5d09d8f54a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7712148, "upload_time": "2021-08-13T22:41:20", "upload_time_iso_8601": "2021-08-13T22:41:20.958802Z", "url": "https://files.pythonhosted.org/packages/24/5a/c2459a2601748dcd3be7809ab4b97694fc4412b75ebef871948a26752adc/TreeCorr-4.2.4-cp35-cp35m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e86a637fb21121207f6fec7aec2d73a4", "sha256": "9c3ccdffe245c06b396bbabd601b59aeafb1ed95deb61fdf7a3848967ecb7cc0" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e86a637fb21121207f6fec7aec2d73a4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8755467, "upload_time": "2021-08-13T22:41:22", "upload_time_iso_8601": "2021-08-13T22:41:22.750785Z", "url": "https://files.pythonhosted.org/packages/bc/21/d8c7d7a9b3488fbfbcb1e4c555a21bad99424a4f157cecb3df48f798068d/TreeCorr-4.2.4-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07c335b96c804ed0c00b15afe33ac064", "sha256": "8c6bfa513b25e27be8e52023e304723d6db1cb985ce2029e39d93b5497181be0" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "07c335b96c804ed0c00b15afe33ac064", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1176232, "upload_time": "2021-08-13T22:41:24", "upload_time_iso_8601": "2021-08-13T22:41:24.338781Z", "url": "https://files.pythonhosted.org/packages/4f/7e/9658184da5b847bc35373ba66942a884450c284befa439e573ff09d05990/TreeCorr-4.2.4-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90d3b2ab7b3049d6067f98e7d451ac55", "sha256": "d7d80bb6c203c28536cbe19f39dd8cdc055d5242f3bf33c73810cecd45114c18" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp36-cp36m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "90d3b2ab7b3049d6067f98e7d451ac55", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7712086, "upload_time": "2021-08-13T22:41:26", "upload_time_iso_8601": "2021-08-13T22:41:26.144292Z", "url": "https://files.pythonhosted.org/packages/a1/55/2937b6b07dbbb1f27ddc5006a06895f7c6616ce3843ccea6e75b1f4b8027/TreeCorr-4.2.4-cp36-cp36m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "31dd952e938e6fb20a3b2fe3aba70d06", "sha256": "55a5be7b1c939a4903af5be437c4887a942d156dbee129d354b0955ea558b753" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "31dd952e938e6fb20a3b2fe3aba70d06", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8755556, "upload_time": "2021-08-13T22:41:28", "upload_time_iso_8601": "2021-08-13T22:41:28.900707Z", "url": "https://files.pythonhosted.org/packages/c1/b4/fbc191dc8b275d3a78b1b375a9265fa374edb132504ca558d77eac3f994b/TreeCorr-4.2.4-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3bac727bb2dd680db4dc5bdf03dc7d25", "sha256": "d9cf866bb67a180f8a126603c042042eab4a95e64e2efaa1bad707410837d504" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3bac727bb2dd680db4dc5bdf03dc7d25", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1176236, "upload_time": "2021-08-13T22:41:30", "upload_time_iso_8601": "2021-08-13T22:41:30.457639Z", "url": "https://files.pythonhosted.org/packages/57/73/19d10f37734bf7de16ac672ecdccc7659b615b55cb761a270db2cdbb3ef6/TreeCorr-4.2.4-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a395f727c35d92c13f6a355e71e3d036", "sha256": "2ff757e56f6fa175811e8c1d487d62120547bf48ba3bd42f0babe8bcc7c9232b" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp37-cp37m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "a395f727c35d92c13f6a355e71e3d036", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7712128, "upload_time": "2021-08-13T22:41:31", "upload_time_iso_8601": "2021-08-13T22:41:31.870784Z", "url": "https://files.pythonhosted.org/packages/85/4e/29d3b90fd2c26fcae050f988487a408fa69fb42e829c0e8750fd610ee4fd/TreeCorr-4.2.4-cp37-cp37m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bf342863a5679ec3994de4a722b5b90", "sha256": "825f1db9b8830e74d1fb7308ede3676c864e7d6e1933d827f706343bb1f18609" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5bf342863a5679ec3994de4a722b5b90", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8755434, "upload_time": "2021-08-13T22:41:33", "upload_time_iso_8601": "2021-08-13T22:41:33.509752Z", "url": "https://files.pythonhosted.org/packages/1f/1a/c41820b1be25795b096e90136cab81aab71179f14731112e5c81a7f0f4b9/TreeCorr-4.2.4-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23b34e38b31bcb3a18f93091b2821ebd", "sha256": "e9ef092b19ef6c935979871d2ce74136a7ae77293d070d4aa14aa46daff69d67" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "23b34e38b31bcb3a18f93091b2821ebd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1176228, "upload_time": "2021-08-13T22:41:35", "upload_time_iso_8601": "2021-08-13T22:41:35.558933Z", "url": "https://files.pythonhosted.org/packages/63/51/29adc62982e2ebfbb3a8826258692e1c93d4fe2702cd6643110da87a3097/TreeCorr-4.2.4-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "073a9bd2effb72593ef84e41d0ea2bc0", "sha256": "20d75bd9bc0be31295675c3e1462928f5f5c79afcc3afd057a564e684688690e" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp38-cp38-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "073a9bd2effb72593ef84e41d0ea2bc0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7712127, "upload_time": "2021-08-13T22:41:37", "upload_time_iso_8601": "2021-08-13T22:41:37.028449Z", "url": "https://files.pythonhosted.org/packages/1a/c5/2c0bdc8b4f18d696a4cfded76564fb75150fd6bb9030d4b535987d29c74f/TreeCorr-4.2.4-cp38-cp38-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd5cb7bba449cdbf65c8c590e5c840dd", "sha256": "b9bbd3ec8aaf40e79cc2dc04b49948586019d21c681a7dd923f4fc43e854fe92" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "dd5cb7bba449cdbf65c8c590e5c840dd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8755475, "upload_time": "2021-08-13T22:41:39", "upload_time_iso_8601": "2021-08-13T22:41:39.258911Z", "url": "https://files.pythonhosted.org/packages/9a/89/5720a2383f60ae69223c0803ea1d4290b05614af854ef0af46279c551200/TreeCorr-4.2.4-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "adb2f4d4dd57b40a10b645c8a1add881", "sha256": "dcebf6cc72c4d526aa6e4c82680739d048e9344639176e5fa8d1a678ba40d1d6" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "adb2f4d4dd57b40a10b645c8a1add881", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 1176186, "upload_time": "2021-08-13T22:41:41", "upload_time_iso_8601": "2021-08-13T22:41:41.024849Z", "url": "https://files.pythonhosted.org/packages/de/5c/32a9108dc3279cec0f94ab3ca83009cea67db917224005e86e8c2fbcc3d9/TreeCorr-4.2.4-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dab2baa45d7af74640f4b1a5f7ee54f2", "sha256": "0a4a568aab6a85207292efa903a72a2f6ade69cc4794a9ccaac877b4f11d0da4" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp39-cp39-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "dab2baa45d7af74640f4b1a5f7ee54f2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7722387, "upload_time": "2021-08-13T22:41:42", "upload_time_iso_8601": "2021-08-13T22:41:42.434782Z", "url": "https://files.pythonhosted.org/packages/9a/42/defddb76c05cf84b850bae0125a2c0ef74bd9e17f289feb4df841285d7b0/TreeCorr-4.2.4-cp39-cp39-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66094bbcadf3e38348ce268438960eed", "sha256": "0ec1163f3609166f9bead6b58840b7d8f39919bbca37645851c3c4ba81d3587e" }, "downloads": -1, "filename": "TreeCorr-4.2.4-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "66094bbcadf3e38348ce268438960eed", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8759561, "upload_time": "2021-08-13T22:41:44", "upload_time_iso_8601": "2021-08-13T22:41:44.083201Z", "url": "https://files.pythonhosted.org/packages/e9/34/15598c47bf6ea789b28071530f5443a9bd2088a4fa200f33fc9ba36e4b0c/TreeCorr-4.2.4-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e6a846c7f858a87a14c37db9acf2c23", "sha256": "fccd2f0fffdff979ca7885029ef6a0ac93f95e6c5b167831e039c78bfce476e1" }, "downloads": -1, "filename": "TreeCorr-4.2.4-pp27-pypy_73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2e6a846c7f858a87a14c37db9acf2c23", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1110003, "upload_time": "2021-08-13T22:41:45", "upload_time_iso_8601": "2021-08-13T22:41:45.640784Z", "url": "https://files.pythonhosted.org/packages/a4/62/cd2bc5d33b04482aa32b510350a5aead7b19f41f4491d8bfb3347d28cbb2/TreeCorr-4.2.4-pp27-pypy_73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a34167a1c32e0736da6c676c2c354ef8", "sha256": "fc8ec9c61573cb43912f1e6fb2ab53e1a7dd279cd6d01f43d4b4d4d02425ea3a" }, "downloads": -1, "filename": "TreeCorr-4.2.4-pp27-pypy_73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a34167a1c32e0736da6c676c2c354ef8", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1422653, "upload_time": "2021-08-13T22:41:46", "upload_time_iso_8601": "2021-08-13T22:41:46.868422Z", "url": "https://files.pythonhosted.org/packages/1c/8a/dc10d7caf664d046438786884f16bb86b14e03482d39db33ec75fbf9f824/TreeCorr-4.2.4-pp27-pypy_73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5de6b6b481f4f3ed3c6722261272e6b6", "sha256": "007754d41165d3ab6ed41b5c0da499c4c7268b6e7ce29ddcd0d77efcda8ffe52" }, "downloads": -1, "filename": "TreeCorr-4.2.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5de6b6b481f4f3ed3c6722261272e6b6", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1110034, "upload_time": "2021-08-13T22:41:48", "upload_time_iso_8601": "2021-08-13T22:41:48.263628Z", "url": "https://files.pythonhosted.org/packages/97/d6/c4e5027d5b46baeec9d4a37041219f015deb179851c2fc98af42360194ea/TreeCorr-4.2.4-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "100a7a567c12471fd2b0325d559761d5", "sha256": "3e8568213538239af0245ff4c76afee187ca8d8fd688adb08994d5a26aa0a25c" }, "downloads": -1, "filename": "TreeCorr-4.2.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "100a7a567c12471fd2b0325d559761d5", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1422713, "upload_time": "2021-08-13T22:41:50", "upload_time_iso_8601": "2021-08-13T22:41:50.496018Z", "url": "https://files.pythonhosted.org/packages/43/2c/2d48fa036d7c2b2fd5187defd41bd8900157db7bf0e3f00293a211f20fd0/TreeCorr-4.2.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72f42afceb8b5f216fa3e2f048e80a63", "sha256": "0cdd23025973a6416533acf4c99eb37b65eed115af911cc59a7ef9442f54c37c" }, "downloads": -1, "filename": "TreeCorr-4.2.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "72f42afceb8b5f216fa3e2f048e80a63", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1110038, "upload_time": "2021-08-13T22:41:52", "upload_time_iso_8601": "2021-08-13T22:41:52.173752Z", "url": "https://files.pythonhosted.org/packages/47/6a/2617f2f7dc049224a164a66ca9bccc372f02f78b2c00c9e906ffc747b00a/TreeCorr-4.2.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91933ff6513506c961286df6537db14c", "sha256": "35d1326e754f020a275dde4f911be6bb2274ca938a1b7e97bf7e2cd8ca30f383" }, "downloads": -1, "filename": "TreeCorr-4.2.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "91933ff6513506c961286df6537db14c", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1422716, "upload_time": "2021-08-13T22:41:53", "upload_time_iso_8601": "2021-08-13T22:41:53.425041Z", "url": "https://files.pythonhosted.org/packages/ab/8b/a9df08cb34bec4ac84a98a8de6a4a6ebc4c33198ff7e9458d6d4135c1eeb/TreeCorr-4.2.4-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c49bef6bb229945d6a8dd3d1e2349ecd", "sha256": "da119f1d8faecf10646c53489e1252785aad9749f7dfdcf5c30dfcbb03e521ff" }, "downloads": -1, "filename": "TreeCorr-4.2.4.tar.gz", "has_sig": false, "md5_digest": "c49bef6bb229945d6a8dd3d1e2349ecd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 790639, "upload_time": "2021-08-13T22:41:54", "upload_time_iso_8601": "2021-08-13T22:41:54.658781Z", "url": "https://files.pythonhosted.org/packages/8e/b4/5ac23f6d5029a13a615ff9b2fe5a5a575e679e13f0a1aec7833cee518844/TreeCorr-4.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.5": [ { "comment_text": "", "digests": { "md5": "1878912b14dbb5541e362c199b035c34", "sha256": "66d60a2408b7e9cb0273f15e0af109c17f5e19d65beaaf26b78f7b54e9ad8e2f" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1878912b14dbb5541e362c199b035c34", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1185791, "upload_time": "2021-09-16T17:22:36", "upload_time_iso_8601": "2021-09-16T17:22:36.348532Z", "url": "https://files.pythonhosted.org/packages/98/5c/2016b100f8631cc39b1f92695458b88173b4a5b0b2d766afedc931022b8c/TreeCorr-4.2.5-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1119ab17c745fc5800afa9ea21032ec3", "sha256": "0cf2eeaea11a3d3337e8f31e532c7cb3232b2a80a6834c24966a1e93711b4d43" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp27-cp27m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "1119ab17c745fc5800afa9ea21032ec3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7690085, "upload_time": "2021-09-16T17:22:38", "upload_time_iso_8601": "2021-09-16T17:22:38.238911Z", "url": "https://files.pythonhosted.org/packages/84/2e/c6275c0672f9da0f0026c23d0957ca15c8cc972efc325ee2f920aabf79ff/TreeCorr-4.2.5-cp27-cp27m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d9af394d07342ebc823d34d80dbdcd34", "sha256": "85aafb0775b83c57b03672b68b827258022a6dd94709d1b4d9ac25e2c7d8a58a" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d9af394d07342ebc823d34d80dbdcd34", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8749956, "upload_time": "2021-09-16T17:22:40", "upload_time_iso_8601": "2021-09-16T17:22:40.246036Z", "url": "https://files.pythonhosted.org/packages/8c/18/228890628619e1a06827b0486bf88f41237abc2c15fbcc19e389f7062fe2/TreeCorr-4.2.5-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2dd4c8a0bc9c443f897b37323e1fd19", "sha256": "f778470db89f58283a8bf83c0b56282f9d4806798585db198e18858488908c22" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp27-cp27mu-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "d2dd4c8a0bc9c443f897b37323e1fd19", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7690137, "upload_time": "2021-09-16T17:22:42", "upload_time_iso_8601": "2021-09-16T17:22:42.278134Z", "url": "https://files.pythonhosted.org/packages/ee/ba/b244e04d74e9ed7ec83374c347b2f902d0a00f520d70b92a60e5785ae01f/TreeCorr-4.2.5-cp27-cp27mu-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a6dba3ed5827154bad227ace0dac5f13", "sha256": "7d9c95f66c8b535c6b61c8f68934e28c1a0ca0995b5d32879672b0cfbbabcdde" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a6dba3ed5827154bad227ace0dac5f13", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8749979, "upload_time": "2021-09-16T17:22:44", "upload_time_iso_8601": "2021-09-16T17:22:44.044182Z", "url": "https://files.pythonhosted.org/packages/16/e8/b868a0dbdae88019b20f31f6bd5bfcee03f8bf9da3c440a9a34d4cd9c0ac/TreeCorr-4.2.5-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32a8ce243289008bc968741e60678f83", "sha256": "9824c5eebd8016903606dea3eb3ad235883e2d1da016e6c3231796e4ce8c03df" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "32a8ce243289008bc968741e60678f83", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1185863, "upload_time": "2021-09-16T17:22:45", "upload_time_iso_8601": "2021-09-16T17:22:45.934864Z", "url": "https://files.pythonhosted.org/packages/80/33/683073dc26b4edb8f3cfeff3416f0d6cddfd7de75110d77d89556624e635/TreeCorr-4.2.5-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23aa9a9809b6327bd03bb114352b1e50", "sha256": "a873d4ec369dd8642e3d2b6a3879da8689b4d63426e66ddf6cde0bcde3ba6ca3" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp35-cp35m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "23aa9a9809b6327bd03bb114352b1e50", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7711000, "upload_time": "2021-09-16T17:22:47", "upload_time_iso_8601": "2021-09-16T17:22:47.614787Z", "url": "https://files.pythonhosted.org/packages/02/d7/dde7e2160ff4d735c1736a6c2141e2b3ec6c5837b2b628ad9e78c71c2f09/TreeCorr-4.2.5-cp35-cp35m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eff66603b417a16f01f790b2962ef6d4", "sha256": "ad9127a421b68af4a52208a86de9d04d57973bfa1472c12bbbc642108c0a461d" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "eff66603b417a16f01f790b2962ef6d4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8755687, "upload_time": "2021-09-16T17:22:49", "upload_time_iso_8601": "2021-09-16T17:22:49.856040Z", "url": "https://files.pythonhosted.org/packages/f6/e4/95fd0888f1cb9c44b948828956382957488f934b5a5365abec79d3dac4e9/TreeCorr-4.2.5-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "892a419739b456fff764efdf107ff359", "sha256": "20107fb41e79903dd1fda271769e83db5ef9a273b003f0583ffc9950677e4054" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "892a419739b456fff764efdf107ff359", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1176380, "upload_time": "2021-09-16T17:22:52", "upload_time_iso_8601": "2021-09-16T17:22:52.051020Z", "url": "https://files.pythonhosted.org/packages/60/fd/beb17446e67f83a7a4c5567dcf8cf8a92781d58cb5672f4bbcf5042a86c3/TreeCorr-4.2.5-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1e2532171245a186aba9ee11b826f0b9", "sha256": "a9decd5f79e17fb06659f5093a32de92ba6ffba8e5d61f7faf4fed3aadb66c93" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp36-cp36m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "1e2532171245a186aba9ee11b826f0b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7710993, "upload_time": "2021-09-16T17:22:53", "upload_time_iso_8601": "2021-09-16T17:22:53.662344Z", "url": "https://files.pythonhosted.org/packages/92/bb/58ffaaf6fa3ba9cbe4e2d1fde221eb6020f44b49b0ba7fa9c572a1bb8b76/TreeCorr-4.2.5-cp36-cp36m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aeaed918d151bcf5238b57dd92aec359", "sha256": "c17fb8e6e00de890c07ad7ccd940cb51741ae830d78f01fe063a23d7e9ce0454" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "aeaed918d151bcf5238b57dd92aec359", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8755757, "upload_time": "2021-09-16T17:22:55", "upload_time_iso_8601": "2021-09-16T17:22:55.558862Z", "url": "https://files.pythonhosted.org/packages/a2/60/cfabc50e51fd3f5fa181ed690a02dcbadbef37f937494dea1dc85058384d/TreeCorr-4.2.5-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50b08aef99e7d043375ae7f56a3b9c7d", "sha256": "6e27cb6e8772fee7612d05a7c10ebcde492ed36211e231c7900a32ee9e180322" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "50b08aef99e7d043375ae7f56a3b9c7d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1176373, "upload_time": "2021-09-16T17:22:57", "upload_time_iso_8601": "2021-09-16T17:22:57.194786Z", "url": "https://files.pythonhosted.org/packages/b5/33/80287ec2ef9dabba9120ea580fd36421eeacd5d365f711e7eadcd018ec29/TreeCorr-4.2.5-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ec75d95b14c72bdeed6eb9c15a6d3a5", "sha256": "531a4ec2d229680bc6006a958673087d8b5fee2adc1eec28cc2dc04b80d33379" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp37-cp37m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "6ec75d95b14c72bdeed6eb9c15a6d3a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7710973, "upload_time": "2021-09-16T17:22:58", "upload_time_iso_8601": "2021-09-16T17:22:58.723206Z", "url": "https://files.pythonhosted.org/packages/b1/89/dad7ee95bf66a592b3a452670c8b570c5973cbb2c0eeb4e3d718b45df46f/TreeCorr-4.2.5-cp37-cp37m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5a251008bfbcec5d44260834344481a4", "sha256": "505e574072223acf38f2dee815112b643c41048b8865fcdfea62595eafcc1073" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5a251008bfbcec5d44260834344481a4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8755795, "upload_time": "2021-09-16T17:23:00", "upload_time_iso_8601": "2021-09-16T17:23:00.830783Z", "url": "https://files.pythonhosted.org/packages/f0/93/f1d3996b3406e30646e366434cf9252da2761c4784b6e03d85f1b11a62ef/TreeCorr-4.2.5-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9203f0ab8b777ed92fb54e314206dd77", "sha256": "2b33e355610ecf82e39154c285ef4cf977d96b1e1fe24038f1c8df32b615fe2c" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9203f0ab8b777ed92fb54e314206dd77", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1176373, "upload_time": "2021-09-16T17:23:03", "upload_time_iso_8601": "2021-09-16T17:23:03.641266Z", "url": "https://files.pythonhosted.org/packages/9e/cf/f535b8aa31107e13d4b9974450b1db245c60cb38f374bbf33e609a954a7a/TreeCorr-4.2.5-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8693216fea9c72ba1727931e424b1afb", "sha256": "f2e9081a99625d68eaf86b19ad31f41b1a0a5ecf4d6507cd366c95829a107862" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp38-cp38-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "8693216fea9c72ba1727931e424b1afb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7711035, "upload_time": "2021-09-16T17:23:05", "upload_time_iso_8601": "2021-09-16T17:23:05.546788Z", "url": "https://files.pythonhosted.org/packages/24/3a/34bed539b54c60f6353df58f634ec266ae6829d8c3985efe48ca8eb51836/TreeCorr-4.2.5-cp38-cp38-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2a6ff8390e8a3dcdc0c3c2cb147289b", "sha256": "e9d80e83c4e0f7e1f33118cb28a8481a281e53624bc60f03e979f4df7340c031" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d2a6ff8390e8a3dcdc0c3c2cb147289b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8755643, "upload_time": "2021-09-16T17:23:07", "upload_time_iso_8601": "2021-09-16T17:23:07.407394Z", "url": "https://files.pythonhosted.org/packages/98/87/5f546e2d2c7f65b44b87619fd21f5ad655da752e3abf94a3ed9edf8559f1/TreeCorr-4.2.5-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "583171e461b248bb3514d0213516b230", "sha256": "06511e7840b6cd4b6509de803538452c293ab938ff77dfff2aa2cbedd3a0ca6e" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "583171e461b248bb3514d0213516b230", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 1176328, "upload_time": "2021-09-16T17:23:09", "upload_time_iso_8601": "2021-09-16T17:23:09.398328Z", "url": "https://files.pythonhosted.org/packages/76/8c/81db2e2b17928b54491e57d30be44126a2109789e1e06e76611b3fc5f266/TreeCorr-4.2.5-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7d8ccf0e4df6312f02f66d6925112554", "sha256": "fb728b2f1afb9dc16f0f733be2ebc6afa6023d4c6ac7a696c4b3ffdfbdefdd89" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp39-cp39-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "7d8ccf0e4df6312f02f66d6925112554", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7722540, "upload_time": "2021-09-16T17:23:10", "upload_time_iso_8601": "2021-09-16T17:23:10.909835Z", "url": "https://files.pythonhosted.org/packages/5a/bc/17e64901a2ab4a18ae946cffc2028a8c7a7d94b651c6a20a4ae638559ef7/TreeCorr-4.2.5-cp39-cp39-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb3f79d301bfc0908e359ff63167f90d", "sha256": "9f1480e8a0e1c2dc0214149e38426193d84d4437e5c07de7890e42347656a03a" }, "downloads": -1, "filename": "TreeCorr-4.2.5-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fb3f79d301bfc0908e359ff63167f90d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8759649, "upload_time": "2021-09-16T17:23:12", "upload_time_iso_8601": "2021-09-16T17:23:12.945523Z", "url": "https://files.pythonhosted.org/packages/1a/b6/82cc868478f22536a3c93d77473e6ef60a6202f24562cf31348da15aa50a/TreeCorr-4.2.5-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "337926aacb414a48d757c1a923c0717f", "sha256": "aa86a05a92e75e0bb843f2bb98e75760b0b7c9f5e676e1ef82caf917ea6f7cc9" }, "downloads": -1, "filename": "TreeCorr-4.2.5-pp27-pypy_73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "337926aacb414a48d757c1a923c0717f", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1110145, "upload_time": "2021-09-16T17:23:14", "upload_time_iso_8601": "2021-09-16T17:23:14.802781Z", "url": "https://files.pythonhosted.org/packages/9a/cb/1304937fcd76a2f6398c82885481f0b733858b700c38dd20d6e2f6c7e0c8/TreeCorr-4.2.5-pp27-pypy_73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40f0c693b3374b655d0bb2c012389d87", "sha256": "08384a31fc8f946e77f8059b743064e344a9ffc3fd50dbe6a719f1c60fa9af45" }, "downloads": -1, "filename": "TreeCorr-4.2.5-pp27-pypy_73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "40f0c693b3374b655d0bb2c012389d87", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1423640, "upload_time": "2021-09-16T17:23:15", "upload_time_iso_8601": "2021-09-16T17:23:15.989640Z", "url": "https://files.pythonhosted.org/packages/df/f5/23bb1589e4a1d79f205e828393e99cfdf7ffb06ec107984628eea6775789/TreeCorr-4.2.5-pp27-pypy_73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e77192a2e424646015015eed28bbb589", "sha256": "f1651456e2b403e39995f80b50877bbf02f4bedb6e86d2ad188de6e92929e219" }, "downloads": -1, "filename": "TreeCorr-4.2.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e77192a2e424646015015eed28bbb589", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1110179, "upload_time": "2021-09-16T17:23:17", "upload_time_iso_8601": "2021-09-16T17:23:17.238978Z", "url": "https://files.pythonhosted.org/packages/5d/cd/6a655998b805717019d361bad62bfe1671d4a436c74640358066c52aa613/TreeCorr-4.2.5-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c46e5bd4b2e0f017d46005a3757f02a", "sha256": "a43e77be77eee8bf6a5261577d727b42579930e580243ee67faf85ce4c6647ce" }, "downloads": -1, "filename": "TreeCorr-4.2.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4c46e5bd4b2e0f017d46005a3757f02a", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1423701, "upload_time": "2021-09-16T17:23:18", "upload_time_iso_8601": "2021-09-16T17:23:18.561806Z", "url": "https://files.pythonhosted.org/packages/80/95/fa9eb65bf9a68c8cb63e57fb3898792c30cce8a503a4032be7a77fc38d78/TreeCorr-4.2.5-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10926b7c0423680daf2c555a83db2780", "sha256": "d56c146fb07761e4c34983378078bf72a5c0c733f0b8623a0ebc8f12771ffb20" }, "downloads": -1, "filename": "TreeCorr-4.2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "10926b7c0423680daf2c555a83db2780", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1110182, "upload_time": "2021-09-16T17:23:19", "upload_time_iso_8601": "2021-09-16T17:23:19.842793Z", "url": "https://files.pythonhosted.org/packages/87/71/19cafd76700fe0e4d30de52edff49c9cbcdb5b779a951a19df4636db93e9/TreeCorr-4.2.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7e7588cef22b3b707f4c05a40341484", "sha256": "fcd55be9b2dcdfd0abe86f89a2393f913df7da8ecb201c40834aef7dc2e81260" }, "downloads": -1, "filename": "TreeCorr-4.2.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a7e7588cef22b3b707f4c05a40341484", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1423701, "upload_time": "2021-09-16T17:23:21", "upload_time_iso_8601": "2021-09-16T17:23:21.258685Z", "url": "https://files.pythonhosted.org/packages/8f/c0/69fca6203fd6355b7ed9897d160d4df49180a3767621f575ec6660c8a95b/TreeCorr-4.2.5-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81d4784750aedbe4161f2bbf80f8c013", "sha256": "e4be5c32883ef956089f753934848e446bb7a15ae409a77405422502790f077d" }, "downloads": -1, "filename": "TreeCorr-4.2.5.tar.gz", "has_sig": false, "md5_digest": "81d4784750aedbe4161f2bbf80f8c013", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 792652, "upload_time": "2021-09-16T17:23:22", "upload_time_iso_8601": "2021-09-16T17:23:22.590823Z", "url": "https://files.pythonhosted.org/packages/65/75/dbf8eedffac3c44239ff670c1bd3bb3239c4dd358b59e5386a1a6823ac30/TreeCorr-4.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.6": [ { "comment_text": "", "digests": { "md5": "8d6ca3f2662885f673b75c1341236f23", "sha256": "c640db86fbfd157e100c308b6bd0618ff21a168e4ce54a618d8361b81e7554c1" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8d6ca3f2662885f673b75c1341236f23", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1185813, "upload_time": "2021-09-28T04:20:14", "upload_time_iso_8601": "2021-09-28T04:20:14.005403Z", "url": "https://files.pythonhosted.org/packages/e3/39/d8e888165b2f8127b31d39c1a522879db61ab8504cbaa4f94149f3e3a58e/TreeCorr-4.2.6-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b50050c711e31dc2f5a170068d1390f", "sha256": "eaf253e3d7062c583a84fedb4b781600828f30a408849b0cb08b0404683bbe2f" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp27-cp27m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "8b50050c711e31dc2f5a170068d1390f", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7691083, "upload_time": "2021-09-28T04:20:15", "upload_time_iso_8601": "2021-09-28T04:20:15.768459Z", "url": "https://files.pythonhosted.org/packages/cf/22/10c77162158226d9822494e9c953df6efe4880f1e430832fe793d831ad2f/TreeCorr-4.2.6-cp27-cp27m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92b7f55a6ece89f5f003eb6d0b690006", "sha256": "e28e5b6af1f4f98c39e34e226106462c2241a6d852000df2fe3088ec3bd8d0ad" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "92b7f55a6ece89f5f003eb6d0b690006", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8749770, "upload_time": "2021-09-28T04:20:19", "upload_time_iso_8601": "2021-09-28T04:20:19.270594Z", "url": "https://files.pythonhosted.org/packages/1d/54/0d012151d366d22071c4660c6645572a334433383c45a4576338d604dab8/TreeCorr-4.2.6-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db3f055d8bb7e8f7290ea63070c678a8", "sha256": "998e0dddf96af9469ac2f8b523c6dac8e2c361fd85949cf8e8bd6722fbe35bcb" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp27-cp27mu-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "db3f055d8bb7e8f7290ea63070c678a8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7691119, "upload_time": "2021-09-28T04:20:21", "upload_time_iso_8601": "2021-09-28T04:20:21.738992Z", "url": "https://files.pythonhosted.org/packages/44/75/ee13d6f3e8ada920c0e90c874883ef8fb29b479138ddd35db74626e34ba1/TreeCorr-4.2.6-cp27-cp27mu-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04c316ed946af68d427a778d09db00d9", "sha256": "0de2382a34901d1bd5beaf760ae86cd218dc63acff1615572cfcaf2ca6166be7" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "04c316ed946af68d427a778d09db00d9", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8749815, "upload_time": "2021-09-28T04:20:24", "upload_time_iso_8601": "2021-09-28T04:20:24.473267Z", "url": "https://files.pythonhosted.org/packages/d3/8d/0262826b5660a2e9341496424a2c667e159368ca3cae3cf8cb7885569059/TreeCorr-4.2.6-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78e59b04b30f971f5187276289a38c8c", "sha256": "23ae41269d296f1f6de2fbb3371d2725ff170ec0add76b32badaf26c8f64f88d" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "78e59b04b30f971f5187276289a38c8c", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1185884, "upload_time": "2021-09-28T04:20:26", "upload_time_iso_8601": "2021-09-28T04:20:26.197765Z", "url": "https://files.pythonhosted.org/packages/ec/04/9677967a28e4c22706ad91aca243276384bd715858593cf32020a3d3f89d/TreeCorr-4.2.6-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2cd286f7e0eb9daac22e188f6770908", "sha256": "b23b22173d9e265efcc198890f8e13ba9bd7f729709a93c1b92cffbaf409e817" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp35-cp35m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b2cd286f7e0eb9daac22e188f6770908", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7710945, "upload_time": "2021-09-28T04:20:28", "upload_time_iso_8601": "2021-09-28T04:20:28.700871Z", "url": "https://files.pythonhosted.org/packages/2c/bd/63c3a08caae8c27766015ab40f840bb09b0391a986d148de3899a1f7ae92/TreeCorr-4.2.6-cp35-cp35m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "634a0cac2f28862cb21cd2c914ed4837", "sha256": "b2912c400b8614ea1aff49f8ad8df7eb0d0cf76c311ecd873f39e926e01ce22b" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "634a0cac2f28862cb21cd2c914ed4837", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8755854, "upload_time": "2021-09-28T04:20:31", "upload_time_iso_8601": "2021-09-28T04:20:31.148097Z", "url": "https://files.pythonhosted.org/packages/10/8e/85858c1b944676554648b6e38297abe80795fa504fa2969ea82c72c2abc5/TreeCorr-4.2.6-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b7175d2be08563c51069b0b010e24c0", "sha256": "e164bba44bfeaddeb613d7995c58aa8c1e6e2086e4a8e1f71d2bf52531a1c3d7" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7b7175d2be08563c51069b0b010e24c0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1176306, "upload_time": "2021-09-28T04:20:33", "upload_time_iso_8601": "2021-09-28T04:20:33.372154Z", "url": "https://files.pythonhosted.org/packages/9c/b8/0a8d64c03918e36c560d28bea160d5ce60da782e33678de56bf3c43294fc/TreeCorr-4.2.6-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "295d2073b0b1a34197ad23cd0ecd06ad", "sha256": "438dc97143c1d536c8c14ea75a534782f0275a10011ca3ce517889f239f3969f" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp36-cp36m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "295d2073b0b1a34197ad23cd0ecd06ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7710987, "upload_time": "2021-09-28T04:20:34", "upload_time_iso_8601": "2021-09-28T04:20:34.946782Z", "url": "https://files.pythonhosted.org/packages/b0/bf/7b1349e13c4caad8bd1165dd227df39f1614e75acd2c2d417a06bd3aa498/TreeCorr-4.2.6-cp36-cp36m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41fcf6da45bfc3cef97d62317acd317a", "sha256": "cd3994b7b66249077caec9c81ebd00493cea135bd6082212d12af7a508d09eaf" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "41fcf6da45bfc3cef97d62317acd317a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8755920, "upload_time": "2021-09-28T04:20:37", "upload_time_iso_8601": "2021-09-28T04:20:37.249587Z", "url": "https://files.pythonhosted.org/packages/56/33/e745ca6cfe9413bd8103a807da59f9751e3a48c5d61e07a643703b64b391/TreeCorr-4.2.6-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f304841b43944b704528b4b1c971196", "sha256": "2db6377e0bc3fcc140b8487aef4aa57b860c148a49bd5ea2774cd775a132a75c" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4f304841b43944b704528b4b1c971196", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1176306, "upload_time": "2021-09-28T04:20:38", "upload_time_iso_8601": "2021-09-28T04:20:38.864578Z", "url": "https://files.pythonhosted.org/packages/ef/48/7ffba084d09540f9f15ecdee65272a4533d0602766123ab290654e30482d/TreeCorr-4.2.6-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "63761db137b01dceb2bc4609201b0d81", "sha256": "ae5245f5252c6662d3abaa9ccb37a082e9ee74f6096f9cd8bd4ca49783dec0a4" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp37-cp37m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "63761db137b01dceb2bc4609201b0d81", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7710931, "upload_time": "2021-09-28T04:20:40", "upload_time_iso_8601": "2021-09-28T04:20:40.622786Z", "url": "https://files.pythonhosted.org/packages/82/22/9f45dcaff6a8b3903593bcca9496ab42393ba82871680bf024f1546f7cb9/TreeCorr-4.2.6-cp37-cp37m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36f863a9904a01e2b5b547126d269021", "sha256": "2762534155b9c43392c3dd7632563ffbe8d5c9e174692ee20c21563468018fca" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "36f863a9904a01e2b5b547126d269021", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8755946, "upload_time": "2021-09-28T04:20:42", "upload_time_iso_8601": "2021-09-28T04:20:42.799130Z", "url": "https://files.pythonhosted.org/packages/33/e4/eebe79c2ad204e01841e00d49c93196ffb03303eb9152b788d4449e7df68/TreeCorr-4.2.6-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4eb9bb5b7d1aced0d7e51b3aa62e59a0", "sha256": "d09e10a25f11406408abfe33446e085247b8cc03ca7f8b1bb6ee071b16d2bdfd" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "4eb9bb5b7d1aced0d7e51b3aa62e59a0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1176303, "upload_time": "2021-09-28T04:20:44", "upload_time_iso_8601": "2021-09-28T04:20:44.930779Z", "url": "https://files.pythonhosted.org/packages/30/00/58a090719b23443bf877c1925cccde0cfb3a46bc50ae1104543cd73eb4f1/TreeCorr-4.2.6-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81669985d87bdcdcbd28faa1408c6ebb", "sha256": "e30fee10fcc9e339ee863e9b4ca9ec3eabeba30a7905e2009bcae72e1910db73" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp38-cp38-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "81669985d87bdcdcbd28faa1408c6ebb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7711003, "upload_time": "2021-09-28T04:20:46", "upload_time_iso_8601": "2021-09-28T04:20:46.751496Z", "url": "https://files.pythonhosted.org/packages/b1/78/0bbb259034f28e7924226e909ba5cfbdcc493aa8a288c0158ec691822aec/TreeCorr-4.2.6-cp38-cp38-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b28523eff2fef50827cdd915c9fa0367", "sha256": "1515ef1545e6e5ee3e21eb1ab541a4cf43f48abc679927216b8e24762713982c" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "b28523eff2fef50827cdd915c9fa0367", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8755924, "upload_time": "2021-09-28T04:20:48", "upload_time_iso_8601": "2021-09-28T04:20:48.719330Z", "url": "https://files.pythonhosted.org/packages/ac/1d/8c8407e6d3da5d8f66d149448e030d21375ef5ef597b48a57117f60905e6/TreeCorr-4.2.6-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ca2097ce9cb2b08da6b763815c13586", "sha256": "b6df575b32d630fad8c6f58df308327ddf607b1c558f3b8e6f42db9d054484b0" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "7ca2097ce9cb2b08da6b763815c13586", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 1176347, "upload_time": "2021-09-28T04:20:50", "upload_time_iso_8601": "2021-09-28T04:20:50.500842Z", "url": "https://files.pythonhosted.org/packages/94/ef/10cc307c285f34e7a86ecc08db75c88bb02be30cd6df758e4e1af09965e4/TreeCorr-4.2.6-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2530f60181c35af159c3501dccfd968c", "sha256": "051c1350ef47998953b34b1e7507bbba2aa6248aad8a76257cf4ba3d3efa5b74" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp39-cp39-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "2530f60181c35af159c3501dccfd968c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7722720, "upload_time": "2021-09-28T04:20:52", "upload_time_iso_8601": "2021-09-28T04:20:52.259092Z", "url": "https://files.pythonhosted.org/packages/02/d7/3768ff6de10c28dc19d54ffec19fd95fc55bd7e2f356a4bbeba784510242/TreeCorr-4.2.6-cp39-cp39-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46eab960ebd280523e19f3ce26d9ffd9", "sha256": "fb11e5739b6dc5a336885884acd5357b505cbbfd6973c26557a04cef395af008" }, "downloads": -1, "filename": "TreeCorr-4.2.6-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "46eab960ebd280523e19f3ce26d9ffd9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8759650, "upload_time": "2021-09-28T04:20:54", "upload_time_iso_8601": "2021-09-28T04:20:54.507422Z", "url": "https://files.pythonhosted.org/packages/53/ef/411bd8d7f561cf17a71b4ee82db3451f2a9807b2c6c3f40d01a95e9e6a4c/TreeCorr-4.2.6-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a041e8e0c516cc48e5fd80b881759090", "sha256": "0ba8534d7bb1a2a8247d486be6bdfd02b60397b902cce15a8dce1a08139ba035" }, "downloads": -1, "filename": "TreeCorr-4.2.6-pp27-pypy_73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a041e8e0c516cc48e5fd80b881759090", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1110157, "upload_time": "2021-09-28T04:20:56", "upload_time_iso_8601": "2021-09-28T04:20:56.134879Z", "url": "https://files.pythonhosted.org/packages/fb/33/bf27d328b1f21f2df9bf64b60dd41d22678c7f70c1b6f8e2c44d1831c62f/TreeCorr-4.2.6-pp27-pypy_73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76a1b35f8aefc8627ff6c08e469eff05", "sha256": "1931deb43c4562321a9d3b57b5a02a8f90be8f645fe05bb22a19b75106484330" }, "downloads": -1, "filename": "TreeCorr-4.2.6-pp27-pypy_73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "76a1b35f8aefc8627ff6c08e469eff05", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1423768, "upload_time": "2021-09-28T04:20:57", "upload_time_iso_8601": "2021-09-28T04:20:57.271641Z", "url": "https://files.pythonhosted.org/packages/2d/5c/678a75fb63b97036cc860578174aaafeba338097f87f3a2e652b09be3c0a/TreeCorr-4.2.6-pp27-pypy_73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6546d325cf1bd71a2293b01623dda18", "sha256": "a7e7a357907368f8c94802baa9ab0da8517de3deb622c95b02d8ad7eccae8523" }, "downloads": -1, "filename": "TreeCorr-4.2.6-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b6546d325cf1bd71a2293b01623dda18", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1110210, "upload_time": "2021-09-28T04:20:59", "upload_time_iso_8601": "2021-09-28T04:20:59.020505Z", "url": "https://files.pythonhosted.org/packages/8f/8a/f156eef8b92342f2671520880a0a9fac7917076f8f261d5145898e5b5faa/TreeCorr-4.2.6-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61f58d0631d83fc38a08599daf044c96", "sha256": "5673409babd44877226adff1aba754b6df81b19359e412c3268fb332ed015d33" }, "downloads": -1, "filename": "TreeCorr-4.2.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "61f58d0631d83fc38a08599daf044c96", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1423827, "upload_time": "2021-09-28T04:21:00", "upload_time_iso_8601": "2021-09-28T04:21:00.627358Z", "url": "https://files.pythonhosted.org/packages/88/c1/e313051bc80a9ceaf995b4e2d998da4f97cb36901883ace3ac6283e9215f/TreeCorr-4.2.6-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d95ece1f15547a07ea338ea82bdb0191", "sha256": "08d69301158a16ac866b6750a44967d7b5a3d4242c9f0fc5621103c152d75c52" }, "downloads": -1, "filename": "TreeCorr-4.2.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d95ece1f15547a07ea338ea82bdb0191", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1110207, "upload_time": "2021-09-28T04:21:01", "upload_time_iso_8601": "2021-09-28T04:21:01.942899Z", "url": "https://files.pythonhosted.org/packages/63/92/bc0c2356a2832fb146886c409b806d91d1968ba735bedc90b8b19882004c/TreeCorr-4.2.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d0ef53810e240bc4004705b50837316", "sha256": "1941fb9ab789958fb91b5ac138b0aa5a3d7f240dd136a094ef463194f2031983" }, "downloads": -1, "filename": "TreeCorr-4.2.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4d0ef53810e240bc4004705b50837316", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1423831, "upload_time": "2021-09-28T04:21:03", "upload_time_iso_8601": "2021-09-28T04:21:03.305788Z", "url": "https://files.pythonhosted.org/packages/15/f5/57effb70c2aa00af81d5ae0a970a47c787798769e75b2d7db4d2d77d349c/TreeCorr-4.2.6-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbdeb26993734e101e65db809dbd1f01", "sha256": "cf3adc05fa787496cea6b891758bc4900c6e6bc22a4d00f16d517b0854b4dc3c" }, "downloads": -1, "filename": "TreeCorr-4.2.6.tar.gz", "has_sig": false, "md5_digest": "dbdeb26993734e101e65db809dbd1f01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 793536, "upload_time": "2021-09-28T04:21:04", "upload_time_iso_8601": "2021-09-28T04:21:04.570295Z", "url": "https://files.pythonhosted.org/packages/c7/b6/baa12ddc03d7248284bb3719c5e882b786a278e031b0a05d780f4579a77a/TreeCorr-4.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.7": [ { "comment_text": "", "digests": { "md5": "13bbe837a0a5f1750921435dbc6d008c", "sha256": "00df7165149c97bae1fa134e255df886f3d1b0dbb837f32cab54a26c3724fa43" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "13bbe837a0a5f1750921435dbc6d008c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1186260, "upload_time": "2022-03-25T18:49:31", "upload_time_iso_8601": "2022-03-25T18:49:31.929066Z", "url": "https://files.pythonhosted.org/packages/7b/e7/ac6f5f6ef92af0098b1975f8fc2e1d969d3ecfbb2645670525c9a86c8f09/TreeCorr-4.2.7-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef2d618e393566f0b9241a1e3a90c702", "sha256": "95794ca66aa80ef9bf34b19b3a67d79b0294dfe0e61acf6146de911c264b99cd" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp27-cp27m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "ef2d618e393566f0b9241a1e3a90c702", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7694898, "upload_time": "2022-03-25T18:49:34", "upload_time_iso_8601": "2022-03-25T18:49:34.529720Z", "url": "https://files.pythonhosted.org/packages/8b/5b/8382c0af762ca9550d115a2f1c0d99742992870c88e63d43794d6de4aba7/TreeCorr-4.2.7-cp27-cp27m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6eef2e85e2b58c49c14de582f46c840", "sha256": "c5919820255ee8af607909117993c4643fa7fcb1dbea55a688af80835a606549" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "f6eef2e85e2b58c49c14de582f46c840", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8754004, "upload_time": "2022-03-25T18:49:36", "upload_time_iso_8601": "2022-03-25T18:49:36.598023Z", "url": "https://files.pythonhosted.org/packages/bd/56/9f4da3622967999916691fbdb4fb40313c6fd00410e7a712da7556deeaf1/TreeCorr-4.2.7-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8480792735d57e087579ed7a7bf28bf2", "sha256": "c0d0eaed546468a90a85fdb234c36333646acbd433d08f4f6b44616010139e6e" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp27-cp27mu-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "8480792735d57e087579ed7a7bf28bf2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7694919, "upload_time": "2022-03-25T18:49:39", "upload_time_iso_8601": "2022-03-25T18:49:39.121772Z", "url": "https://files.pythonhosted.org/packages/44/7c/de0adf19eb2e747202805e5335987fd5692541d4f0e8fe314c33d02b78d5/TreeCorr-4.2.7-cp27-cp27mu-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "564edc6fcea9131ae72614ff5931e6c3", "sha256": "58f0a88eab0a6be14015bd65ae38a0985dc69b5c848ee4357f004afbe82462e2" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "564edc6fcea9131ae72614ff5931e6c3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8754050, "upload_time": "2022-03-25T18:49:41", "upload_time_iso_8601": "2022-03-25T18:49:41.748266Z", "url": "https://files.pythonhosted.org/packages/6e/5b/62f779a268bc3227c22c82fdde31e3e8724ef0e5f1ae915e30a9a04a21f6/TreeCorr-4.2.7-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a344120964d7c1aff7470a6b2324f753", "sha256": "4f3b0eb4231e08832719ed59f826aed8b508dfe9fe16f7507e89c2053f5be1ad" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "a344120964d7c1aff7470a6b2324f753", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1186327, "upload_time": "2022-03-25T18:49:43", "upload_time_iso_8601": "2022-03-25T18:49:43.832215Z", "url": "https://files.pythonhosted.org/packages/cf/f0/174f6106a87089fabff869a8e35a0b5938e83682d3d431fbd29d79e3a52e/TreeCorr-4.2.7-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "67700e00356132af67ca3c6475215379", "sha256": "a30001011c43ec119f0c198f0a2133a3296bb4dac6907feba1df3031317771d4" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp35-cp35m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "67700e00356132af67ca3c6475215379", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7718183, "upload_time": "2022-03-25T18:49:45", "upload_time_iso_8601": "2022-03-25T18:49:45.535973Z", "url": "https://files.pythonhosted.org/packages/9f/51/75a7e1bd94e8a3495001ad934259a6384969437db2f06618979e45fdf437/TreeCorr-4.2.7-cp35-cp35m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3135f18bfb327b0555477e7e3e2710ae", "sha256": "ff3bc048bb95b5fd700e0d4882ba9d6f973d960d1b61645a5b03ac1705e2ec01" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3135f18bfb327b0555477e7e3e2710ae", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8758051, "upload_time": "2022-03-25T18:49:48", "upload_time_iso_8601": "2022-03-25T18:49:48.162472Z", "url": "https://files.pythonhosted.org/packages/3d/58/d44855ada4ef27cefeba2f934b4bd9bdfd71ff057a2015db5b59cc36e7d3/TreeCorr-4.2.7-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f058fb0f3a2569a25ff900340a3b3ddc", "sha256": "86187e2371ef232005a700e3c7c99885c65b000624e79fd9c4cdc430eac40f29" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f058fb0f3a2569a25ff900340a3b3ddc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1176752, "upload_time": "2022-03-25T18:49:50", "upload_time_iso_8601": "2022-03-25T18:49:50.193559Z", "url": "https://files.pythonhosted.org/packages/f6/8d/61c4232474980793c701fac11fa1663cb141dac235e23405b749c2585f65/TreeCorr-4.2.7-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d85aa216e9c410425b83e10faf584ab", "sha256": "638cc404c61a00cadf3eec60619bece0729690abff13eb25e7499a19e350ee8f" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp36-cp36m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "3d85aa216e9c410425b83e10faf584ab", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7718237, "upload_time": "2022-03-25T18:49:51", "upload_time_iso_8601": "2022-03-25T18:49:51.988024Z", "url": "https://files.pythonhosted.org/packages/d0/eb/c46b2ceaff09aae52984e045c2317823539f45ca6d49bf975ac6813bee9b/TreeCorr-4.2.7-cp36-cp36m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f4cc50968a8ff74af3a56af1df5ccc2", "sha256": "56a39a92c603d45a3f892e683bc1a2fbb3ebeaa2d902102a0e0eda1ed7fbbc9a" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "8f4cc50968a8ff74af3a56af1df5ccc2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8758049, "upload_time": "2022-03-25T18:49:54", "upload_time_iso_8601": "2022-03-25T18:49:54.437112Z", "url": "https://files.pythonhosted.org/packages/ad/b1/320e727043c1fca10dd68c52f4a32a473a18ecfebc0c089b7c98cd10e8d7/TreeCorr-4.2.7-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e59eacaaaf06799105be154d2d962eff", "sha256": "e8c2ad2714d5f1ef694ccebb9a390eafc62e98d3d64b4729b4696d9a5d7c19b2" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e59eacaaaf06799105be154d2d962eff", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1176750, "upload_time": "2022-03-25T18:49:56", "upload_time_iso_8601": "2022-03-25T18:49:56.259221Z", "url": "https://files.pythonhosted.org/packages/b1/2d/db1215178d5d0de38a358a6f4c269c9b3f6b0ba33dcbcd6b0cded2f10804/TreeCorr-4.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb69e3ca3bd3a06afae577a11023788d", "sha256": "c84d22043f542b392c7fe6157cc3cf54bce28b0acbd2c14e2a0f9de68951aafb" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp37-cp37m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "bb69e3ca3bd3a06afae577a11023788d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7718261, "upload_time": "2022-03-25T18:49:57", "upload_time_iso_8601": "2022-03-25T18:49:57.969245Z", "url": "https://files.pythonhosted.org/packages/2d/5e/1ca220f3be02b51de94e8368678c40943780c658561c54e05c1155c190e2/TreeCorr-4.2.7-cp37-cp37m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d39c3fc93ecd00abdabb3f647151ea4b", "sha256": "d2ba74e6258b53d7e17c3b50788c9d42d365435c4033cc4fb7d74893c8192794" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d39c3fc93ecd00abdabb3f647151ea4b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8758163, "upload_time": "2022-03-25T18:50:00", "upload_time_iso_8601": "2022-03-25T18:50:00.288806Z", "url": "https://files.pythonhosted.org/packages/5a/c0/e2da426341febadc2b89579c3aa21647f97d455e69edcbd8d72a560303ae/TreeCorr-4.2.7-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9b8ac05f496c6cac47c9bb7e50f5067", "sha256": "65d03f5cbf54184542371fb2551e90a1df7fe66411a44c405b85d42fc81bcb5f" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c9b8ac05f496c6cac47c9bb7e50f5067", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1176750, "upload_time": "2022-03-25T18:50:02", "upload_time_iso_8601": "2022-03-25T18:50:02.281244Z", "url": "https://files.pythonhosted.org/packages/32/d2/df781a5bc61861cabf3f08b1b54440670afe5622c3e1be374bd2083dfb2a/TreeCorr-4.2.7-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba0ac42b5735c3a45a839cdbcbe07275", "sha256": "415d1b580423a1d1ef6f0f10c1750c6b28d354caf2dabf34089f28d84256d8de" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp38-cp38-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "ba0ac42b5735c3a45a839cdbcbe07275", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7718213, "upload_time": "2022-03-25T18:50:04", "upload_time_iso_8601": "2022-03-25T18:50:04.008184Z", "url": "https://files.pythonhosted.org/packages/66/b3/f83e5b85113eedc0c44c191f3164b8ee0b767f63527d321c9c5b985e6bfe/TreeCorr-4.2.7-cp38-cp38-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "549b11e46a5e3efbd22e0f68aa40b91d", "sha256": "afa131afa5db8b5368caadacedc1767717ef6ffcfe366948e55db18d67a385ae" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "549b11e46a5e3efbd22e0f68aa40b91d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8758085, "upload_time": "2022-03-25T18:50:06", "upload_time_iso_8601": "2022-03-25T18:50:06.519462Z", "url": "https://files.pythonhosted.org/packages/34/84/70e65026a2584420eb89057c418c6fb9287a15086fd7bd99f2ae477da8f2/TreeCorr-4.2.7-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "baeab92bab921e597202c6c0e5786f7a", "sha256": "6b50829f37cf67fc6b71c59a14cc1cfbc9a32225268cd03990733ca0a4aabd64" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "baeab92bab921e597202c6c0e5786f7a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 1176790, "upload_time": "2022-03-25T18:50:08", "upload_time_iso_8601": "2022-03-25T18:50:08.332362Z", "url": "https://files.pythonhosted.org/packages/f9/8a/350a23dbf92d75528838747bc2c6157e4e0f3088a4d89ee8d2d5c1dce5c4/TreeCorr-4.2.7-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96dccf48744177a24be2770cbe97bdf1", "sha256": "61aff8f853518816377bde11ad6cd3f73d2721e47822150406b962ba50d8a164" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp39-cp39-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "96dccf48744177a24be2770cbe97bdf1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7723193, "upload_time": "2022-03-25T18:50:09", "upload_time_iso_8601": "2022-03-25T18:50:09.959964Z", "url": "https://files.pythonhosted.org/packages/bf/ec/9c8539368c1ab7b8849f200c347d634f0f722ed8310ec695a9337ddd14a1/TreeCorr-4.2.7-cp39-cp39-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba69e9b5837ab96945fade0c408135d3", "sha256": "cfea87f80b412c87f7a8293b31adf1e5e175c06488efeed4868c9bead5ddd8ae" }, "downloads": -1, "filename": "TreeCorr-4.2.7-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ba69e9b5837ab96945fade0c408135d3", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8760135, "upload_time": "2022-03-25T18:50:11", "upload_time_iso_8601": "2022-03-25T18:50:11.919428Z", "url": "https://files.pythonhosted.org/packages/97/fe/1dd98c392cdac1ff7361fc2764da0aa576efd98bf45c02b64c4e1ef09c13/TreeCorr-4.2.7-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a475a9f6fd2304b3583ecfa890cf29f", "sha256": "c2a7f502c83b6c061fe7b98a8bdc7c41bcd70dcc2ea06206b427960289807f3d" }, "downloads": -1, "filename": "TreeCorr-4.2.7-pp27-pypy_73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8a475a9f6fd2304b3583ecfa890cf29f", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1110604, "upload_time": "2022-03-25T18:50:14", "upload_time_iso_8601": "2022-03-25T18:50:14.389588Z", "url": "https://files.pythonhosted.org/packages/2d/e8/c1295d80d0c59e6afc64393949fe5dc3454276e71dc3c52e15cf872e3636/TreeCorr-4.2.7-pp27-pypy_73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e100d7bf6ccd9ade4c7bd24e6318e159", "sha256": "0376f716b34325b1f947faabea12acf2e7db4bef08d273b9f315bce2db78f7d4" }, "downloads": -1, "filename": "TreeCorr-4.2.7-pp27-pypy_73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e100d7bf6ccd9ade4c7bd24e6318e159", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1423486, "upload_time": "2022-03-25T18:50:15", "upload_time_iso_8601": "2022-03-25T18:50:15.916653Z", "url": "https://files.pythonhosted.org/packages/c6/f4/715febf708f11cc98ed41e1be519cac1988bf3f0e654feaf3620e9819920/TreeCorr-4.2.7-pp27-pypy_73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f82ca5b4c3b0395e18fb5ce3359ab35", "sha256": "4c28fbc8292a2749159dd5788b9c670bc27c9b790e252fc0fec63d316546bc58" }, "downloads": -1, "filename": "TreeCorr-4.2.7-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "8f82ca5b4c3b0395e18fb5ce3359ab35", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1110655, "upload_time": "2022-03-25T18:50:17", "upload_time_iso_8601": "2022-03-25T18:50:17.462715Z", "url": "https://files.pythonhosted.org/packages/b4/08/6433fe3b6a1654dae9bd223e74b8b9403a50c267afaa31b262f00ea37e2a/TreeCorr-4.2.7-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f88f92032549aaa35766f7d2e100896", "sha256": "2175c8aac5743ddf10b59f94e24ed7643be1aa3acd96187b485ad1808524f625" }, "downloads": -1, "filename": "TreeCorr-4.2.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "0f88f92032549aaa35766f7d2e100896", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1423548, "upload_time": "2022-03-25T18:50:19", "upload_time_iso_8601": "2022-03-25T18:50:19.048625Z", "url": "https://files.pythonhosted.org/packages/19/75/948f2c915299600293784f485e80b16027a849f163ec1f74e17068bc7d38/TreeCorr-4.2.7-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5de8346a18ee1bbcf6fc3203c2a2c207", "sha256": "83d3b3a5f30d9b398931582743e319f1c1c47ec02dd7311225044b67ac64886b" }, "downloads": -1, "filename": "TreeCorr-4.2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5de8346a18ee1bbcf6fc3203c2a2c207", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1110653, "upload_time": "2022-03-25T18:50:20", "upload_time_iso_8601": "2022-03-25T18:50:20.544088Z", "url": "https://files.pythonhosted.org/packages/8c/04/1a8760a7a68d5914457bdc622ca481d988abebcce3c609a2c59e488eb091/TreeCorr-4.2.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9d6d3eafc00aca94bc917a30b558d93", "sha256": "63314d8148d139eec26dcf83b066342dae41833501136f6bb78bf4f2f4c4379c" }, "downloads": -1, "filename": "TreeCorr-4.2.7-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a9d6d3eafc00aca94bc917a30b558d93", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1423547, "upload_time": "2022-03-25T18:50:21", "upload_time_iso_8601": "2022-03-25T18:50:21.952502Z", "url": "https://files.pythonhosted.org/packages/aa/ec/7715f0d334b19716cfecbfc20cd22ab798c1eb2225274ec53db7fad89a7c/TreeCorr-4.2.7-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81198d0913f2a100e5b229c74d67374e", "sha256": "985fc11f414a5442a1bddbdfeaaac3338792c820dc9ecf07228fbe91ebff4529" }, "downloads": -1, "filename": "TreeCorr-4.2.7.tar.gz", "has_sig": false, "md5_digest": "81198d0913f2a100e5b229c74d67374e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 794711, "upload_time": "2022-03-25T18:50:23", "upload_time_iso_8601": "2022-03-25T18:50:23.439490Z", "url": "https://files.pythonhosted.org/packages/33/54/6b0bcbbc3edece531e96010f706c7e56843e2e5f793a4f2886d7630145ab/TreeCorr-4.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "4.2.8": [ { "comment_text": "", "digests": { "md5": "95badb3fc06de19c1a48d241e769b68a", "sha256": "9c86500f251940c6cb86a3abaf94892660f6d51e18c096a667bf274886ceb021" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "95badb3fc06de19c1a48d241e769b68a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1186266, "upload_time": "2022-04-07T23:05:41", "upload_time_iso_8601": "2022-04-07T23:05:41.571435Z", "url": "https://files.pythonhosted.org/packages/a9/df/0e0f4c9e80eb2c550a1b8592420310a6ef4adb76b18253f2f8a84185f45d/TreeCorr-4.2.8-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6613b46fab22cebc590b8716c419e966", "sha256": "d6d4148d2b3528b82b7d933d292f3a166420d4070a179a99c40dd52cb4de0aec" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "6613b46fab22cebc590b8716c419e966", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7703097, "upload_time": "2022-04-07T23:05:44", "upload_time_iso_8601": "2022-04-07T23:05:44.346455Z", "url": "https://files.pythonhosted.org/packages/c9/1b/31c82588c88e70ea159529d7ade51b395f88822428b1543f4bf71bb85fb1/TreeCorr-4.2.8-cp27-cp27m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7e7dae37abe1427129ba56bf2a7226a", "sha256": "0b15bd9ea7f606250b6404af074cad98a76e604f94b7b21c2996abe2eb766386" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c7e7dae37abe1427129ba56bf2a7226a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8758780, "upload_time": "2022-04-07T23:05:47", "upload_time_iso_8601": "2022-04-07T23:05:47.071710Z", "url": "https://files.pythonhosted.org/packages/4a/10/13b60c1af11347665eda5ad75c40ee5bb092875c900bf115f7ddc3856ce6/TreeCorr-4.2.8-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96bfb81aa4572c36045fad7fac53ac0b", "sha256": "dcc42381237ade77b1764cb4f3a38aa2570fc8e0e8bdfcf9dddf1d02f4b6c8b2" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27mu-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "96bfb81aa4572c36045fad7fac53ac0b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7703028, "upload_time": "2022-04-07T23:05:49", "upload_time_iso_8601": "2022-04-07T23:05:49.716687Z", "url": "https://files.pythonhosted.org/packages/dd/93/7c1e54324885a43e9f7412c0c47b49362eb1f8e2c8aed0d0ba5989471cc7/TreeCorr-4.2.8-cp27-cp27mu-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6862005374d0eb0560ac4c1830760e89", "sha256": "9abe8116983b49d770c86909b9f5552dd58f14735eb5834601b8906eb1d0dc68" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6862005374d0eb0560ac4c1830760e89", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8758765, "upload_time": "2022-04-07T23:05:51", "upload_time_iso_8601": "2022-04-07T23:05:51.920945Z", "url": "https://files.pythonhosted.org/packages/31/7b/20f78b0dadd41a779daa7ddd73763d4b315a586033788b51f2a45ed73a9d/TreeCorr-4.2.8-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03c2f35e6c3b0ff9c87a51082bf11bb7", "sha256": "80e0d664fb8eca963e4d382b173db884c4a56ca906f1ca00ec1f936333ed5b9c" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "03c2f35e6c3b0ff9c87a51082bf11bb7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1186331, "upload_time": "2022-04-07T23:05:53", "upload_time_iso_8601": "2022-04-07T23:05:53.868402Z", "url": "https://files.pythonhosted.org/packages/82/3b/303044b87e084f5d16d6990ee6ef63538b7b1dc5adc30b89522ade60a048/TreeCorr-4.2.8-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ca9722dab2fa0976dd6057eb5fb025a", "sha256": "ed1907a4df761c8443b277e00fe9067e31805ba4da3d59d70ac9b7c3516aecec" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp35-cp35m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "0ca9722dab2fa0976dd6057eb5fb025a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7723316, "upload_time": "2022-04-07T23:05:55", "upload_time_iso_8601": "2022-04-07T23:05:55.628262Z", "url": "https://files.pythonhosted.org/packages/9b/65/1e301db8d9612473070ff456daa492da5996dccef03842daf83bc49e7f56/TreeCorr-4.2.8-cp35-cp35m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cdea1908d4620f839bb592bc2795d8f", "sha256": "5c1ab2efd8d8600743facf194ac09b6c03011359e289928648afa5e6e0d08490" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5cdea1908d4620f839bb592bc2795d8f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8762759, "upload_time": "2022-04-07T23:05:57", "upload_time_iso_8601": "2022-04-07T23:05:57.876826Z", "url": "https://files.pythonhosted.org/packages/ac/d0/250ae486a09e249ca672c4010ea4e90de927e26018a4caa97f9f622b825b/TreeCorr-4.2.8-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afca33ee0d5d51c519e43278dfe1652f", "sha256": "5a9f3db601ba4bb446ae164b58767cb607e12136005857858c228e8fc1deb0d5" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "afca33ee0d5d51c519e43278dfe1652f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1176751, "upload_time": "2022-04-07T23:06:00", "upload_time_iso_8601": "2022-04-07T23:06:00.272652Z", "url": "https://files.pythonhosted.org/packages/11/6b/a790777e8bec20a66dbfa703f66e08f2ecd5ba884ebbc820ffca4e296afc/TreeCorr-4.2.8-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "746ba7a4d48d27a934065f51e2908574", "sha256": "3005a638d7b4965fe46c4f060883960ba54a2818590c710710cb89c29d2c3cb7" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp36-cp36m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "746ba7a4d48d27a934065f51e2908574", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7723363, "upload_time": "2022-04-07T23:06:02", "upload_time_iso_8601": "2022-04-07T23:06:02.457260Z", "url": "https://files.pythonhosted.org/packages/90/2d/b70d48d049f19ddea380aeb865737d10361738d91bcbaefe0729394e9681/TreeCorr-4.2.8-cp36-cp36m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d1beb475c518ca1762ae56ce38843b2", "sha256": "52deffe23e1269d17afc9b7a020dd6187393eb3fe70c9a9f701256d43c9169e5" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6d1beb475c518ca1762ae56ce38843b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8762937, "upload_time": "2022-04-07T23:06:04", "upload_time_iso_8601": "2022-04-07T23:06:04.723828Z", "url": "https://files.pythonhosted.org/packages/4f/a3/5b70d979785c1861bf9af50feae74733956b99a7ca3c1bf7a03b4c60c16b/TreeCorr-4.2.8-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2f9b56cd796fde743aaae07a5b24563", "sha256": "203efa7e4ce93000c967d1c0e09c4e818dbdd022f57140d8f15628785d1dadb7" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d2f9b56cd796fde743aaae07a5b24563", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1176758, "upload_time": "2022-04-07T23:06:06", "upload_time_iso_8601": "2022-04-07T23:06:06.870652Z", "url": "https://files.pythonhosted.org/packages/b0/e6/ec562ccdc540d62d19c3c6aced3f802a297d7ea7388b7982ea9a9fca7456/TreeCorr-4.2.8-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c5e641f8d8f5ce00c5d31fb86c3a597", "sha256": "4c445304db7d72beede2d7b7e4e177127315d27f874d092cffc7dee94e4b4b85" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp37-cp37m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "8c5e641f8d8f5ce00c5d31fb86c3a597", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7723309, "upload_time": "2022-04-07T23:06:08", "upload_time_iso_8601": "2022-04-07T23:06:08.638526Z", "url": "https://files.pythonhosted.org/packages/0f/f9/96da5458c3696652eeef86807ea8f95f96f49f142305d439593b3b4dc041/TreeCorr-4.2.8-cp37-cp37m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee4e90dc0652a753aec6c63823f90854", "sha256": "d90d1d18a6cd58c0d1a464039c17828aa1dec5cb3deff8908d951e32b3288d38" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ee4e90dc0652a753aec6c63823f90854", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8762935, "upload_time": "2022-04-07T23:06:10", "upload_time_iso_8601": "2022-04-07T23:06:10.577159Z", "url": "https://files.pythonhosted.org/packages/aa/61/3210806a751977a7a44066303c5cf45f18e9a7a87b54e9978959d121ff28/TreeCorr-4.2.8-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c32e907a3378ef2eef41024145094a6a", "sha256": "2f63b52f6b460d8c4b2e324125c34da331424556907706c751e1b51f41832870" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c32e907a3378ef2eef41024145094a6a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1176756, "upload_time": "2022-04-07T23:06:12", "upload_time_iso_8601": "2022-04-07T23:06:12.244233Z", "url": "https://files.pythonhosted.org/packages/20/08/235861736c15e1c00c64cb414b0009a08aa39a6ea5249a9b55e6b173f15c/TreeCorr-4.2.8-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ff0893675742a96ac37cf1566197084", "sha256": "63a25fe0fc0d1cfdb9549b487e5bab491035d9aca8cd12c2f70595ec47050722" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp38-cp38-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "7ff0893675742a96ac37cf1566197084", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7723348, "upload_time": "2022-04-07T23:06:14", "upload_time_iso_8601": "2022-04-07T23:06:14.461355Z", "url": "https://files.pythonhosted.org/packages/4d/94/ceeb44fe359817f5e87da41dd45f4f0280af82ee132e7bb480bc76d7d5a4/TreeCorr-4.2.8-cp38-cp38-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "582b03f256fa794d6521914e5e37914a", "sha256": "6993a25c54accc42c3c8639207c4f6803a0c58af29d1cb98240e0462be358477" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "582b03f256fa794d6521914e5e37914a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8762882, "upload_time": "2022-04-07T23:06:16", "upload_time_iso_8601": "2022-04-07T23:06:16.415636Z", "url": "https://files.pythonhosted.org/packages/9b/b8/fe82f3030bb2abaa5bc7995b2b76903f5778a398ea1fdc0abb90557041de/TreeCorr-4.2.8-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3d069c8ed594b995d4c06bdc427dd03", "sha256": "fa750e75606788d13356b46d2da3f99e72ae089596d7940519d413bb42484450" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c3d069c8ed594b995d4c06bdc427dd03", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 1176793, "upload_time": "2022-04-07T23:06:18", "upload_time_iso_8601": "2022-04-07T23:06:18.203349Z", "url": "https://files.pythonhosted.org/packages/a6/6a/6f1e39df461f83300dc1258176a8884e1c94b444f81a151a4c8ba6367c84/TreeCorr-4.2.8-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ef073c68e33b5bd6b1e036902bc6ab9", "sha256": "bf71578d8edc786658aed0a05b5eddab915607e8e5436eeca22d715524724204" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp39-cp39-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "1ef073c68e33b5bd6b1e036902bc6ab9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7723131, "upload_time": "2022-04-07T23:06:20", "upload_time_iso_8601": "2022-04-07T23:06:20.772066Z", "url": "https://files.pythonhosted.org/packages/2a/32/4adae16777bb6da024508c3f7e94ec64be11263557fbff2a904597678407/TreeCorr-4.2.8-cp39-cp39-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ca3e968e98bebc018dccf6a54889f6f", "sha256": "8c268fa85031cb36395a5e13367996dd68cadc0dc8db1fc2945f056c3191d09d" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3ca3e968e98bebc018dccf6a54889f6f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8760141, "upload_time": "2022-04-07T23:06:22", "upload_time_iso_8601": "2022-04-07T23:06:22.915371Z", "url": "https://files.pythonhosted.org/packages/11/41/ff7662f4caa094617d7b74efcd5049dbbd132c68d6f1e2266e1e17302ed9/TreeCorr-4.2.8-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de5977198eee01e2e230f584df98690c", "sha256": "6e1e5abf6707a31fd5ace753bf2bceb97e2e84b9a01da46f7310954d63a57e03" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp27-pypy_73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "de5977198eee01e2e230f584df98690c", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1110606, "upload_time": "2022-04-07T23:06:25", "upload_time_iso_8601": "2022-04-07T23:06:25.102682Z", "url": "https://files.pythonhosted.org/packages/9f/b2/dd67d43fe96da8fe022726379b16fd27725a0bbbe1946d43edebcb5675fe/TreeCorr-4.2.8-pp27-pypy_73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c66cd273da5f1fec8cfb3dd7f8152bf", "sha256": "75363d7cf71ee545ad17b3ec0e88318b2338ccf8c73ca9fd875c69c7b0b38cbb" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp27-pypy_73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6c66cd273da5f1fec8cfb3dd7f8152bf", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1423477, "upload_time": "2022-04-07T23:06:26", "upload_time_iso_8601": "2022-04-07T23:06:26.372887Z", "url": "https://files.pythonhosted.org/packages/c3/2e/ba2838741fa7465703a79b2366e0187356eddb845b0317ab49ce8ee706d4/TreeCorr-4.2.8-pp27-pypy_73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f0482f3535241b043a3cc3dae42ea92", "sha256": "960f0583232de71b77de9278764d9f0199a9d0ff71f3997f45d30e6593127fa7" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0f0482f3535241b043a3cc3dae42ea92", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1110657, "upload_time": "2022-04-07T23:06:27", "upload_time_iso_8601": "2022-04-07T23:06:27.761270Z", "url": "https://files.pythonhosted.org/packages/96/1e/a3f9f8613aa73df8a2d510e38c746833c80dc545dd0adadc40abb1c18fc3/TreeCorr-4.2.8-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34ea14e279a7bf8023330562e55c5ba2", "sha256": "1c17f7d089b6b713d428f99e0bb0b4c994a77d1d5cb91a273f7838de2550bab5" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "34ea14e279a7bf8023330562e55c5ba2", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1423538, "upload_time": "2022-04-07T23:06:29", "upload_time_iso_8601": "2022-04-07T23:06:29.474800Z", "url": "https://files.pythonhosted.org/packages/8d/a2/5914c8948e2705b7b5c8c48585ba5d67bab664c3edf899df8b703829a8ce/TreeCorr-4.2.8-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "301acaf4ce0fdcd1f755b1f539692d6c", "sha256": "e6d60a81faf44a69a115d39a4d4f4ce88e02fc994c58ba75a322ac5a676751fb" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "301acaf4ce0fdcd1f755b1f539692d6c", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1110655, "upload_time": "2022-04-07T23:06:30", "upload_time_iso_8601": "2022-04-07T23:06:30.853343Z", "url": "https://files.pythonhosted.org/packages/05/8a/e1a5ae2b8a2c583ded72cfd39f54d872981d89cb25f5efb0ad931973c820/TreeCorr-4.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee507eb1e6c16ca835c3eaed8fd0cd15", "sha256": "ebc20a5c28b8dd1e2da554948817f999524b809847ef9a68ecbf92589f84083f" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ee507eb1e6c16ca835c3eaed8fd0cd15", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1423538, "upload_time": "2022-04-07T23:06:32", "upload_time_iso_8601": "2022-04-07T23:06:32.272322Z", "url": "https://files.pythonhosted.org/packages/12/be/4e293b78b590abd03ea5d67a0d34173ee04c77b8a3b758446cfee4589972/TreeCorr-4.2.8-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe6af065dc07c1b3dc686223b71884ba", "sha256": "e9e3f2e5dab33b5ccc2732b5ab1f3c2fae7cc90e4358fff21b50a001efaedfe5" }, "downloads": -1, "filename": "TreeCorr-4.2.8.tar.gz", "has_sig": false, "md5_digest": "fe6af065dc07c1b3dc686223b71884ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 794809, "upload_time": "2022-04-07T23:06:33", "upload_time_iso_8601": "2022-04-07T23:06:33.681974Z", "url": "https://files.pythonhosted.org/packages/3d/c5/0ced6d62d7d52f0f6d71331b71f42cdb61459c691fec62b38a69b22b73cc/TreeCorr-4.2.8.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "95badb3fc06de19c1a48d241e769b68a", "sha256": "9c86500f251940c6cb86a3abaf94892660f6d51e18c096a667bf274886ceb021" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "95badb3fc06de19c1a48d241e769b68a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1186266, "upload_time": "2022-04-07T23:05:41", "upload_time_iso_8601": "2022-04-07T23:05:41.571435Z", "url": "https://files.pythonhosted.org/packages/a9/df/0e0f4c9e80eb2c550a1b8592420310a6ef4adb76b18253f2f8a84185f45d/TreeCorr-4.2.8-cp27-cp27m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6613b46fab22cebc590b8716c419e966", "sha256": "d6d4148d2b3528b82b7d933d292f3a166420d4070a179a99c40dd52cb4de0aec" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "6613b46fab22cebc590b8716c419e966", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7703097, "upload_time": "2022-04-07T23:05:44", "upload_time_iso_8601": "2022-04-07T23:05:44.346455Z", "url": "https://files.pythonhosted.org/packages/c9/1b/31c82588c88e70ea159529d7ade51b395f88822428b1543f4bf71bb85fb1/TreeCorr-4.2.8-cp27-cp27m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c7e7dae37abe1427129ba56bf2a7226a", "sha256": "0b15bd9ea7f606250b6404af074cad98a76e604f94b7b21c2996abe2eb766386" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "c7e7dae37abe1427129ba56bf2a7226a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8758780, "upload_time": "2022-04-07T23:05:47", "upload_time_iso_8601": "2022-04-07T23:05:47.071710Z", "url": "https://files.pythonhosted.org/packages/4a/10/13b60c1af11347665eda5ad75c40ee5bb092875c900bf115f7ddc3856ce6/TreeCorr-4.2.8-cp27-cp27m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96bfb81aa4572c36045fad7fac53ac0b", "sha256": "dcc42381237ade77b1764cb4f3a38aa2570fc8e0e8bdfcf9dddf1d02f4b6c8b2" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27mu-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "96bfb81aa4572c36045fad7fac53ac0b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 7703028, "upload_time": "2022-04-07T23:05:49", "upload_time_iso_8601": "2022-04-07T23:05:49.716687Z", "url": "https://files.pythonhosted.org/packages/dd/93/7c1e54324885a43e9f7412c0c47b49362eb1f8e2c8aed0d0ba5989471cc7/TreeCorr-4.2.8-cp27-cp27mu-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6862005374d0eb0560ac4c1830760e89", "sha256": "9abe8116983b49d770c86909b9f5552dd58f14735eb5834601b8906eb1d0dc68" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp27-cp27mu-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6862005374d0eb0560ac4c1830760e89", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 8758765, "upload_time": "2022-04-07T23:05:51", "upload_time_iso_8601": "2022-04-07T23:05:51.920945Z", "url": "https://files.pythonhosted.org/packages/31/7b/20f78b0dadd41a779daa7ddd73763d4b315a586033788b51f2a45ed73a9d/TreeCorr-4.2.8-cp27-cp27mu-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03c2f35e6c3b0ff9c87a51082bf11bb7", "sha256": "80e0d664fb8eca963e4d382b173db884c4a56ca906f1ca00ec1f936333ed5b9c" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp35-cp35m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "03c2f35e6c3b0ff9c87a51082bf11bb7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 1186331, "upload_time": "2022-04-07T23:05:53", "upload_time_iso_8601": "2022-04-07T23:05:53.868402Z", "url": "https://files.pythonhosted.org/packages/82/3b/303044b87e084f5d16d6990ee6ef63538b7b1dc5adc30b89522ade60a048/TreeCorr-4.2.8-cp35-cp35m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ca9722dab2fa0976dd6057eb5fb025a", "sha256": "ed1907a4df761c8443b277e00fe9067e31805ba4da3d59d70ac9b7c3516aecec" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp35-cp35m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "0ca9722dab2fa0976dd6057eb5fb025a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 7723316, "upload_time": "2022-04-07T23:05:55", "upload_time_iso_8601": "2022-04-07T23:05:55.628262Z", "url": "https://files.pythonhosted.org/packages/9b/65/1e301db8d9612473070ff456daa492da5996dccef03842daf83bc49e7f56/TreeCorr-4.2.8-cp35-cp35m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5cdea1908d4620f839bb592bc2795d8f", "sha256": "5c1ab2efd8d8600743facf194ac09b6c03011359e289928648afa5e6e0d08490" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp35-cp35m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "5cdea1908d4620f839bb592bc2795d8f", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 8762759, "upload_time": "2022-04-07T23:05:57", "upload_time_iso_8601": "2022-04-07T23:05:57.876826Z", "url": "https://files.pythonhosted.org/packages/ac/d0/250ae486a09e249ca672c4010ea4e90de927e26018a4caa97f9f622b825b/TreeCorr-4.2.8-cp35-cp35m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afca33ee0d5d51c519e43278dfe1652f", "sha256": "5a9f3db601ba4bb446ae164b58767cb607e12136005857858c228e8fc1deb0d5" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "afca33ee0d5d51c519e43278dfe1652f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1176751, "upload_time": "2022-04-07T23:06:00", "upload_time_iso_8601": "2022-04-07T23:06:00.272652Z", "url": "https://files.pythonhosted.org/packages/11/6b/a790777e8bec20a66dbfa703f66e08f2ecd5ba884ebbc820ffca4e296afc/TreeCorr-4.2.8-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "746ba7a4d48d27a934065f51e2908574", "sha256": "3005a638d7b4965fe46c4f060883960ba54a2818590c710710cb89c29d2c3cb7" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp36-cp36m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "746ba7a4d48d27a934065f51e2908574", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 7723363, "upload_time": "2022-04-07T23:06:02", "upload_time_iso_8601": "2022-04-07T23:06:02.457260Z", "url": "https://files.pythonhosted.org/packages/90/2d/b70d48d049f19ddea380aeb865737d10361738d91bcbaefe0729394e9681/TreeCorr-4.2.8-cp36-cp36m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6d1beb475c518ca1762ae56ce38843b2", "sha256": "52deffe23e1269d17afc9b7a020dd6187393eb3fe70c9a9f701256d43c9169e5" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp36-cp36m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6d1beb475c518ca1762ae56ce38843b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 8762937, "upload_time": "2022-04-07T23:06:04", "upload_time_iso_8601": "2022-04-07T23:06:04.723828Z", "url": "https://files.pythonhosted.org/packages/4f/a3/5b70d979785c1861bf9af50feae74733956b99a7ca3c1bf7a03b4c60c16b/TreeCorr-4.2.8-cp36-cp36m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2f9b56cd796fde743aaae07a5b24563", "sha256": "203efa7e4ce93000c967d1c0e09c4e818dbdd022f57140d8f15628785d1dadb7" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d2f9b56cd796fde743aaae07a5b24563", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 1176758, "upload_time": "2022-04-07T23:06:06", "upload_time_iso_8601": "2022-04-07T23:06:06.870652Z", "url": "https://files.pythonhosted.org/packages/b0/e6/ec562ccdc540d62d19c3c6aced3f802a297d7ea7388b7982ea9a9fca7456/TreeCorr-4.2.8-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c5e641f8d8f5ce00c5d31fb86c3a597", "sha256": "4c445304db7d72beede2d7b7e4e177127315d27f874d092cffc7dee94e4b4b85" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp37-cp37m-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "8c5e641f8d8f5ce00c5d31fb86c3a597", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 7723309, "upload_time": "2022-04-07T23:06:08", "upload_time_iso_8601": "2022-04-07T23:06:08.638526Z", "url": "https://files.pythonhosted.org/packages/0f/f9/96da5458c3696652eeef86807ea8f95f96f49f142305d439593b3b4dc041/TreeCorr-4.2.8-cp37-cp37m-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee4e90dc0652a753aec6c63823f90854", "sha256": "d90d1d18a6cd58c0d1a464039c17828aa1dec5cb3deff8908d951e32b3288d38" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp37-cp37m-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ee4e90dc0652a753aec6c63823f90854", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 8762935, "upload_time": "2022-04-07T23:06:10", "upload_time_iso_8601": "2022-04-07T23:06:10.577159Z", "url": "https://files.pythonhosted.org/packages/aa/61/3210806a751977a7a44066303c5cf45f18e9a7a87b54e9978959d121ff28/TreeCorr-4.2.8-cp37-cp37m-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c32e907a3378ef2eef41024145094a6a", "sha256": "2f63b52f6b460d8c4b2e324125c34da331424556907706c751e1b51f41832870" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c32e907a3378ef2eef41024145094a6a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 1176756, "upload_time": "2022-04-07T23:06:12", "upload_time_iso_8601": "2022-04-07T23:06:12.244233Z", "url": "https://files.pythonhosted.org/packages/20/08/235861736c15e1c00c64cb414b0009a08aa39a6ea5249a9b55e6b173f15c/TreeCorr-4.2.8-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ff0893675742a96ac37cf1566197084", "sha256": "63a25fe0fc0d1cfdb9549b487e5bab491035d9aca8cd12c2f70595ec47050722" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp38-cp38-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "7ff0893675742a96ac37cf1566197084", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 7723348, "upload_time": "2022-04-07T23:06:14", "upload_time_iso_8601": "2022-04-07T23:06:14.461355Z", "url": "https://files.pythonhosted.org/packages/4d/94/ceeb44fe359817f5e87da41dd45f4f0280af82ee132e7bb480bc76d7d5a4/TreeCorr-4.2.8-cp38-cp38-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "582b03f256fa794d6521914e5e37914a", "sha256": "6993a25c54accc42c3c8639207c4f6803a0c58af29d1cb98240e0462be358477" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp38-cp38-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "582b03f256fa794d6521914e5e37914a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 8762882, "upload_time": "2022-04-07T23:06:16", "upload_time_iso_8601": "2022-04-07T23:06:16.415636Z", "url": "https://files.pythonhosted.org/packages/9b/b8/fe82f3030bb2abaa5bc7995b2b76903f5778a398ea1fdc0abb90557041de/TreeCorr-4.2.8-cp38-cp38-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3d069c8ed594b995d4c06bdc427dd03", "sha256": "fa750e75606788d13356b46d2da3f99e72ae089596d7940519d413bb42484450" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "c3d069c8ed594b995d4c06bdc427dd03", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 1176793, "upload_time": "2022-04-07T23:06:18", "upload_time_iso_8601": "2022-04-07T23:06:18.203349Z", "url": "https://files.pythonhosted.org/packages/a6/6a/6f1e39df461f83300dc1258176a8884e1c94b444f81a151a4c8ba6367c84/TreeCorr-4.2.8-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ef073c68e33b5bd6b1e036902bc6ab9", "sha256": "bf71578d8edc786658aed0a05b5eddab915607e8e5436eeca22d715524724204" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp39-cp39-manylinux2010_i686.whl", "has_sig": false, "md5_digest": "1ef073c68e33b5bd6b1e036902bc6ab9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 7723131, "upload_time": "2022-04-07T23:06:20", "upload_time_iso_8601": "2022-04-07T23:06:20.772066Z", "url": "https://files.pythonhosted.org/packages/2a/32/4adae16777bb6da024508c3f7e94ec64be11263557fbff2a904597678407/TreeCorr-4.2.8-cp39-cp39-manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ca3e968e98bebc018dccf6a54889f6f", "sha256": "8c268fa85031cb36395a5e13367996dd68cadc0dc8db1fc2945f056c3191d09d" }, "downloads": -1, "filename": "TreeCorr-4.2.8-cp39-cp39-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "3ca3e968e98bebc018dccf6a54889f6f", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 8760141, "upload_time": "2022-04-07T23:06:22", "upload_time_iso_8601": "2022-04-07T23:06:22.915371Z", "url": "https://files.pythonhosted.org/packages/11/41/ff7662f4caa094617d7b74efcd5049dbbd132c68d6f1e2266e1e17302ed9/TreeCorr-4.2.8-cp39-cp39-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de5977198eee01e2e230f584df98690c", "sha256": "6e1e5abf6707a31fd5ace753bf2bceb97e2e84b9a01da46f7310954d63a57e03" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp27-pypy_73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "de5977198eee01e2e230f584df98690c", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1110606, "upload_time": "2022-04-07T23:06:25", "upload_time_iso_8601": "2022-04-07T23:06:25.102682Z", "url": "https://files.pythonhosted.org/packages/9f/b2/dd67d43fe96da8fe022726379b16fd27725a0bbbe1946d43edebcb5675fe/TreeCorr-4.2.8-pp27-pypy_73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c66cd273da5f1fec8cfb3dd7f8152bf", "sha256": "75363d7cf71ee545ad17b3ec0e88318b2338ccf8c73ca9fd875c69c7b0b38cbb" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp27-pypy_73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6c66cd273da5f1fec8cfb3dd7f8152bf", "packagetype": "bdist_wheel", "python_version": "pp27", "requires_python": null, "size": 1423477, "upload_time": "2022-04-07T23:06:26", "upload_time_iso_8601": "2022-04-07T23:06:26.372887Z", "url": "https://files.pythonhosted.org/packages/c3/2e/ba2838741fa7465703a79b2366e0187356eddb845b0317ab49ce8ee706d4/TreeCorr-4.2.8-pp27-pypy_73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f0482f3535241b043a3cc3dae42ea92", "sha256": "960f0583232de71b77de9278764d9f0199a9d0ff71f3997f45d30e6593127fa7" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0f0482f3535241b043a3cc3dae42ea92", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1110657, "upload_time": "2022-04-07T23:06:27", "upload_time_iso_8601": "2022-04-07T23:06:27.761270Z", "url": "https://files.pythonhosted.org/packages/96/1e/a3f9f8613aa73df8a2d510e38c746833c80dc545dd0adadc40abb1c18fc3/TreeCorr-4.2.8-pp36-pypy36_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34ea14e279a7bf8023330562e55c5ba2", "sha256": "1c17f7d089b6b713d428f99e0bb0b4c994a77d1d5cb91a273f7838de2550bab5" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "34ea14e279a7bf8023330562e55c5ba2", "packagetype": "bdist_wheel", "python_version": "pp36", "requires_python": null, "size": 1423538, "upload_time": "2022-04-07T23:06:29", "upload_time_iso_8601": "2022-04-07T23:06:29.474800Z", "url": "https://files.pythonhosted.org/packages/8d/a2/5914c8948e2705b7b5c8c48585ba5d67bab664c3edf899df8b703829a8ce/TreeCorr-4.2.8-pp36-pypy36_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "301acaf4ce0fdcd1f755b1f539692d6c", "sha256": "e6d60a81faf44a69a115d39a4d4f4ce88e02fc994c58ba75a322ac5a676751fb" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "301acaf4ce0fdcd1f755b1f539692d6c", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1110655, "upload_time": "2022-04-07T23:06:30", "upload_time_iso_8601": "2022-04-07T23:06:30.853343Z", "url": "https://files.pythonhosted.org/packages/05/8a/e1a5ae2b8a2c583ded72cfd39f54d872981d89cb25f5efb0ad931973c820/TreeCorr-4.2.8-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee507eb1e6c16ca835c3eaed8fd0cd15", "sha256": "ebc20a5c28b8dd1e2da554948817f999524b809847ef9a68ecbf92589f84083f" }, "downloads": -1, "filename": "TreeCorr-4.2.8-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "ee507eb1e6c16ca835c3eaed8fd0cd15", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1423538, "upload_time": "2022-04-07T23:06:32", "upload_time_iso_8601": "2022-04-07T23:06:32.272322Z", "url": "https://files.pythonhosted.org/packages/12/be/4e293b78b590abd03ea5d67a0d34173ee04c77b8a3b758446cfee4589972/TreeCorr-4.2.8-pp37-pypy37_pp73-manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe6af065dc07c1b3dc686223b71884ba", "sha256": "e9e3f2e5dab33b5ccc2732b5ab1f3c2fae7cc90e4358fff21b50a001efaedfe5" }, "downloads": -1, "filename": "TreeCorr-4.2.8.tar.gz", "has_sig": false, "md5_digest": "fe6af065dc07c1b3dc686223b71884ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 794809, "upload_time": "2022-04-07T23:06:33", "upload_time_iso_8601": "2022-04-07T23:06:33.681974Z", "url": "https://files.pythonhosted.org/packages/3d/c5/0ced6d62d7d52f0f6d71331b71f42cdb61459c691fec62b38a69b22b73cc/TreeCorr-4.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }