{ "info": { "author": "Casper van der Wel", "author_email": "caspervdw@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering", "Topic :: Software Development" ], "description": "======\nPyGEOS\n======\n\n.. Documentation at RTD \u2014 https://readthedocs.org\n\n.. image:: https://readthedocs.org/projects/pygeos/badge/?version=latest\n\t:alt: Documentation Status\n\t:target: https://pygeos.readthedocs.io/en/latest/?badge=latest\n\n.. Github Actions status \u2014 https://github.com/pygeos/pygeos/actions\n\n.. image:: https://github.com/pygeos/pygeos/workflows/Test/badge.svg\n\t:alt: Github Actions status\n\t:target: https://github.com/pygeos/pygeos/actions/workflows/test-pip.yml?query=branch%3Amaster\n\n.. Travis CI status -- https://travis-ci.com\n\n.. image:: https://travis-ci.com/pygeos/pygeos.svg?branch=master\n :alt: Travis CI status\n :target: https://travis-ci.com/github/pygeos/pygeos\n\n.. PyPI\n\n.. image:: https://img.shields.io/pypi/v/pygeos.svg\n\t:alt: PyPI\n\t:target: https://pypi.org/project/pygeos/\n\n.. Anaconda\n\n.. image:: https://img.shields.io/conda/vn/conda-forge/pygeos\n :alt: Anaconda\n :target: https://anaconda.org/conda-forge/pygeos\n\n.. Zenodo\n\n.. image:: https://zenodo.org/badge/191151963.svg\n :alt: Zenodo \n :target: https://zenodo.org/badge/latestdoi/191151963\n\n\nPyGEOS is a C/Python library with vectorized geometry functions. The geometry\noperations are done in the open-source geometry library GEOS. PyGEOS wraps\nthese operations in NumPy ufuncs providing a performance improvement when\noperating on arrays of geometries.\n\n**Important note**: PyGEOS was merged with Shapely (https://shapely.readthedocs.io)\nin December 2021 and will be released as part of Shapely 2.0. The development will take place\nat the Shapely repository. Please raise issues or create pull request over there.\nPyGEOS itself will receive updates (by backporting from the Shapely repository) until\nShapely 2.0 is actually released.\n\nWhat is a ufunc?\n----------------\n\nA universal function (or ufunc for short) is a function that operates on\nn-dimensional arrays in an element-by-element fashion, supporting array\nbroadcasting. The for-loops that are involved are fully implemented in C\ndiminishing the overhead of the Python interpreter.\n\nMultithreading\n--------------\n\nPyGEOS functions support multithreading. More specifically, the Global\nInterpreter Lock (GIL) is released during function execution. Normally in Python, the\nGIL prevents multiple threads from computing at the same time. PyGEOS functions\ninternally releases this constraint so that the heavy lifting done by GEOS can be\ndone in parallel, from a single Python process.\n\nExamples\n--------\n\nCompare an grid of points with a polygon:\n\n.. code:: python\n\n >>> geoms = points(*np.indices((4, 4)))\n >>> polygon = box(0, 0, 2, 2)\n\n >>> contains(polygon, geoms)\n\n array([[False, False, False, False],\n [False, True, False, False],\n [False, False, False, False],\n [False, False, False, False]])\n\n\nCompute the area of all possible intersections of two lists of polygons:\n\n.. code:: python\n\n >>> from pygeos import box, area, intersection\n\n >>> polygons_x = box(range(5), 0, range(10, 15), 10)\n >>> polygons_y = box(0, range(5), 10, range(10, 15))\n\n >>> area(intersection(polygons_x[:, np.newaxis], polygons_y[np.newaxis, :]))\n\n array([[100., 90., 80., 70., 60.],\n [ 90., 81., 72., 63., 54.],\n [ 80., 72., 64., 56., 48.],\n [ 70., 63., 56., 49., 42.],\n [ 60., 54., 48., 42., 36.]])\n\nSee the documentation for more: https://pygeos.readthedocs.io\n\n\nReferences\n----------\n\n- GEOS: https://libgeos.org\n- Shapely: https://shapely.readthedocs.io/en/latest/\n- Numpy ufuncs: https://docs.scipy.org/doc/numpy/reference/ufuncs.html\n- Joris van den Bossche's blogpost: https://jorisvandenbossche.github.io/blog/2017/09/19/geopandas-cython/\n- Matthew Rocklin's blogpost: http://matthewrocklin.com/blog/work/2017/09/21/accelerating-geopandas-1\n\n\nCopyright & License\n-------------------\n\nPyGEOS is licensed under BSD 3-Clause license. Copyright (c) 2019, Casper van der Wel.\nGEOS is available under the terms of \u200bGNU Lesser General Public License (LGPL) 2.1 at https://libgeos.org.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pygeos/pygeos", "keywords": "", "license": "BSD 3-Clause", "maintainer": "", "maintainer_email": "", "name": "pygeos", "package_url": "https://pypi.org/project/pygeos/", "platform": "", "project_url": "https://pypi.org/project/pygeos/", "project_urls": { "Homepage": "https://github.com/pygeos/pygeos" }, "release_url": "https://pypi.org/project/pygeos/0.12.0/", "requires_dist": [ "numpy (>=1.13)", "sphinx ; extra == 'docs'", "numpydoc ; extra == 'docs'", "pytest ; extra == 'test'" ], "requires_python": ">=3.6", "summary": "GEOS wrapped in numpy ufuncs", "version": "0.12.0", "yanked": false, "yanked_reason": null }, "last_serial": 12204742, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "ebe64fefd10abf451020aec4b558662b", "sha256": "0edf73a98d6c91fe6486a67c3da88aab3c7964f16e4ace395369bce2c9457e66" }, "downloads": -1, "filename": "pygeos-0.1.tar.gz", "has_sig": false, "md5_digest": "ebe64fefd10abf451020aec4b558662b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 7892, "upload_time": "2019-06-15T14:11:59", "upload_time_iso_8601": "2019-06-15T14:11:59.903582Z", "url": "https://files.pythonhosted.org/packages/03/32/11a2df087b8c19d969483045ba5fb46e1735cf673a705a393a272c3b15f8/pygeos-0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10": [ { "comment_text": "", "digests": { "md5": "0ade8b26a8bf6e6be48613570e2b7c20", "sha256": "b1f253633153efb01ed6f6ca50774dbc88627bb6a4afa207b077c51490d4ea1f" }, "downloads": -1, "filename": "pygeos-0.10-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0ade8b26a8bf6e6be48613570e2b7c20", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1841651, "upload_time": "2021-05-19T07:08:02", "upload_time_iso_8601": "2021-05-19T07:08:02.010383Z", "url": "https://files.pythonhosted.org/packages/b4/6d/ea1dc08366feeaae7014ba658359ec700b3bc02067e7e0d629512a01bd5d/pygeos-0.10-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7af1b4e7b5326c1359010e578e22fdf", "sha256": "587bc281a61261425b01f2488cdccdd7240bf6ec1f892039d5a954b10db4df97" }, "downloads": -1, "filename": "pygeos-0.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a7af1b4e7b5326c1359010e578e22fdf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2019329, "upload_time": "2021-05-19T07:04:33", "upload_time_iso_8601": "2021-05-19T07:04:33.512578Z", "url": "https://files.pythonhosted.org/packages/2a/0e/a230f4ae50cb035448a7bdeaf0fbe9281817f4e60bc06d2d57dae5a1d0d1/pygeos-0.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84f8e535786c8cd30c3ed48352d73ee2", "sha256": "df63bce638fb3a2ffb6f9293a5dc120c3d462dd24e43904aba31e32b7b640309" }, "downloads": -1, "filename": "pygeos-0.10-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "84f8e535786c8cd30c3ed48352d73ee2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 960586, "upload_time": "2021-05-19T06:58:04", "upload_time_iso_8601": "2021-05-19T06:58:04.279245Z", "url": "https://files.pythonhosted.org/packages/de/7c/805540ec1bb84f1789fd6d4a66ea82e436df347af098664bb437a3f07cba/pygeos-0.10-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a2e530a7f1ae1803f6f81825c69a17c", "sha256": "a88a5be37774a297b33fb6d8f34e7d655fc1e538aced922fb7eecfad9d96e1b6" }, "downloads": -1, "filename": "pygeos-0.10-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "9a2e530a7f1ae1803f6f81825c69a17c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1058842, "upload_time": "2021-05-19T06:59:26", "upload_time_iso_8601": "2021-05-19T06:59:26.784249Z", "url": "https://files.pythonhosted.org/packages/1f/8a/ce85696087c538c3f820743f0d3e65ff85f8409828eaa410465e5b0a5d66/pygeos-0.10-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4dd81e8bb9aaf80cda125102cc7bb6d", "sha256": "1733988f64ebe7bb9daaaa96d78f2b5020a617edd14a50068236edf43eac1065" }, "downloads": -1, "filename": "pygeos-0.10-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d4dd81e8bb9aaf80cda125102cc7bb6d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1842118, "upload_time": "2021-05-19T07:16:06", "upload_time_iso_8601": "2021-05-19T07:16:06.583328Z", "url": "https://files.pythonhosted.org/packages/9a/be/bc52d34d9c0021eefd58f8ef17b2df8e91e23a932dfd6abd7211cf38e2a0/pygeos-0.10-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10e7fcce9c02f201a0d8ded1148c618a", "sha256": "370d2376a84db3af957b6ed4442bcc63bc8ec2b76180ab128d4331fe9118aaf0" }, "downloads": -1, "filename": "pygeos-0.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "10e7fcce9c02f201a0d8ded1148c618a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2019508, "upload_time": "2021-05-19T07:04:31", "upload_time_iso_8601": "2021-05-19T07:04:31.726791Z", "url": "https://files.pythonhosted.org/packages/2a/c0/c3c0ebaa718166af6ff03a4e575d4d1ff4ffbd3ccb658be4285fbeaf3c89/pygeos-0.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01ccb0fd70f12c1666ed64e4c67df0d1", "sha256": "951a3331fc7b431b35357437369857485429703858506794be9f806aca03e123" }, "downloads": -1, "filename": "pygeos-0.10-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "01ccb0fd70f12c1666ed64e4c67df0d1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 960444, "upload_time": "2021-05-19T07:00:53", "upload_time_iso_8601": "2021-05-19T07:00:53.815099Z", "url": "https://files.pythonhosted.org/packages/fb/2f/9c2cdabd3410b40b56d2cdfbefb4f0f2a89599dd0fbf3f9a21a72b19a935/pygeos-0.10-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ba441a4b9600ee48e9e83fb4fba248d", "sha256": "e02c9e6d3dbc00439cfb2acc6670bfc00e8802b194a5d22bbc177cb0f351c349" }, "downloads": -1, "filename": "pygeos-0.10-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1ba441a4b9600ee48e9e83fb4fba248d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1058656, "upload_time": "2021-05-19T07:02:23", "upload_time_iso_8601": "2021-05-19T07:02:23.772527Z", "url": "https://files.pythonhosted.org/packages/e5/4f/38cc71dbd71a1abd5584c1454a92d1a1d4cee7044566c45e9353ba833186/pygeos-0.10-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "095e6680fa579a0322b0931bae7eb89b", "sha256": "4ef5374b8e975e1854b644ce574ec6342b151eb8bc6338a3839bd716d6430195" }, "downloads": -1, "filename": "pygeos-0.10-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "095e6680fa579a0322b0931bae7eb89b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1843108, "upload_time": "2021-05-19T07:16:38", "upload_time_iso_8601": "2021-05-19T07:16:38.221797Z", "url": "https://files.pythonhosted.org/packages/63/da/9aa23cf840d3f1e2b89fead10fd79786e6abfa835aa4aee1fea8651359e4/pygeos-0.10-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e42f846d95d41f19887f16925a8b003", "sha256": "e995123ecc6bc1209c9eb55a2ccfc4f13733885efe25f06c3fe3f8fb6cc34c92" }, "downloads": -1, "filename": "pygeos-0.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7e42f846d95d41f19887f16925a8b003", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2015692, "upload_time": "2021-05-19T07:04:43", "upload_time_iso_8601": "2021-05-19T07:04:43.011991Z", "url": "https://files.pythonhosted.org/packages/f2/bf/ae1dd738ef0bfb6b7ba39313f2892ffb9b0d5c9e4005d6694537e484a8c6/pygeos-0.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "063c4516db66bc9d15792175e96001e4", "sha256": "05f63f0cb6eb4065ec130bcd639184f482fcc02d4ec397dcf9542da779022e70" }, "downloads": -1, "filename": "pygeos-0.10-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "063c4516db66bc9d15792175e96001e4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 963054, "upload_time": "2021-05-19T07:03:46", "upload_time_iso_8601": "2021-05-19T07:03:46.024961Z", "url": "https://files.pythonhosted.org/packages/a5/bd/67f0d66c58598e24feab6a1ee926521748004ed3e1247dcdbced73a3ef8a/pygeos-0.10-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18e3290a8452220e12546cefea517037", "sha256": "445e81a140422726e1e246ff3f2f06545aaedd1858c5e16c9f233b0117c1ffec" }, "downloads": -1, "filename": "pygeos-0.10-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "18e3290a8452220e12546cefea517037", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1060678, "upload_time": "2021-05-19T07:05:02", "upload_time_iso_8601": "2021-05-19T07:05:02.497467Z", "url": "https://files.pythonhosted.org/packages/3c/9d/377b6eebb1eca9f177689e14d20d7d3e863965e712b61d635ca51ca934cd/pygeos-0.10-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d293225d0535348a9d5c5815b8a5f911", "sha256": "53c230974fba77470c18de0f3c47baf88f1af44ca834604f5ed75341155fab8e" }, "downloads": -1, "filename": "pygeos-0.10-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d293225d0535348a9d5c5815b8a5f911", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1846328, "upload_time": "2021-05-19T07:17:55", "upload_time_iso_8601": "2021-05-19T07:17:55.667446Z", "url": "https://files.pythonhosted.org/packages/93/ca/7f4179797d0934e79c92181635e28406433d346836f00696518fbb532a27/pygeos-0.10-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "495db18e4cf8f4ea10e08911d1464489", "sha256": "571c5b108c0cb6cb2aa6a0b322939bb93826d5a6c8d7c9b2bba7ff82d7b6f6bf" }, "downloads": -1, "filename": "pygeos-0.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "495db18e4cf8f4ea10e08911d1464489", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2015237, "upload_time": "2021-05-19T07:04:43", "upload_time_iso_8601": "2021-05-19T07:04:43.433930Z", "url": "https://files.pythonhosted.org/packages/d2/ec/484340a756c4ee170c6e323f83ff153f3302f07cae7038fa0d244ac6c969/pygeos-0.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12b0f9ebe1af91969055edfea9d9b6eb", "sha256": "d85c669e447f522df74f27fd5164a66dcddf6b07b78cec5aaa6ff313e3d8bfb1" }, "downloads": -1, "filename": "pygeos-0.10-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "12b0f9ebe1af91969055edfea9d9b6eb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 953759, "upload_time": "2021-05-19T07:06:35", "upload_time_iso_8601": "2021-05-19T07:06:35.597411Z", "url": "https://files.pythonhosted.org/packages/12/7e/7161744a8015fa735e08fc4699eec40da3a51cad4f442420c06e338291d3/pygeos-0.10-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c88607fe5d37d10fae3e3adf2922d954", "sha256": "a9e40b2a7f32cf231ddb8c87fdad775086dfa3db21b92304bef1d96df3cfd1b2" }, "downloads": -1, "filename": "pygeos-0.10-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "c88607fe5d37d10fae3e3adf2922d954", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1051349, "upload_time": "2021-05-19T07:07:57", "upload_time_iso_8601": "2021-05-19T07:07:57.109824Z", "url": "https://files.pythonhosted.org/packages/2d/88/dde6401d681e2971808463df3a4f57bc1cf9af117a8fd2dac2919fd3bdc7/pygeos-0.10-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d570d5008023e10fcbe31eb4b81d923", "sha256": "8ad4703cf8f983a6878a885765be975709a2fe300e54bc6c8623ddbca4903b6c" }, "downloads": -1, "filename": "pygeos-0.10.tar.gz", "has_sig": false, "md5_digest": "9d570d5008023e10fcbe31eb4b81d923", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 106616, "upload_time": "2021-05-18T19:05:06", "upload_time_iso_8601": "2021-05-18T19:05:06.425438Z", "url": "https://files.pythonhosted.org/packages/80/46/a7ef2a41b9cb5aef17c0ef5e2ce937766b45f7c704b9bccd86ea2a23fd63/pygeos-0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "e696e9898702c20a15b44a550d43bde9", "sha256": "273d08d2d9d4118b96bc5422c29eaaca0130d2276a69864ae1e977ce87c44735" }, "downloads": -1, "filename": "pygeos-0.10.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "e696e9898702c20a15b44a550d43bde9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1841914, "upload_time": "2021-07-07T13:53:43", "upload_time_iso_8601": "2021-07-07T13:53:43.491311Z", "url": "https://files.pythonhosted.org/packages/f1/84/2313e5aab968960f01c78be7c73975f8909268de5f62d3850e99cf60440c/pygeos-0.10.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ba43c4f368f3bc098ce0d9bee499ec15", "sha256": "5c4ae0dbbd724d4e26862c324b9056084fa23d66caf1806d87c454f3c8e8ec3c" }, "downloads": -1, "filename": "pygeos-0.10.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ba43c4f368f3bc098ce0d9bee499ec15", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2019518, "upload_time": "2021-07-07T13:49:14", "upload_time_iso_8601": "2021-07-07T13:49:14.547189Z", "url": "https://files.pythonhosted.org/packages/6e/b5/044c249f50f371f067be1a4bd11cdc8372b58f411eba530864f53c2bbc88/pygeos-0.10.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "01c862517d6f38f89c44c8ad8ba928ad", "sha256": "5a485f9080189fd6211f662418540fdd4bfb9fccdd31bac0e45a46b4cf0bf8bd" }, "downloads": -1, "filename": "pygeos-0.10.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "01c862517d6f38f89c44c8ad8ba928ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 960796, "upload_time": "2021-07-07T13:42:20", "upload_time_iso_8601": "2021-07-07T13:42:20.334303Z", "url": "https://files.pythonhosted.org/packages/85/32/f49c64d81689f3ce7f625f21b691a3f1f56624baf692e51860f234c36694/pygeos-0.10.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2419a53371c683b9e893c4ab41a9ebbc", "sha256": "6456c8de69e24395cf27f9107535ff7e33170d92af925097fd9acb23b950418c" }, "downloads": -1, "filename": "pygeos-0.10.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "2419a53371c683b9e893c4ab41a9ebbc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1059498, "upload_time": "2021-07-07T13:43:48", "upload_time_iso_8601": "2021-07-07T13:43:48.738750Z", "url": "https://files.pythonhosted.org/packages/ea/f7/7c17d72bf7ac9ae2bec3c5c1bce9e4b15c46f289fe1002c9f3bc47cd1429/pygeos-0.10.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44c39409f973784e84843196d592886e", "sha256": "e963272f19f1c898743393a9ff943395295af975f326839a50e5e90a9443b9ac" }, "downloads": -1, "filename": "pygeos-0.10.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "44c39409f973784e84843196d592886e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1842373, "upload_time": "2021-07-07T13:53:04", "upload_time_iso_8601": "2021-07-07T13:53:04.612871Z", "url": "https://files.pythonhosted.org/packages/f7/2e/3f4284d1563b7cd2199b85a8b79ed46f16777dde58b7511da2f6ccd31261/pygeos-0.10.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "145df693fa42951955dddebae06d3ff8", "sha256": "c0105bf77fc5cc5fc721541b1ffe67304abc80a17f96b0953a77804ca036324b" }, "downloads": -1, "filename": "pygeos-0.10.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "145df693fa42951955dddebae06d3ff8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2019696, "upload_time": "2021-07-07T13:50:15", "upload_time_iso_8601": "2021-07-07T13:50:15.143578Z", "url": "https://files.pythonhosted.org/packages/8c/1b/8e40e7cf2e854eeb7dfed99071fa62ea26190b891292b5a596be58ef1f04/pygeos-0.10.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ea3256c6bb1ca35db54eb96f86817a5", "sha256": "a23d6f1c4a8ee2185c0da1aef606ecd955dadb7ab1571f62bad6b30cb50965b3" }, "downloads": -1, "filename": "pygeos-0.10.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "2ea3256c6bb1ca35db54eb96f86817a5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 960636, "upload_time": "2021-07-07T13:45:23", "upload_time_iso_8601": "2021-07-07T13:45:23.760077Z", "url": "https://files.pythonhosted.org/packages/8f/47/0d4db090c129845bd3789c8efabef93d9839d240fee0d167f4ea67e7451f/pygeos-0.10.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83b40593257c6aa3330aa24759cbbe43", "sha256": "c71035d423cd73ef0ca794787ca292bae56fc03e4e291e223972383ebc3a778a" }, "downloads": -1, "filename": "pygeos-0.10.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "83b40593257c6aa3330aa24759cbbe43", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1059314, "upload_time": "2021-07-07T13:46:54", "upload_time_iso_8601": "2021-07-07T13:46:54.223695Z", "url": "https://files.pythonhosted.org/packages/29/0e/706b27f9d75d7b8cc8f1bf69c3430616882918d6e21aeb766ec714b935dc/pygeos-0.10.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fb815e5da11bcde4e6d137053f347c9", "sha256": "3dff1c4ace6d20273dae913cd43156242fdee8a6947674ca556d20e8a5fed0a3" }, "downloads": -1, "filename": "pygeos-0.10.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9fb815e5da11bcde4e6d137053f347c9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1843328, "upload_time": "2021-07-07T13:53:08", "upload_time_iso_8601": "2021-07-07T13:53:08.529030Z", "url": "https://files.pythonhosted.org/packages/b2/49/d0e2234efadd1044901a6022642754199ca68d55b6d81231802db05f0106/pygeos-0.10.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4fe7098a9847cde6981c286749ac6de9", "sha256": "1a1fd085f97e7876204af801138459c52630270fed4b679092e619a6f3053e54" }, "downloads": -1, "filename": "pygeos-0.10.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4fe7098a9847cde6981c286749ac6de9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2015909, "upload_time": "2021-07-07T13:50:24", "upload_time_iso_8601": "2021-07-07T13:50:24.237039Z", "url": "https://files.pythonhosted.org/packages/76/b5/efa275ee69680cd79a7cb1fed51fa15a2149b0fa645048412b3833e490e3/pygeos-0.10.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7ab183e05a05c038209fe0504421c58", "sha256": "0fd25072b522e9bc11e4e4446d1ef8da4b3a8039e1ece39944f863833b1ad01c" }, "downloads": -1, "filename": "pygeos-0.10.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "b7ab183e05a05c038209fe0504421c58", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 963265, "upload_time": "2021-07-07T13:48:26", "upload_time_iso_8601": "2021-07-07T13:48:26.862381Z", "url": "https://files.pythonhosted.org/packages/0b/65/36deb4ea90881730fa557d9dcbb3863875642ca5dfc4b899d0eb6347ffc8/pygeos-0.10.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb918c7e360da86e70a186905c93c6ee", "sha256": "af8ab0b75fbf042024f3417189f877ae69e0b467c4c4447c51ca5ceaa2eafb70" }, "downloads": -1, "filename": "pygeos-0.10.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "fb918c7e360da86e70a186905c93c6ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1061348, "upload_time": "2021-07-07T13:49:49", "upload_time_iso_8601": "2021-07-07T13:49:49.921116Z", "url": "https://files.pythonhosted.org/packages/96/45/2afbcf3f623b7b4bb076b516ab2a4d3edb0bf30c005eaea3948356cdd2fa/pygeos-0.10.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb217cd9553025d2ce44b2e279200ab6", "sha256": "6abd3ab3c0eb438e074d851a5f9d6c68aac0ce7dcb9cb8a57a56b057b1a15f60" }, "downloads": -1, "filename": "pygeos-0.10.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cb217cd9553025d2ce44b2e279200ab6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1846558, "upload_time": "2021-07-07T13:53:27", "upload_time_iso_8601": "2021-07-07T13:53:27.830140Z", "url": "https://files.pythonhosted.org/packages/d0/ef/c405e73758ff97923944f9e2180e4a0a673429a5e8a3cb61eef63533d46f/pygeos-0.10.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "afb09c5a4c388c7f397245ff0fbebd1d", "sha256": "97cedc25e2e8dccaab97f096ad7535ebf0c19dd03986cec01ffa227897221366" }, "downloads": -1, "filename": "pygeos-0.10.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "afb09c5a4c388c7f397245ff0fbebd1d", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2015450, "upload_time": "2021-07-07T13:50:01", "upload_time_iso_8601": "2021-07-07T13:50:01.264290Z", "url": "https://files.pythonhosted.org/packages/94/21/abb86050ffbf7c75e20eb6ebeecbae101c3488b405e997caf2249d38787e/pygeos-0.10.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ab0c7ddc05f405ed8579607837929fb", "sha256": "7ed8456278bc139795c0acacc24ae7aceb1ceb5aa6492abded4ac0872e45d0c7" }, "downloads": -1, "filename": "pygeos-0.10.1-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "8ab0c7ddc05f405ed8579607837929fb", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 953885, "upload_time": "2021-07-07T13:51:20", "upload_time_iso_8601": "2021-07-07T13:51:20.219329Z", "url": "https://files.pythonhosted.org/packages/f3/d3/80dab4eaa058d0eb17e8a2e7b1a5124410cd43b8a9a41cf90796bce6304f/pygeos-0.10.1-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23565b19b2313e764cd29481ec1dc3b6", "sha256": "3d19f60852ff0d95e8ccdffdbff446ec108d1e9656328d04e3c6a061daea25d9" }, "downloads": -1, "filename": "pygeos-0.10.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "23565b19b2313e764cd29481ec1dc3b6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1052002, "upload_time": "2021-07-07T13:52:42", "upload_time_iso_8601": "2021-07-07T13:52:42.404137Z", "url": "https://files.pythonhosted.org/packages/2c/a3/277d7781d05f1c657d7250bf2b49a5b1921fad4460e2b3c074b931c7fc4d/pygeos-0.10.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a17530c9049070069ac7a1ebeed40584", "sha256": "c14e6dd03c49a3cd64e4badefcdf229b7b06ff75e15b35ba59974a2c16fa30d9" }, "downloads": -1, "filename": "pygeos-0.10.1.tar.gz", "has_sig": false, "md5_digest": "a17530c9049070069ac7a1ebeed40584", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 106863, "upload_time": "2021-07-07T14:09:18", "upload_time_iso_8601": "2021-07-07T14:09:18.634387Z", "url": "https://files.pythonhosted.org/packages/aa/9b/01799a839e5894afd15490b511efb2c990d3cbcc35eed80fe8e183276ee5/pygeos-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "aebd4be7d5101a26be78299e0fea2af6", "sha256": "4f8d57cd767e4f327d77a87841c5cd49878fb06168c481c15f6586dd753d8ea7" }, "downloads": -1, "filename": "pygeos-0.10.2-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "aebd4be7d5101a26be78299e0fea2af6", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 987225, "upload_time": "2021-08-23T10:22:12", "upload_time_iso_8601": "2021-08-23T10:22:12.966785Z", "url": "https://files.pythonhosted.org/packages/f5/e6/bd39dae49115014245133d42bef5aea78bee1db506c6d504d3c1c26d828b/pygeos-0.10.2-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d8aa01b5fd89c520190ce40b82c7478", "sha256": "49ad3ce912caee8e9d254587ae38d568a2c638926156cbfab6d51f598883493a" }, "downloads": -1, "filename": "pygeos-0.10.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "3d8aa01b5fd89c520190ce40b82c7478", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1836464, "upload_time": "2021-08-23T10:22:15", "upload_time_iso_8601": "2021-08-23T10:22:15.705402Z", "url": "https://files.pythonhosted.org/packages/2e/c7/0bc4d8d07b185c67a7eceae564715d8838dd6b5334c69980cf68680f4eee/pygeos-0.10.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08c5878119d63a3c630c9206c18e5a1e", "sha256": "c5b3b53beb808bd725a8ac221a2d324e5e11286e8f9f55c06a5ccbace47aff37" }, "downloads": -1, "filename": "pygeos-0.10.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "08c5878119d63a3c630c9206c18e5a1e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1803083, "upload_time": "2021-08-23T10:22:17", "upload_time_iso_8601": "2021-08-23T10:22:17.450839Z", "url": "https://files.pythonhosted.org/packages/d6/95/d15f94f793d1b2648c2cd3f423da579ee669875c4a44a055cf98cd2b3b27/pygeos-0.10.2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "96d72727936544d5afcdc2a5473669b9", "sha256": "69172158b545a70160ca75f34cd68ea0512d2f248b0d35596389f31a9ea73dbe" }, "downloads": -1, "filename": "pygeos-0.10.2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "96d72727936544d5afcdc2a5473669b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1149376, "upload_time": "2021-08-23T10:22:19", "upload_time_iso_8601": "2021-08-23T10:22:19.122476Z", "url": "https://files.pythonhosted.org/packages/55/85/c18136020cc98dd8d25659b801adb701700d85fb56db0a08ca023884f283/pygeos-0.10.2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dcabe6cc95798289e690e3fccc00ab7d", "sha256": "9df4054b1cd67d4a8d7930fd5215e4d4225989b6e560404cf6ba34cdb71cc664" }, "downloads": -1, "filename": "pygeos-0.10.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "dcabe6cc95798289e690e3fccc00ab7d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1298253, "upload_time": "2021-08-23T10:22:20", "upload_time_iso_8601": "2021-08-23T10:22:20.603946Z", "url": "https://files.pythonhosted.org/packages/9f/6a/d3768abcd7b8d45dab4d6a8abec8e3dabb96af64c83e6dae2bf53bb4285d/pygeos-0.10.2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43aeda80fa1c5ae014d925600e651ace", "sha256": "4344c7112269c3074a2fbb5883ce59d9ae98c9f181556be556a8c04dfac94eb1" }, "downloads": -1, "filename": "pygeos-0.10.2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "43aeda80fa1c5ae014d925600e651ace", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 987155, "upload_time": "2021-08-23T10:22:22", "upload_time_iso_8601": "2021-08-23T10:22:22.010781Z", "url": "https://files.pythonhosted.org/packages/d2/14/352df5c9737a8b80b282b997d9debcf8f816cbf4f1ce2e918270ceed9e7c/pygeos-0.10.2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "888e16a89f525de6bfb809dcd40e1f2d", "sha256": "e8c8bd72b68d69aaeb8b23afc2d2825391651ccf03176ec0c13639e168209064" }, "downloads": -1, "filename": "pygeos-0.10.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "888e16a89f525de6bfb809dcd40e1f2d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1838722, "upload_time": "2021-08-23T10:22:23", "upload_time_iso_8601": "2021-08-23T10:22:23.606780Z", "url": "https://files.pythonhosted.org/packages/b0/10/3856676f14193a7616744cf681b72431aaea824fc0cfd37404f708b72ba3/pygeos-0.10.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4cbcfdc0b3751c77d9b9286e5442d94", "sha256": "72a8bc6b22f3a2d8cc53e46fd62b9acdf907d084f560a1bbf52a7cb404478d90" }, "downloads": -1, "filename": "pygeos-0.10.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "a4cbcfdc0b3751c77d9b9286e5442d94", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1804283, "upload_time": "2021-08-23T10:22:25", "upload_time_iso_8601": "2021-08-23T10:22:25.290251Z", "url": "https://files.pythonhosted.org/packages/3d/2b/d70e3caf06ea811c62c786e59dd960d36415ce07cb23043d07fc8b8b44b3/pygeos-0.10.2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3f9bba844fb8f0070eba345f03f451d", "sha256": "3b09da4da098c9ec044fa13299da06b4762f80f7f1e750a44d07b846e485a9ed" }, "downloads": -1, "filename": "pygeos-0.10.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "f3f9bba844fb8f0070eba345f03f451d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1149240, "upload_time": "2021-08-23T10:22:27", "upload_time_iso_8601": "2021-08-23T10:22:27.306729Z", "url": "https://files.pythonhosted.org/packages/08/59/84c8c38bd13c688ea67af7b8d145d4fc2270f26d5c318a638e48c4f4f1c9/pygeos-0.10.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a37444e1eff9c515c65a779ecdb1e7d1", "sha256": "34c144d7cdf189117f7efa59466d0b3a1256a5e17a4ec757965ab836e5598f15" }, "downloads": -1, "filename": "pygeos-0.10.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a37444e1eff9c515c65a779ecdb1e7d1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1298064, "upload_time": "2021-08-23T10:22:28", "upload_time_iso_8601": "2021-08-23T10:22:28.590780Z", "url": "https://files.pythonhosted.org/packages/69/ea/19c1a01c6ac0c4e28550e128b99442fa464629eeb5b542ad380ef3d72044/pygeos-0.10.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40f20b01f262bf640d1039c49dd0fcfb", "sha256": "d02f675be992767fd6128297fbbcd72ab0870543e1e28f0e11f3be7e1d45df7c" }, "downloads": -1, "filename": "pygeos-0.10.2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "40f20b01f262bf640d1039c49dd0fcfb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 987542, "upload_time": "2021-08-23T10:22:30", "upload_time_iso_8601": "2021-08-23T10:22:30.437088Z", "url": "https://files.pythonhosted.org/packages/08/f1/e727dec2a0b2807b32283e31897d370d544670670e3f116ae95a6cdb8c80/pygeos-0.10.2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23fff2a1f0aaf563b403e816812142d4", "sha256": "5e5fc24dd2adddfe1284e59704a85655df7c9ed280bc76ee56011b6752143325" }, "downloads": -1, "filename": "pygeos-0.10.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "23fff2a1f0aaf563b403e816812142d4", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1916791, "upload_time": "2021-08-23T10:22:32", "upload_time_iso_8601": "2021-08-23T10:22:32.388505Z", "url": "https://files.pythonhosted.org/packages/bc/b7/7faa13ca2160fc730e3e6378883ae075f216006eb1a305141a5e12b21b4b/pygeos-0.10.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f205369840754fedc60e74d3f57f69f", "sha256": "6eeb450c7947e39ff835311587d5cbae4b11f90b3c697835f25c5aaa7f1d0b8b" }, "downloads": -1, "filename": "pygeos-0.10.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "6f205369840754fedc60e74d3f57f69f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1884022, "upload_time": "2021-08-23T10:22:34", "upload_time_iso_8601": "2021-08-23T10:22:34.250782Z", "url": "https://files.pythonhosted.org/packages/1f/b1/a0fcd020c8904d4b2deb062005b15169d85d1fb15d2bad8f12145ebacba5/pygeos-0.10.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a056228627ad616165a641876e4ebe2e", "sha256": "96006b67ae17d1025f78fadf69b68a51418f3d3f9e17c5c267ea52c10e882b06" }, "downloads": -1, "filename": "pygeos-0.10.2-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "a056228627ad616165a641876e4ebe2e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1151866, "upload_time": "2021-08-23T10:22:36", "upload_time_iso_8601": "2021-08-23T10:22:36.040594Z", "url": "https://files.pythonhosted.org/packages/4a/aa/a9127ac77c4450adbc8128c67bd79ef85559b5f66d759b63fd478eac0023/pygeos-0.10.2-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de45450bf7535d29e4e04acfbecfa329", "sha256": "1b8892a5ada80236d8800d2f31529d8e212f88157e2d4070e8ea8f92e56b08e0" }, "downloads": -1, "filename": "pygeos-0.10.2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "de45450bf7535d29e4e04acfbecfa329", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1279953, "upload_time": "2021-08-23T10:22:37", "upload_time_iso_8601": "2021-08-23T10:22:37.762884Z", "url": "https://files.pythonhosted.org/packages/a6/ea/ebae40faf008a35c04ac676dfcd8e602d3b57d49a0ba9b328a19bc718f17/pygeos-0.10.2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdfe27a8eda625e550fc8e49aceb5374", "sha256": "1a30c576bdcbd296cb879ddbbad623ca4aa4787aa95da5524a20d88bf802d97f" }, "downloads": -1, "filename": "pygeos-0.10.2-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cdfe27a8eda625e550fc8e49aceb5374", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 991307, "upload_time": "2021-08-23T10:22:39", "upload_time_iso_8601": "2021-08-23T10:22:39.503504Z", "url": "https://files.pythonhosted.org/packages/f1/ec/3923d70873c84ae1e840e4a06bfdd1882f1fca8d05b5f2fcd299cc2b3be5/pygeos-0.10.2-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b38fd1eda18d1e36c66081ea715e0727", "sha256": "b89d1430c3e1fa91ca0dea5142435f089ec5337227db8cac12526f1ea420c80e" }, "downloads": -1, "filename": "pygeos-0.10.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b38fd1eda18d1e36c66081ea715e0727", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1882854, "upload_time": "2021-08-23T10:22:41", "upload_time_iso_8601": "2021-08-23T10:22:41.850778Z", "url": "https://files.pythonhosted.org/packages/64/69/f7aa1b29b7d41155e912c348d34ee32360f31891c9e77ad5807db190dfce/pygeos-0.10.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe3b59aa1b026422c559255718041c34", "sha256": "8b14a12ac2bf159a553b0309ba32091e554b9b2cdfaa136373cf18ca3a033135" }, "downloads": -1, "filename": "pygeos-0.10.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "fe3b59aa1b026422c559255718041c34", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1846611, "upload_time": "2021-08-23T10:22:43", "upload_time_iso_8601": "2021-08-23T10:22:43.446782Z", "url": "https://files.pythonhosted.org/packages/ff/fa/621d41a9a7e27e0170e47136648e57b1b47446e0a492ec34804fdf7d5fb0/pygeos-0.10.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e129b93eacb72327f1589308372e32d2", "sha256": "abe15223a0371a3592dad148c2fec0ae45b1bc2bf5f85b10f0d415c1dadf2e02" }, "downloads": -1, "filename": "pygeos-0.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e129b93eacb72327f1589308372e32d2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1841154, "upload_time": "2021-08-23T10:22:45", "upload_time_iso_8601": "2021-08-23T10:22:45.062283Z", "url": "https://files.pythonhosted.org/packages/d1/91/5103b369acf04e44ffde748cbc2245cd1380ff2db01fd4ea5ac4189bb827/pygeos-0.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f98832e61b322f64bdf7688868ac798", "sha256": "bff784949273a7a9e9311f058af4714fbf3c89f5a6a97422eda43ac7fdcc0dc7" }, "downloads": -1, "filename": "pygeos-0.10.2-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "5f98832e61b322f64bdf7688868ac798", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1142240, "upload_time": "2021-08-23T10:22:46", "upload_time_iso_8601": "2021-08-23T10:22:46.486785Z", "url": "https://files.pythonhosted.org/packages/80/c4/2b40a072c4f17e4f239b24e8347a7d526e8137bda715c67d5842a9c9f486/pygeos-0.10.2-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4713169c4f17df915c4fbf06c82ccf79", "sha256": "d8d3fe7785fed4ab0f3ddd5c7e8a259da48988cab600765d59f0a95c60da6ceb" }, "downloads": -1, "filename": "pygeos-0.10.2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "4713169c4f17df915c4fbf06c82ccf79", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1270371, "upload_time": "2021-08-23T10:22:48", "upload_time_iso_8601": "2021-08-23T10:22:48.058783Z", "url": "https://files.pythonhosted.org/packages/f0/30/6b3b8e1406dadfaf55663b9e810423ab08aca70aadfa3c16d07021d30de0/pygeos-0.10.2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d86e2f605fba74d398965a7f34a97cdb", "sha256": "08cd7fe047a7d7f9f94eaa9a65e0b4fd4057ffebc15e6179a0290a9576a0bbbc" }, "downloads": -1, "filename": "pygeos-0.10.2.tar.gz", "has_sig": false, "md5_digest": "d86e2f605fba74d398965a7f34a97cdb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 127320, "upload_time": "2021-08-23T10:22:49", "upload_time_iso_8601": "2021-08-23T10:22:49.410786Z", "url": "https://files.pythonhosted.org/packages/de/b5/c08951779dc0cc0b98af814e5cf0c9ec868d4c7e30d9063a6cf17830dfc5/pygeos-0.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.2a2": [ { "comment_text": "", "digests": { "md5": "d2b9382e9a41fd284a25723109edbd02", "sha256": "fda1702ed8ea06bc93cb84475d64e9421af0c4f6dadf2a5ef9512e13811c08c3" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "d2b9382e9a41fd284a25723109edbd02", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 987029, "upload_time": "2021-08-19T12:55:42", "upload_time_iso_8601": "2021-08-19T12:55:42.896671Z", "url": "https://files.pythonhosted.org/packages/b5/f7/660602c0d17e5a3c7dd3636d86f63604273218db1910cb5d8d0c37f57828/pygeos-0.10.2a2-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91a9f2400c88859ec05a251f3b367360", "sha256": "b9a0d80e5bcb382ede3e84206e36ec4cb858cec85b3dd4d527eb2184692fc52b" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "91a9f2400c88859ec05a251f3b367360", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1836237, "upload_time": "2021-08-19T12:55:44", "upload_time_iso_8601": "2021-08-19T12:55:44.586175Z", "url": "https://files.pythonhosted.org/packages/35/41/761512e16bfec8176519eed7c3a855e15f9bc853816f1a2a39d0d946f242/pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e41d74ddebfcbe20d4b657028cbc7aaa", "sha256": "447bfa417fc71f4d8ea36bb910ab0617664ab1881594b8ebfbf282cc7c4a7192" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "e41d74ddebfcbe20d4b657028cbc7aaa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1802927, "upload_time": "2021-08-19T12:55:46", "upload_time_iso_8601": "2021-08-19T12:55:46.298783Z", "url": "https://files.pythonhosted.org/packages/e5/fc/fbe22e3b79ad3934fb1453e87aaaf85dd24306e1a652595946243e1510d8/pygeos-0.10.2a2-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6576e6ae88b74d37ff0969305963ab75", "sha256": "eaec1ca232c30d9e5adf1af406e43d763ea7a9c2b6a339b75566aed5d9395fd8" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "6576e6ae88b74d37ff0969305963ab75", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1149201, "upload_time": "2021-08-19T12:55:47", "upload_time_iso_8601": "2021-08-19T12:55:47.462783Z", "url": "https://files.pythonhosted.org/packages/8c/62/4739f0abca314005a3545e63c1472b262826c4627f1414638107bf7d480d/pygeos-0.10.2a2-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "19a8fe89e6a4c1c0219de6083bc28bae", "sha256": "1d6c21dcdf58d82c68fbde09ef6b987112ebeed11896ff6ce38f4d50fc94aa48" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "19a8fe89e6a4c1c0219de6083bc28bae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1298074, "upload_time": "2021-08-19T12:55:48", "upload_time_iso_8601": "2021-08-19T12:55:48.979058Z", "url": "https://files.pythonhosted.org/packages/4c/8e/2fbba4304b140ef5be2735a3d7d9a3b6da45225deee0d21747b0325b50fd/pygeos-0.10.2a2-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bd0dede83f5a06f0b26ace6f2dc601f0", "sha256": "9975d6720efe1e3355b7be78caf5e8181befe3c5e49395b2bfdb042e5b60470b" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bd0dede83f5a06f0b26ace6f2dc601f0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 986964, "upload_time": "2021-08-19T12:55:50", "upload_time_iso_8601": "2021-08-19T12:55:50.020024Z", "url": "https://files.pythonhosted.org/packages/73/00/6a530987f4337a9de23699d204c25fcdd48b7b489dcbe21d77871a2342c2/pygeos-0.10.2a2-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46dc8d6e213221955452f0ed3af5072e", "sha256": "5eda120105c3e237229792bbb5cfb581ef9c3090197ac55dabe7e6984b1fc875" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "46dc8d6e213221955452f0ed3af5072e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1838505, "upload_time": "2021-08-19T12:55:50", "upload_time_iso_8601": "2021-08-19T12:55:50.993377Z", "url": "https://files.pythonhosted.org/packages/64/0d/a201df643996f629b221bd2badfd70b938ad90c9e8db8c85b8163e24fee4/pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e864efb0f7ac7dfb97e39bf28905053", "sha256": "c39a3d75039e0315b7f36618433294e7d2869968df5438248d17f7f9c089e67d" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9e864efb0f7ac7dfb97e39bf28905053", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1804094, "upload_time": "2021-08-19T12:55:52", "upload_time_iso_8601": "2021-08-19T12:55:52.624419Z", "url": "https://files.pythonhosted.org/packages/19/86/f11c249960a8b473ced1bc472082135503e36772521854724dd038e466ba/pygeos-0.10.2a2-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c819627d557c537c6a2f67a70dabfca", "sha256": "a23e74303934187348c1742dff4a9b602a4e1b8bdaaafb5f60d531e29fcc3988" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "9c819627d557c537c6a2f67a70dabfca", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1149056, "upload_time": "2021-08-19T12:55:53", "upload_time_iso_8601": "2021-08-19T12:55:53.878784Z", "url": "https://files.pythonhosted.org/packages/f0/87/4655c9c94f6473e4d5618fc661670236f7d050078ec5f23e78c4b46dca53/pygeos-0.10.2a2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec043e470777c110ebc8c44f495248c8", "sha256": "9c7df7390f3e54a460cdb171316ab567383423aed14c2f507a769bf7fc062d14" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ec043e470777c110ebc8c44f495248c8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1297884, "upload_time": "2021-08-19T12:55:55", "upload_time_iso_8601": "2021-08-19T12:55:55.402730Z", "url": "https://files.pythonhosted.org/packages/05/81/f9ddc3ca49792da8256cad544ee43ebe50032cc28eccb44ab7a8aa502cbe/pygeos-0.10.2a2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b706d9bcb779efc95ad2ee51e00e822b", "sha256": "d68af5d297e02ae1be860ba5271a91a0a3795441737448e4cf4a50232a88590f" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "b706d9bcb779efc95ad2ee51e00e822b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 987349, "upload_time": "2021-08-19T12:55:56", "upload_time_iso_8601": "2021-08-19T12:55:56.509529Z", "url": "https://files.pythonhosted.org/packages/e5/17/69cfbcfd0f96ec442579de7b0e19fa5abea94d20151915c6d71063c8ebcd/pygeos-0.10.2a2-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee72dff598ddc596647984beb566e5c3", "sha256": "3067af046ee65672a4f680365b3d7a49a92c154d782d75fb551a576da74a7e78" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "ee72dff598ddc596647984beb566e5c3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1916609, "upload_time": "2021-08-19T12:55:58", "upload_time_iso_8601": "2021-08-19T12:55:58.419218Z", "url": "https://files.pythonhosted.org/packages/f5/0a/b9e8c1f3da7126048e512e2d7c850ccaac1f6330697d1aefe76f43f35ed0/pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4af8d05298b8933c8aba4ba1282df74f", "sha256": "145c3f5a9c98af9b38b60b675ea3012c4a8bef1f8ed0463c533ab4ed8537f439" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "4af8d05298b8933c8aba4ba1282df74f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1883811, "upload_time": "2021-08-19T12:55:59", "upload_time_iso_8601": "2021-08-19T12:55:59.778030Z", "url": "https://files.pythonhosted.org/packages/d4/7d/08412e7b864f8c86b3831ce9bcbeedf07be254a353d5b2c85b9bf598bfe6/pygeos-0.10.2a2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "daf849f2d0ea2857af9e489e0a222ef1", "sha256": "f3bbcd52dc433f7e0c6619a14d8d90ffb8a8e49b3594e0d8ea2237b5107f1263" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "daf849f2d0ea2857af9e489e0a222ef1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1151689, "upload_time": "2021-08-19T12:56:01", "upload_time_iso_8601": "2021-08-19T12:56:01.090194Z", "url": "https://files.pythonhosted.org/packages/fc/50/97756ad3d705630549d89ed083fa8a4f26ea79933aae405192c0650d3833/pygeos-0.10.2a2-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "096037478b526da191248aec1ca8881c", "sha256": "e17da7ecc302e2bdb291d3db1286e569847dfc62044397daaad1d39258f121ee" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "096037478b526da191248aec1ca8881c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1279768, "upload_time": "2021-08-19T12:56:02", "upload_time_iso_8601": "2021-08-19T12:56:02.823927Z", "url": "https://files.pythonhosted.org/packages/21/96/9d04ff24a7844ab6d31e86f4f6d927991353729687977c49519b7415767b/pygeos-0.10.2a2-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3219ebea51b173c85d52ee1bca75e1d9", "sha256": "2ab39d4b9d8d167fe350127d5feedf0120b611652cd43d6576790c30b8da6fd3" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3219ebea51b173c85d52ee1bca75e1d9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 991117, "upload_time": "2021-08-19T12:56:03", "upload_time_iso_8601": "2021-08-19T12:56:03.935170Z", "url": "https://files.pythonhosted.org/packages/48/99/74063d7a1ac515d5aaa86abb6dd14530e5b4ac8c52f24bad0b3b658cf2a2/pygeos-0.10.2a2-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ec4a1a69962370cd769a06403e108adc", "sha256": "6c83d11bf7f97abb2afd20db144c6e3857423b6afea34d10d232c6ee060bbd72" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "ec4a1a69962370cd769a06403e108adc", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1882635, "upload_time": "2021-08-19T12:56:05", "upload_time_iso_8601": "2021-08-19T12:56:05.573595Z", "url": "https://files.pythonhosted.org/packages/a9/07/3724253c002876c49b4f0e4b179326ec3cfb0d6207cc533ed263fe8f7214/pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9025675c3f004ec1bfbcc83320c32093", "sha256": "a181b8505c31ffe15cf3ad092a644adf839bc24a0ea34f989c85d9cae151e5e9" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9025675c3f004ec1bfbcc83320c32093", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1846394, "upload_time": "2021-08-19T12:56:06", "upload_time_iso_8601": "2021-08-19T12:56:06.751277Z", "url": "https://files.pythonhosted.org/packages/12/45/31ca7c334501a82fbc1f6cff7a13077ab18fb20dfd0b1766af0dc7d4bad4/pygeos-0.10.2a2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b6d83c71501a6920b9fd95853a80906", "sha256": "9517e19a92db0a5ba41ac4ad3b3f54c1bc4ad3757080a387ab0f3e118b7a52b8" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "8b6d83c71501a6920b9fd95853a80906", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1840955, "upload_time": "2021-08-19T12:56:08", "upload_time_iso_8601": "2021-08-19T12:56:08.457451Z", "url": "https://files.pythonhosted.org/packages/c2/9c/6254cec40db35c4ed0f356a663672a6e17997bc1b40da182e87bae79d080/pygeos-0.10.2a2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a9e65b660056519fe6963f2380d3a04a", "sha256": "f3fedd15f52274e08ee76cca7437a076825acbb1395af05c6675c0ccc3f94719" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "a9e65b660056519fe6963f2380d3a04a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1142060, "upload_time": "2021-08-19T12:56:10", "upload_time_iso_8601": "2021-08-19T12:56:10.093126Z", "url": "https://files.pythonhosted.org/packages/ef/b7/ded30d2a54745f51b91157093b56be633cc1e6c30706166cac26745983e9/pygeos-0.10.2a2-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9849a3f0abb4f9dfb4382a268e3e0684", "sha256": "26820714069e1897f6dd1ea0b29f90db2af1d2e4dbcb6812d529d1cb0c6d5953" }, "downloads": -1, "filename": "pygeos-0.10.2a2-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "9849a3f0abb4f9dfb4382a268e3e0684", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1270195, "upload_time": "2021-08-19T12:56:11", "upload_time_iso_8601": "2021-08-19T12:56:11.196625Z", "url": "https://files.pythonhosted.org/packages/bc/46/1023889cd27a710843697edb08c684871216f4c2d326de1f0cb70b1862e6/pygeos-0.10.2a2-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94504e2c2117469763bc48dd91a5dcd9", "sha256": "1ac2cbc2668d5e554c8192c48ac8d5a327a63a0ca211a042d076d617d99e5e4a" }, "downloads": -1, "filename": "pygeos-0.10.2a2.tar.gz", "has_sig": false, "md5_digest": "94504e2c2117469763bc48dd91a5dcd9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 127103, "upload_time": "2021-08-19T12:56:12", "upload_time_iso_8601": "2021-08-19T12:56:12.147788Z", "url": "https://files.pythonhosted.org/packages/38/ff/65cdd73a2e71c7e136506a35ae4a59fb192efd6a4c01937612d0056a7460/pygeos-0.10.2a2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "fe3e31e456489d3b221ec0c5802f283a", "sha256": "69557d4003068f1504dbbb5f8ef904ebf7bd5182cb1cb3537e04960d75b753db" }, "downloads": -1, "filename": "pygeos-0.11.1-cp310-cp310-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "fe3e31e456489d3b221ec0c5802f283a", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1231590, "upload_time": "2021-10-30T19:31:09", "upload_time_iso_8601": "2021-10-30T19:31:09.851940Z", "url": "https://files.pythonhosted.org/packages/5b/6f/653e0bd1a8f2285432211d1d28bd7c88f3e4958811cecba9ae6233063d9c/pygeos-0.11.1-cp310-cp310-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3cf1b74d46389d7f1abe3f2b59f20f78", "sha256": "11c849eac8ceaba667209840132162a3a629e979c7da36fb86a8e740228e7608" }, "downloads": -1, "filename": "pygeos-0.11.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "3cf1b74d46389d7f1abe3f2b59f20f78", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2252924, "upload_time": "2021-10-30T19:31:11", "upload_time_iso_8601": "2021-10-30T19:31:11.519386Z", "url": "https://files.pythonhosted.org/packages/e4/ee/2070d90f3c3a9a5d51f2b084cdc718f7fb28fa69b30cf41563925ad61178/pygeos-0.11.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b079b20b91dceb2253cc6da5b624212", "sha256": "b8437c76a03481e218022ac4332a502e253fe90cef75202b0f497ade942a6db1" }, "downloads": -1, "filename": "pygeos-0.11.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "1b079b20b91dceb2253cc6da5b624212", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2116915, "upload_time": "2021-10-30T19:31:12", "upload_time_iso_8601": "2021-10-30T19:31:12.936510Z", "url": "https://files.pythonhosted.org/packages/47/16/786fd1e7a4d2bb3a3291a54bdf7050ec8a52f8b4e0f2d087893bffad2f34/pygeos-0.11.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ddce4f951b72d35c4b92fe59fa635750", "sha256": "e1bab6cf7511a28adf7e7ddd231e5a03bf45b461ecf997ccd08e47e83c4ca86f" }, "downloads": -1, "filename": "pygeos-0.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "ddce4f951b72d35c4b92fe59fa635750", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2081559, "upload_time": "2021-10-30T19:31:14", "upload_time_iso_8601": "2021-10-30T19:31:14.692398Z", "url": "https://files.pythonhosted.org/packages/88/f3/d6e9230c61cd419719b9554548fc87dbdff61efef562656fe08c1dd82a43/pygeos-0.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1298f2d911eb335561bcf2724f74b62b", "sha256": "560fd1d23ee8633ccb1e68853d2a78d9babd70830810f163a16c8e7c89dc5831" }, "downloads": -1, "filename": "pygeos-0.11.1-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "1298f2d911eb335561bcf2724f74b62b", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1290423, "upload_time": "2021-10-30T19:31:16", "upload_time_iso_8601": "2021-10-30T19:31:16.224877Z", "url": "https://files.pythonhosted.org/packages/ef/8c/0d383382b477a19893030222162c0944059d93991e02fd84c0d16702c287/pygeos-0.11.1-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fce831d798bcf48eccd79a2527c6d4c1", "sha256": "3332738da436a6fe6ff72e89f386f208ffea8c8ee169a811bb407e8f4a0ff9ce" }, "downloads": -1, "filename": "pygeos-0.11.1-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "fce831d798bcf48eccd79a2527c6d4c1", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1434777, "upload_time": "2021-10-30T19:31:17", "upload_time_iso_8601": "2021-10-30T19:31:17.324206Z", "url": "https://files.pythonhosted.org/packages/dd/c3/d5ba7972b8450f008f744b8229d254f396d11154ea787afe72410c330a37/pygeos-0.11.1-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f71c6a519aea839e0cb46be8e569d08", "sha256": "ba6325aa5caa78f7789bf1b4d7e866aa9c84a3ada22bad09465f9f5aca5b5576" }, "downloads": -1, "filename": "pygeos-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "3f71c6a519aea839e0cb46be8e569d08", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1226500, "upload_time": "2021-10-30T19:31:18", "upload_time_iso_8601": "2021-10-30T19:31:18.345075Z", "url": "https://files.pythonhosted.org/packages/16/e5/14d369f25bcfed5fa5e165b6c11b66e1696c1e9290b31c9e6de1122acdb3/pygeos-0.11.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b48bb95b81b4af86bf3cea12c00230a3", "sha256": "e97fcda66f110af34156ddec877c792ac4bb5ab84626c02083002f53dde920f6" }, "downloads": -1, "filename": "pygeos-0.11.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "b48bb95b81b4af86bf3cea12c00230a3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2203916, "upload_time": "2021-10-30T19:31:19", "upload_time_iso_8601": "2021-10-30T19:31:19.282447Z", "url": "https://files.pythonhosted.org/packages/84/cd/d3ae94a2240d38f3f19b78a6b90ceb9f569afee7034ad81146a20cfeacdf/pygeos-0.11.1-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9407764cb70517242f7c635ea8a8c457", "sha256": "c5e9380ad467d5dc5019a7f6956d13c7359596da1a933504e01dafc850282e7f" }, "downloads": -1, "filename": "pygeos-0.11.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "9407764cb70517242f7c635ea8a8c457", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2067281, "upload_time": "2021-10-30T19:31:20", "upload_time_iso_8601": "2021-10-30T19:31:20.519235Z", "url": "https://files.pythonhosted.org/packages/92/86/d127dc9657db501f0baa6d3fddde266c3417eac218167af34933368a72f0/pygeos-0.11.1-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aaaefdc910180b2f543047a76c091a4f", "sha256": "e4d4c43432bd30a2f738e77725d6a787e6c46262e19ada0ebc165855f0b3811d" }, "downloads": -1, "filename": "pygeos-0.11.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "aaaefdc910180b2f543047a76c091a4f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2029696, "upload_time": "2021-10-30T19:31:22", "upload_time_iso_8601": "2021-10-30T19:31:22.036864Z", "url": "https://files.pythonhosted.org/packages/a3/71/8d92291c142feb3fb228762a68f95b3909f4d3a76a4d1523205bb8af5d1e/pygeos-0.11.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2bbc1eb0ec37e6a1cfba9f05bd341077", "sha256": "a06b979912c277731a8f779ba56733fa59e1d6bc461f6b5c24e142cd11ad9902" }, "downloads": -1, "filename": "pygeos-0.11.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2bbc1eb0ec37e6a1cfba9f05bd341077", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1295781, "upload_time": "2021-10-30T19:31:22", "upload_time_iso_8601": "2021-10-30T19:31:22.988542Z", "url": "https://files.pythonhosted.org/packages/17/f7/b43f6083de444fdbf21b1c9eafb1a21fff0bc56ade4c84915a37ffa5c4ac/pygeos-0.11.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61b139de87016f7fa67126f08ac22142", "sha256": "5c0b336f60ff1c8fecc07f39f559af00cc2bee2c9b76f03fbfb780c0316aa6f6" }, "downloads": -1, "filename": "pygeos-0.11.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "61b139de87016f7fa67126f08ac22142", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1460611, "upload_time": "2021-10-30T19:31:23", "upload_time_iso_8601": "2021-10-30T19:31:23.985911Z", "url": "https://files.pythonhosted.org/packages/18/9d/54cec081006d450f79862c97a3d52143b5722db20944f2adb568bbd1d678/pygeos-0.11.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23a636727b4fdd215298fa6ed95d7d3b", "sha256": "360d9b1037e8d62c4b6b6f7edf81d531eaf0422ebee2c56f1af0ac978b2824b2" }, "downloads": -1, "filename": "pygeos-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "23a636727b4fdd215298fa6ed95d7d3b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1227406, "upload_time": "2021-10-30T19:31:25", "upload_time_iso_8601": "2021-10-30T19:31:25.049030Z", "url": "https://files.pythonhosted.org/packages/8d/40/51052ff73ca238b5901bf1f2a0e7f0c3ef10207c372d23005d1607bbd2c5/pygeos-0.11.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33baf728e6a17904ba046a41303329ff", "sha256": "e0073b643a08c4741231bedb905f8d152a13121a133be72e7e107437a698f48a" }, "downloads": -1, "filename": "pygeos-0.11.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "33baf728e6a17904ba046a41303329ff", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2205808, "upload_time": "2021-10-30T19:31:25", "upload_time_iso_8601": "2021-10-30T19:31:25.977466Z", "url": "https://files.pythonhosted.org/packages/0b/da/b6e744396e2ada511c58da0cca66b7675a795ebf9ca996ecb8a4c1d9b456/pygeos-0.11.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38381e436461d02cd5e71f922918918a", "sha256": "7253204855edd1fc1efd977a413ac918865de62aa4a8eb86d5f375fce0c57d9e" }, "downloads": -1, "filename": "pygeos-0.11.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "38381e436461d02cd5e71f922918918a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2070180, "upload_time": "2021-10-30T19:31:27", "upload_time_iso_8601": "2021-10-30T19:31:27.265350Z", "url": "https://files.pythonhosted.org/packages/6d/a3/27f21f348321f99aca412297245d124ea6afe346f488dc56f4f78fc77e19/pygeos-0.11.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0320d572b7383dfdadba3074290590c", "sha256": "d768ba4e417443293831cb6609f0f454b6827bd124bdd079cd2197c19faf8eb9" }, "downloads": -1, "filename": "pygeos-0.11.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "e0320d572b7383dfdadba3074290590c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2027437, "upload_time": "2021-10-30T19:31:28", "upload_time_iso_8601": "2021-10-30T19:31:28.274476Z", "url": "https://files.pythonhosted.org/packages/2c/a2/36284599c557a6030e0195d276a29d7bb74f0bc70b201a595b1e63d83438/pygeos-0.11.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bccf48464ca52577fdf0c959b38e7692", "sha256": "24c2ca4bbd39aa69bbc9da18c0c31dc7084cf5590755641af8bb34a48bd65c9f" }, "downloads": -1, "filename": "pygeos-0.11.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "bccf48464ca52577fdf0c959b38e7692", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1295767, "upload_time": "2021-10-30T19:31:29", "upload_time_iso_8601": "2021-10-30T19:31:29.367946Z", "url": "https://files.pythonhosted.org/packages/40/b7/cc86fa1b8d8a212d5e68f898512294b9e737ea1f628194e652a37665a4d9/pygeos-0.11.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73068a1ab39cb28578356c6f693de5e3", "sha256": "caa95c55680837ade5200c21c0e9d020ac574ae793e290da8d3babe1ee723082" }, "downloads": -1, "filename": "pygeos-0.11.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "73068a1ab39cb28578356c6f693de5e3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1460412, "upload_time": "2021-10-30T19:31:30", "upload_time_iso_8601": "2021-10-30T19:31:30.331282Z", "url": "https://files.pythonhosted.org/packages/07/ac/cb6228c44fe4d440c7ff73440ed75ead601c702a127f9d6d161ab666bb7c/pygeos-0.11.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cb37c5475a3779d10aca555e836d4bc", "sha256": "704c228d31f3919be32b6e8b0b48b3cb16efae7de74ad8f241d9e44610761adc" }, "downloads": -1, "filename": "pygeos-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "6cb37c5475a3779d10aca555e836d4bc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1226509, "upload_time": "2021-10-30T19:31:31", "upload_time_iso_8601": "2021-10-30T19:31:31.200694Z", "url": "https://files.pythonhosted.org/packages/c4/e9/33ee3803e4c9f503084b696be3e15230a790f0854447698f0f86bd433f0e/pygeos-0.11.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef3e755f638e9d6c7aab954facfbfada", "sha256": "5be8e979dcc08f9a4c26347cea5354de2e331d1763ad81bf027612f906f67851" }, "downloads": -1, "filename": "pygeos-0.11.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "ef3e755f638e9d6c7aab954facfbfada", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2288652, "upload_time": "2021-10-30T19:31:32", "upload_time_iso_8601": "2021-10-30T19:31:32.616197Z", "url": "https://files.pythonhosted.org/packages/30/72/a452bc6603eb036d25e3f00e28784521c0b52ca7c7178b13447ca93d9266/pygeos-0.11.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2074aca1349ef1bb4d50500de287ef90", "sha256": "4559d0ab17e82f9d82e0bd622a3c2313bd22b5d84b4b3b0332f019914b100243" }, "downloads": -1, "filename": "pygeos-0.11.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "2074aca1349ef1bb4d50500de287ef90", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2151270, "upload_time": "2021-10-30T19:31:33", "upload_time_iso_8601": "2021-10-30T19:31:33.787662Z", "url": "https://files.pythonhosted.org/packages/9f/de/0a5d575664238ee3f1adc885a88967eaf810a5992f863d5a99d3892b1b10/pygeos-0.11.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "111b149e4ed52dc5cfa40d925fe6ac98", "sha256": "3e2b1d64b0ae6ba4049d6011d5a62d9d9d067986794fcef635939128aa18f00e" }, "downloads": -1, "filename": "pygeos-0.11.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "111b149e4ed52dc5cfa40d925fe6ac98", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2083365, "upload_time": "2021-10-30T19:31:34", "upload_time_iso_8601": "2021-10-30T19:31:34.961348Z", "url": "https://files.pythonhosted.org/packages/ac/64/5ad0a8a943e6790423c8a8c6d0e857eb9fcb2e5aca7cd0f99c867df8a94b/pygeos-0.11.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "827bcaaafe179026872f1546a0bc480b", "sha256": "0a58962fdb0d4096344e3224d2d54f7cb5d94abcc45093e9ad095ff2edfd9693" }, "downloads": -1, "filename": "pygeos-0.11.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "827bcaaafe179026872f1546a0bc480b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1298976, "upload_time": "2021-10-30T19:31:35", "upload_time_iso_8601": "2021-10-30T19:31:35.896836Z", "url": "https://files.pythonhosted.org/packages/a7/bc/5e1f146f4cf7e183eebfabb8025c7c9014393af4dc19135809357c87795d/pygeos-0.11.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea3d4cb49cd74a3659f8865914e9d015", "sha256": "31c65420319c6cc46cfb03fbd8ef4ef1d957defd3dd978c6ee4a0c4a3b264976" }, "downloads": -1, "filename": "pygeos-0.11.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ea3d4cb49cd74a3659f8865914e9d015", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1442895, "upload_time": "2021-10-30T19:31:36", "upload_time_iso_8601": "2021-10-30T19:31:36.732844Z", "url": "https://files.pythonhosted.org/packages/f5/c1/22a13c9f054d78b74ed0725564eb1f80d164a4d6d367238544bca118e883/pygeos-0.11.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f25cd46ed48daa0ada070349a868fd7a", "sha256": "b0dad1e31738292ca4d300fd76eaeb45c84107147a2ef64b8e05962218a1b1f2" }, "downloads": -1, "filename": "pygeos-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "f25cd46ed48daa0ada070349a868fd7a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1231116, "upload_time": "2021-10-30T19:31:38", "upload_time_iso_8601": "2021-10-30T19:31:38.144121Z", "url": "https://files.pythonhosted.org/packages/6f/9e/2338e40575496006c1dae6a324515920c7f08623198ed5eb9daadff00bd8/pygeos-0.11.1-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0eddd6a01e9e8c386ef333ea6b55ca3b", "sha256": "74e409fb28ec0c3f381befa125d7730b5e36f3a8727882ea6769617f3e13237c" }, "downloads": -1, "filename": "pygeos-0.11.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", "has_sig": false, "md5_digest": "0eddd6a01e9e8c386ef333ea6b55ca3b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2250322, "upload_time": "2021-10-30T19:31:39", "upload_time_iso_8601": "2021-10-30T19:31:39.141768Z", "url": "https://files.pythonhosted.org/packages/48/19/475790b11d54d8f6f521805dec143979fce971468cecda99eede3d83d7b1/pygeos-0.11.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d15d05686dc4fdd5a8c7f0a81482abe6", "sha256": "4844dbf576f706cba46c71c9b438db781caa53c38cfae34cd52c8fb4cb1f95d3" }, "downloads": -1, "filename": "pygeos-0.11.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "has_sig": false, "md5_digest": "d15d05686dc4fdd5a8c7f0a81482abe6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2110332, "upload_time": "2021-10-30T19:31:40", "upload_time_iso_8601": "2021-10-30T19:31:40.747680Z", "url": "https://files.pythonhosted.org/packages/60/60/5a51a571a7321d96581652996f955a021c33e05e470bc247914ef030dc29/pygeos-0.11.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f0e4aaeaef6a56b168febf15f214228", "sha256": "92072a0712fb33c1fa6c8f0a97eae173afb2b4f10ea9bd961b3a3d38cb124cd1" }, "downloads": -1, "filename": "pygeos-0.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "1f0e4aaeaef6a56b168febf15f214228", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2075168, "upload_time": "2021-10-30T19:31:42", "upload_time_iso_8601": "2021-10-30T19:31:42.065782Z", "url": "https://files.pythonhosted.org/packages/07/6a/a0e819ae3a35ec89962decfd4e2f8dc12b3bbf00327ad98c95b522297bc2/pygeos-0.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c6b81bf7641f0f4edd91c535ce80c1b", "sha256": "0696e4c1dbd1252688f63d5e6adbd5260739212dfe7d2e51da586f894f8188db" }, "downloads": -1, "filename": "pygeos-0.11.1-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "2c6b81bf7641f0f4edd91c535ce80c1b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1289234, "upload_time": "2021-10-30T19:31:43", "upload_time_iso_8601": "2021-10-30T19:31:43.017717Z", "url": "https://files.pythonhosted.org/packages/b4/69/841734ff3f59b399387cd0c52270c6f12c079e6a4747ead7b9c4b9dd05e8/pygeos-0.11.1-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1801fd9398ba07f2c596eb85a9948edf", "sha256": "f0f02d0aa6c5d212fc62abdc92b3c89e516c30f4f389cc8fa2e12c6cf107749c" }, "downloads": -1, "filename": "pygeos-0.11.1-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "1801fd9398ba07f2c596eb85a9948edf", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1433399, "upload_time": "2021-10-30T19:31:43", "upload_time_iso_8601": "2021-10-30T19:31:43.929179Z", "url": "https://files.pythonhosted.org/packages/2b/6a/f1e0cbde818cdc07cfe17b8fd180bb07159497350dcd6bd2a433bb15437c/pygeos-0.11.1-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "533eb68e75cbfdf74887cd6c3c311eca", "sha256": "c9371ce412ab28e2d0e90a9d65e42eb9933d0dc33edf36c575d56187c6183acf" }, "downloads": -1, "filename": "pygeos-0.11.1.tar.gz", "has_sig": false, "md5_digest": "533eb68e75cbfdf74887cd6c3c311eca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 135586, "upload_time": "2021-10-30T19:31:45", "upload_time_iso_8601": "2021-10-30T19:31:45.493914Z", "url": "https://files.pythonhosted.org/packages/3c/7e/41cb357080322ee124a366d3b88b26e2bc075d6cb65b906f239e477417d6/pygeos-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "d0b8a0e242e5f7bc84e0efe1994b970c", "sha256": "e3593360f1a93d2a6fe1ea75fa84882186bd3851d187e4c4bbb586495c748e3d" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "d0b8a0e242e5f7bc84e0efe1994b970c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2229659, "upload_time": "2021-12-03T15:30:33", "upload_time_iso_8601": "2021-12-03T15:30:33.566789Z", "url": "https://files.pythonhosted.org/packages/30/63/e21d07fab2e17c0ace261dacdf86fa9f615a66ce2a40f6ef00f8d3cb6d1e/pygeos-0.12.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22c71dbba35c6fb5129cec837922321d", "sha256": "ec4112b69823866fa966ec4869e1b51b6560d892c65c20b3fb065266519046e2" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "22c71dbba35c6fb5129cec837922321d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1073531, "upload_time": "2021-12-03T15:30:35", "upload_time_iso_8601": "2021-12-03T15:30:35.409238Z", "url": "https://files.pythonhosted.org/packages/32/ac/54042bd3ef1fd9b35c5e24ed05cc700e8d828f274d95dca22902c2d5a6c1/pygeos-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6983056882c57fade7c7d45111cf09ff", "sha256": "75b5b0aefffb6b7747df299414df4f2e160e3a8993d2b6a86b805fb5b0196f13" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "6983056882c57fade7c7d45111cf09ff", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2090463, "upload_time": "2021-12-03T20:23:10", "upload_time_iso_8601": "2021-12-03T20:23:10.113078Z", "url": "https://files.pythonhosted.org/packages/17/90/f29cf92c3211d6fa4831a5a0077aae4671df630a9b621b9c73bac2980b41/pygeos-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42bf84d8c741edbdc26939a20652d543", "sha256": "26fae3eabb83a15348c2c3f78892114aca9bc4efaa342ab2fa3fa39a85e05dc5" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "42bf84d8c741edbdc26939a20652d543", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2173972, "upload_time": "2021-12-03T15:30:36", "upload_time_iso_8601": "2021-12-03T15:30:36.567832Z", "url": "https://files.pythonhosted.org/packages/b4/64/01e6c648e6d0b305e0d1cdbe4fd96bc8d0fbae7cb14a929e5645cbe71524/pygeos-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f1271e1b35bbfb31b541f650f897ad9", "sha256": "b4ec8fe577ca7ba6dd046481cdb736f99961216fcb54c84211287a10d1158459" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "3f1271e1b35bbfb31b541f650f897ad9", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1443182, "upload_time": "2021-12-03T15:30:37", "upload_time_iso_8601": "2021-12-03T15:30:37.790897Z", "url": "https://files.pythonhosted.org/packages/88/94/dad931fc335b3ad426c9ead3e63bf877b19c4e27b8c08a40687d4f2ae1a9/pygeos-0.12.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db2aaba36d385696de14153ec2d7a470", "sha256": "6db68dc4583c88222d32cc624622234a97080b3c4650f0c0e12987664d49f374" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "db2aaba36d385696de14153ec2d7a470", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1236614, "upload_time": "2021-12-03T15:30:38", "upload_time_iso_8601": "2021-12-03T15:30:38.845000Z", "url": "https://files.pythonhosted.org/packages/fd/9c/db7a1181ec0de73adcca0b0ff42d62cd437cc54c69afa6a7d614a3eaebcd/pygeos-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "412baa03db61ceecac8939639b739954", "sha256": "da856315a4047d581300d860dd2aa01438e64121570bed46c81ad0a90f477db0" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "412baa03db61ceecac8939639b739954", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2037300, "upload_time": "2021-12-03T20:23:11", "upload_time_iso_8601": "2021-12-03T20:23:11.409304Z", "url": "https://files.pythonhosted.org/packages/ba/99/32c10d70a10afb9d4200fad120dd6a40799d1e94b35d3d3b1ed94729003b/pygeos-0.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2727686513252bcbc9c92b414b32c26b", "sha256": "3cf6d734aea07f04c7644ae24e303a447e96ea123ea524ab309e492ca683240e" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "2727686513252bcbc9c92b414b32c26b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2271335, "upload_time": "2021-12-03T15:30:39", "upload_time_iso_8601": "2021-12-03T15:30:39.987786Z", "url": "https://files.pythonhosted.org/packages/0c/11/f86d110b90f472503e73c0ee54929ce8a1f941e7d254dd8823819950c86c/pygeos-0.12.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a1c4b0a66c96a19f4d996be7bc266a5", "sha256": "12e06ec4417453f1a95d36b8ba8822569c30f6938dd4a7bac97433cab641b61f" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0a1c4b0a66c96a19f4d996be7bc266a5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2123974, "upload_time": "2021-12-03T15:30:41", "upload_time_iso_8601": "2021-12-03T15:30:41.207953Z", "url": "https://files.pythonhosted.org/packages/53/01/f08b0b383d782058b657a4e9492850c52d70c03580d3cd7cbd074fb61ef6/pygeos-0.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7716dd1cdb00f41d22e70a3de21c50d7", "sha256": "ea7f3ea9c76f8c94ed9b360b4d6249c44d5bc48c8db5cb3a5d4b017e51d1bd8a" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "7716dd1cdb00f41d22e70a3de21c50d7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1304298, "upload_time": "2021-12-03T15:30:42", "upload_time_iso_8601": "2021-12-03T15:30:42.736693Z", "url": "https://files.pythonhosted.org/packages/e8/01/b14ac19cb68808a896f5e058a6e2ecd3eda6041a949f9a1f738b718f197b/pygeos-0.12.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c38276af484ba113aa47962b6a67280d", "sha256": "a6cf496887f25b99427624399bcd07107660e6f9135466c33dc60ad9bd4c9ebe" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c38276af484ba113aa47962b6a67280d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1469312, "upload_time": "2021-12-03T15:30:44", "upload_time_iso_8601": "2021-12-03T15:30:44.355765Z", "url": "https://files.pythonhosted.org/packages/37/be/7e924e63a9fccf8b4034ac4daade97af098fa1cb8d91952089d84f3ab7a1/pygeos-0.12.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbba5587895bc7044f18dfba1a853f49", "sha256": "f155f268676ff7b20a553a542a436be0f8df14233c873facc80214d836d6463b" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bbba5587895bc7044f18dfba1a853f49", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1237184, "upload_time": "2021-12-03T15:30:45", "upload_time_iso_8601": "2021-12-03T15:30:45.487971Z", "url": "https://files.pythonhosted.org/packages/c2/6d/cf22147fe9f970192537b781637b75541b6f56a8fcfb28ba71f1329d8987/pygeos-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebd64ce442ad4ee04b033b1549dea077", "sha256": "f74abd81487839532c7110721f3b1450d0c6bcfb5e18c45d604ddeb75ec99f86" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "ebd64ce442ad4ee04b033b1549dea077", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2034677, "upload_time": "2021-12-03T20:23:12", "upload_time_iso_8601": "2021-12-03T20:23:12.591573Z", "url": "https://files.pythonhosted.org/packages/b8/10/703464e7973240553e0a0ba4289847335fbc8c479cdb426914bb8bf6d0a2/pygeos-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5243de7038368884bdd90425006fa7db", "sha256": "6ac4ddfbe548d8a3e93732577b8a6d4df071f038338f6c400466b3c2bfe3dc78" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "5243de7038368884bdd90425006fa7db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2267730, "upload_time": "2021-12-03T15:30:46", "upload_time_iso_8601": "2021-12-03T15:30:46.687633Z", "url": "https://files.pythonhosted.org/packages/88/72/89feb00ded4da3becb671b9b2f2989cab649ba8b1e5aedefee6b1bd3df4b/pygeos-0.12.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bddaebbb865dfb9e2ab93c8fb96f0ea5", "sha256": "504a03330147d2bb3309f291f4333db892cdba40a66ac4f3db8a2672dff7cf4f" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bddaebbb865dfb9e2ab93c8fb96f0ea5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2123300, "upload_time": "2021-12-03T15:30:47", "upload_time_iso_8601": "2021-12-03T15:30:47.789491Z", "url": "https://files.pythonhosted.org/packages/64/63/2007e48e8365d38d0f9e89a95e7048f366f6098fed8a8eae09f6f34cc516/pygeos-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc137c27ad6fe4140db3aea610343dd6", "sha256": "e3bcfb55e966aea26ff8e9b8fd314cee618c363f639e83b1eaaefb66bc97e7b0" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "fc137c27ad6fe4140db3aea610343dd6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1304207, "upload_time": "2021-12-03T15:30:49", "upload_time_iso_8601": "2021-12-03T15:30:49.152302Z", "url": "https://files.pythonhosted.org/packages/7d/bd/cced74c8d62623524a17343accdcc82b58093e06bfb3f97d69aa63955534/pygeos-0.12.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a715cff42774cb53cecd2383fd463175", "sha256": "835b7b1b2ef44453ff9d759dd67ee17fb89a52d8cdbd4d1655bf0be6ccfd90c3" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a715cff42774cb53cecd2383fd463175", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1469141, "upload_time": "2021-12-03T15:30:50", "upload_time_iso_8601": "2021-12-03T15:30:50.364597Z", "url": "https://files.pythonhosted.org/packages/b8/c9/451fb18e909d935a09a0c7faf222ff3246cb97ed4564193a016f7308cd75/pygeos-0.12.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e9f56b58b452b79fb0d3deaa8086874", "sha256": "60d103b4c099940ad73f0b193f65dfc77f957646451b8a399e4f1f5835c57ab6" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "7e9f56b58b452b79fb0d3deaa8086874", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2220291, "upload_time": "2021-12-03T15:30:51", "upload_time_iso_8601": "2021-12-03T15:30:51.556940Z", "url": "https://files.pythonhosted.org/packages/e2/16/ae7aa3ec7c251abb42413c90e42bbcc238dc0cb02527eb554816aec031ae/pygeos-0.12.0-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b33ba8064b2cc176e75fd27b5a8ab8b", "sha256": "5bc1b9a548848f9c69c913eca8ab0bb9164b35a28da51f86fcc0887c553bd863" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5b33ba8064b2cc176e75fd27b5a8ab8b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1236649, "upload_time": "2021-12-03T15:30:52", "upload_time_iso_8601": "2021-12-03T15:30:52.744915Z", "url": "https://files.pythonhosted.org/packages/25/0d/1bc78c6ac4ce3a2ce4f298051c84fae5756be517410a9324c2652dce952e/pygeos-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f8892a69b2f6044123d8a530d27d5f3", "sha256": "11cb186f6cb9a2453a990a3e9894f861d308c574170d1c6f55a598cb11b87579" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "3f8892a69b2f6044123d8a530d27d5f3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1069369, "upload_time": "2021-12-03T15:30:53", "upload_time_iso_8601": "2021-12-03T15:30:53.680385Z", "url": "https://files.pythonhosted.org/packages/10/11/446d5e3f106b63379163860dd3d70c1eaabff5c5b2df8ce26dce6917e413/pygeos-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52bfc972e58711b447f3e2a8893b254f", "sha256": "b8fcb175645f57d7a6fa153a1582f9dbf625bb69c55267207b1bc8d2b983013b" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "52bfc972e58711b447f3e2a8893b254f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2089876, "upload_time": "2021-12-03T20:23:14", "upload_time_iso_8601": "2021-12-03T20:23:14.302216Z", "url": "https://files.pythonhosted.org/packages/a5/4d/5ce8ba2b73dc5adbe1e9a67691767d68c3f5e93177ad7747d5480dd000d6/pygeos-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c81d2b938dbe40dd41031c4c9f2ffe7", "sha256": "2453c07c9b8a24054f897ed56e8046c7dd743939f7f5d6637fdeafdccc411f29" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "0c81d2b938dbe40dd41031c4c9f2ffe7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2321187, "upload_time": "2021-12-03T15:30:54", "upload_time_iso_8601": "2021-12-03T15:30:54.751867Z", "url": "https://files.pythonhosted.org/packages/ce/8f/aeeaebad60192a2c5964a7ef01ecc6255f4b786b38611a8ee0fbbffd7d42/pygeos-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "688f5034a54da7ef9e4c008b1b44f70a", "sha256": "962df97f937d6656ce9293e7072318e99860b0d41f61df9017551855a8bc188e" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "688f5034a54da7ef9e4c008b1b44f70a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2176503, "upload_time": "2021-12-03T15:30:55", "upload_time_iso_8601": "2021-12-03T15:30:55.915806Z", "url": "https://files.pythonhosted.org/packages/90/0b/6f149c71dc7e035bb872c7f819127749d0a3c4388473f28be59ddb0b61fc/pygeos-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "218f1dff756989439b1d72748bea8a30", "sha256": "d72e3691e47f44b49d3a23f05bb55eca34ed28b0e7b1b4aeb50207a95ae83f8f" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "218f1dff756989439b1d72748bea8a30", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1307438, "upload_time": "2021-12-03T15:30:57", "upload_time_iso_8601": "2021-12-03T15:30:57.132883Z", "url": "https://files.pythonhosted.org/packages/ee/37/14ee35c0887b6a224d8426a560675c0bcd719dc291d619b2d64fc2797840/pygeos-0.12.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a859d91529b514f2e7996eda3583f48d", "sha256": "41119e394ea90bf8f697613f530cf92c77ab98346c19cb19beba33a82fd5b91d" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "a859d91529b514f2e7996eda3583f48d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1451475, "upload_time": "2021-12-03T15:30:58", "upload_time_iso_8601": "2021-12-03T15:30:58.153866Z", "url": "https://files.pythonhosted.org/packages/bf/7b/d82c13ab2e25cda8df5acdcc815013ec3e1bce9a97d573d46c94dab7a10d/pygeos-0.12.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7908c0209c781a45892b83b682321753", "sha256": "dfad4c0a4b60861f8e571ca409ce128859d26e1ac26a15ee071cf1f222431fdd" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "7908c0209c781a45892b83b682321753", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2228991, "upload_time": "2021-12-03T15:30:59", "upload_time_iso_8601": "2021-12-03T15:30:59.312438Z", "url": "https://files.pythonhosted.org/packages/93/9d/6d5009bcdc921c6f1b873230666d02de3330eb442284c22b70ab51d7a9fa/pygeos-0.12.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23cb779f4bf6a0307f06f27ea0cd118a", "sha256": "aeaf1f9ae45cf35a25ccdeb2b083e057b31d98cf9351bfc42a59352130ff5c31" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "23cb779f4bf6a0307f06f27ea0cd118a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1241152, "upload_time": "2021-12-03T15:31:00", "upload_time_iso_8601": "2021-12-03T15:31:00.623368Z", "url": "https://files.pythonhosted.org/packages/2c/0d/2fcab0046b141c038cae47fe16d2eb0aaed3000b9312b682498f421a8acc/pygeos-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5a3176fb6353191536f66dd06130333", "sha256": "59971b44e3b8f61e96b159acdc5f9347b94766a4efb94af7b926b1c4958b60d4" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "e5a3176fb6353191536f66dd06130333", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1073300, "upload_time": "2021-12-03T15:31:01", "upload_time_iso_8601": "2021-12-03T15:31:01.612800Z", "url": "https://files.pythonhosted.org/packages/d3/cf/a6b19e5b1cda2d782482d6a6a55b5b7a22b4194b2de189cbc4cc64f1e140/pygeos-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dab40d84dcc2e56a49379a025ef77dd2", "sha256": "efcbd52e5602d758b1ff42e67b91b33b1599667b478d0be9c13e17b286cbfcf0" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "dab40d84dcc2e56a49379a025ef77dd2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2085453, "upload_time": "2021-12-03T20:23:15", "upload_time_iso_8601": "2021-12-03T20:23:15.453364Z", "url": "https://files.pythonhosted.org/packages/5e/55/3800f7770d65fe015be0f5ad8d059ba6971c737c8cb637831000975cc89e/pygeos-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7dffc68347a7b6d7e15ef68438d027a2", "sha256": "47e7b2614d8982f841e33cc1f18d39b7a654d4d7958d456e4765ff4a9c76589b" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "7dffc68347a7b6d7e15ef68438d027a2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2319603, "upload_time": "2021-12-03T15:31:02", "upload_time_iso_8601": "2021-12-03T15:31:02.622887Z", "url": "https://files.pythonhosted.org/packages/6a/3e/9090fd382c1434be89d1d91dfcb73672ec799d10dc523e0de0bca79f6a4c/pygeos-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f688d1c6f0c853283c6d6f45a9a64201", "sha256": "1f045632a940905c2f380544450bbcd48556b529bdfb9320aac777d90990fc25" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f688d1c6f0c853283c6d6f45a9a64201", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2168826, "upload_time": "2021-12-03T15:31:03", "upload_time_iso_8601": "2021-12-03T15:31:03.823874Z", "url": "https://files.pythonhosted.org/packages/59/2c/9ba395b95763f4e5337c9275bb06774f75fcf7fb12e2a75ffe002ae2918d/pygeos-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4238271bf223b88a76531d043c2f072c", "sha256": "d2fefb3a9cf96d1ee4841772464e82b2ae3a8ddf3caf14ecb04c5fcdae6a7248" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "4238271bf223b88a76531d043c2f072c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1297558, "upload_time": "2021-12-03T15:31:05", "upload_time_iso_8601": "2021-12-03T15:31:05.084365Z", "url": "https://files.pythonhosted.org/packages/94/d6/c2234e86cbe93b234db7af50cce31be19d3cfdce585dc193a7422fb103e3/pygeos-0.12.0-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68785403fb7b798ace242c19a62da337", "sha256": "25b94e8bc755a8d3e50661995556b2c27d253bfdd55aa719ea3c202de44a9569" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "68785403fb7b798ace242c19a62da337", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1441760, "upload_time": "2021-12-03T15:31:06", "upload_time_iso_8601": "2021-12-03T15:31:06.349949Z", "url": "https://files.pythonhosted.org/packages/6f/4c/1cdac6e8036f68d0a546118c78b35855b6e7ed8a7010d23ac48f1984051d/pygeos-0.12.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eda4493db1aeb0503c83db5dfe84ee1a", "sha256": "3c41542ef67c66015f443ae3e6e683503a8a221f9c24fb2380f6ae42aed1600a" }, "downloads": -1, "filename": "pygeos-0.12.0.tar.gz", "has_sig": false, "md5_digest": "eda4493db1aeb0503c83db5dfe84ee1a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 141393, "upload_time": "2021-12-03T15:31:07", "upload_time_iso_8601": "2021-12-03T15:31:07.314581Z", "url": "https://files.pythonhosted.org/packages/78/6b/8cfe885a22aedb27cdbf5534dbaa49d1ee8037bd590b1dcebc84350e5281/pygeos-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2": [ { "comment_text": "", "digests": { "md5": "ab8555ae75e7c870ad331da813d14a31", "sha256": "cfecdc449027dff9371e753232d1d29070e209fb18d97df1ad1057658ad2e480" }, "downloads": -1, "filename": "pygeos-0.2.tar.gz", "has_sig": false, "md5_digest": "ab8555ae75e7c870ad331da813d14a31", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 14584, "upload_time": "2019-07-01T18:05:04", "upload_time_iso_8601": "2019-07-01T18:05:04.603082Z", "url": "https://files.pythonhosted.org/packages/1a/7f/b6788a51230356ddf663fe743d6aa92dda012de72dd5b60066ff076d859c/pygeos-0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3": [ { "comment_text": "", "digests": { "md5": "e565a4076f7493e62f31ecf7ce6fe8e3", "sha256": "9a9209bee4c902f0beb4f1c8364243d2b5a4529c97f90181ffddaf26554653ff" }, "downloads": -1, "filename": "pygeos-0.3.tar.gz", "has_sig": false, "md5_digest": "e565a4076f7493e62f31ecf7ce6fe8e3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 17624, "upload_time": "2019-07-08T15:44:10", "upload_time_iso_8601": "2019-07-08T15:44:10.068971Z", "url": "https://files.pythonhosted.org/packages/27/c1/37ce532bde1abfdd04d6f65bac9d61a5a2b34717e029d788e883482c3e6d/pygeos-0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4": [ { "comment_text": "", "digests": { "md5": "4d7b2c4a6a7cdec6c2375ae76067e9c4", "sha256": "4b7f4a6600d47db8d48aa251c365c260c3ad163f4ae4a382ce32c67ad34ffee1" }, "downloads": -1, "filename": "pygeos-0.4.tar.gz", "has_sig": false, "md5_digest": "4d7b2c4a6a7cdec6c2375ae76067e9c4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 42930, "upload_time": "2019-09-16T12:12:05", "upload_time_iso_8601": "2019-09-16T12:12:05.548923Z", "url": "https://files.pythonhosted.org/packages/fb/42/134d5f1be2edb701a033b7bc1e1f1e2ecb36731de84077bd3b47a8132723/pygeos-0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5": [ { "comment_text": "", "digests": { "md5": "f08653606a94b0dea17b7b253bc2f454", "sha256": "a10d819bf99bc83258c21342323a047b9808186e656c7e10c8f4d2dde6379a7f" }, "downloads": -1, "filename": "pygeos-0.5.tar.gz", "has_sig": false, "md5_digest": "f08653606a94b0dea17b7b253bc2f454", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 49682, "upload_time": "2019-10-25T07:57:34", "upload_time_iso_8601": "2019-10-25T07:57:34.512300Z", "url": "https://files.pythonhosted.org/packages/ef/8a/b08d2a755c07ffea4899a090a4ca1206cc325a4b42d7101507ca0165b310/pygeos-0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6": [ { "comment_text": "", "digests": { "md5": "f34aa6c629c87a6131ffca0996435fb8", "sha256": "dedafa04ebc17d838aa2e2ddb6813c913d4a1ed60ce2aea2def6188cbbd80082" }, "downloads": -1, "filename": "pygeos-0.6.tar.gz", "has_sig": false, "md5_digest": "f34aa6c629c87a6131ffca0996435fb8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 56360, "upload_time": "2020-01-31T09:01:29", "upload_time_iso_8601": "2020-01-31T09:01:29.205148Z", "url": "https://files.pythonhosted.org/packages/ed/ab/4a9a53987498900f5d7c447d40c7c2d595383f5f7889e13a08d08a69bcac/pygeos-0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7": [ { "comment_text": "", "digests": { "md5": "eb7c1236afc6da113e7dd2219611a506", "sha256": "82440b5b5b6cfc0507d3981a070e34ef5eeea4fa56d8f9cccfba22b13af978d5" }, "downloads": -1, "filename": "pygeos-0.7.tar.gz", "has_sig": false, "md5_digest": "eb7c1236afc6da113e7dd2219611a506", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 59432, "upload_time": "2020-03-19T08:00:23", "upload_time_iso_8601": "2020-03-19T08:00:23.362648Z", "url": "https://files.pythonhosted.org/packages/87/7d/681d80121a7d0566d1bfaee4647052413589d4ad603ea57df7920326ba6c/pygeos-0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "2ba42bd11bb36e42e47bb2c509c1081d", "sha256": "5513839e85662f2dca01e58dae2e6f0635d7ce5d6818284504b3414d053c2783" }, "downloads": -1, "filename": "pygeos-0.7.1-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2ba42bd11bb36e42e47bb2c509c1081d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3", "size": 1565265, "upload_time": "2020-03-23T18:32:50", "upload_time_iso_8601": "2020-03-23T18:32:50.411903Z", "url": "https://files.pythonhosted.org/packages/6f/94/f5c226a19f7d757734ae2f7a76a78424f090b7c468f02a8e509c4ed74610/pygeos-0.7.1-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4568d7bb5d2dcc3ed8e241bdb0452f3a", "sha256": "7d0c6c336f835aafc822861c23c59c6b50a53505d0fd6ac5f37cfb7bac0c63c1" }, "downloads": -1, "filename": "pygeos-0.7.1-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "4568d7bb5d2dcc3ed8e241bdb0452f3a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3", "size": 555899, "upload_time": "2020-03-23T18:30:38", "upload_time_iso_8601": "2020-03-23T18:30:38.083931Z", "url": "https://files.pythonhosted.org/packages/6b/59/f0ad38cef7437ecfc8adcb0726ef77424e5d4477a88ecf56c9213fc1e745/pygeos-0.7.1-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b3966a4d5911cbd8f932cc0645357b4", "sha256": "75bbb025e798146e21d676bbaacc98f6206715d64140bd0d48b383c51d741803" }, "downloads": -1, "filename": "pygeos-0.7.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5b3966a4d5911cbd8f932cc0645357b4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3", "size": 655992, "upload_time": "2020-03-23T18:32:13", "upload_time_iso_8601": "2020-03-23T18:32:13.039367Z", "url": "https://files.pythonhosted.org/packages/10/b6/79beec6c2d7b7627c5122feac409344718c6990cca93c5ee9dfd58d1a5c4/pygeos-0.7.1-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18a9de7bf5ca4cb2feea68040002a075", "sha256": "2761fcbaaa22bb71787bf5c87fd4172c519a8b785859c83e50e52a0558f8e396" }, "downloads": -1, "filename": "pygeos-0.7.1-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "18a9de7bf5ca4cb2feea68040002a075", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 1395896, "upload_time": "2020-03-23T18:56:05", "upload_time_iso_8601": "2020-03-23T18:56:05.459805Z", "url": "https://files.pythonhosted.org/packages/dd/5f/c37eda57b00875f5cb74eaaff05ac3f9b86bcd7e52d0d3a46167107cc42e/pygeos-0.7.1-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "109828bdd6e57261bf6049e6c3e6e328", "sha256": "3bd0e326ab9081038719deaa44f117c8d396f560df371fac160403ebbafa7648" }, "downloads": -1, "filename": "pygeos-0.7.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "109828bdd6e57261bf6049e6c3e6e328", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 1565267, "upload_time": "2020-03-23T18:32:53", "upload_time_iso_8601": "2020-03-23T18:32:53.166599Z", "url": "https://files.pythonhosted.org/packages/47/23/cff657c05f862bbea208a992dcd34c9a03d8c277ac32a8ef1fb8be56363b/pygeos-0.7.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46ff6cb5b54989ec020e5d5d772d0ce1", "sha256": "9170f0b2c2ca5e4f9f73060ec9e390d7494d41513acdbe42a5becf3ba4034104" }, "downloads": -1, "filename": "pygeos-0.7.1-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "46ff6cb5b54989ec020e5d5d772d0ce1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 556535, "upload_time": "2020-03-23T18:33:37", "upload_time_iso_8601": "2020-03-23T18:33:37.136057Z", "url": "https://files.pythonhosted.org/packages/d5/21/1ff38dfe4ba37ff38c5bb45a041555bd4d230afcb2eeaaffcefa116eb1a6/pygeos-0.7.1-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "502f783249552e63b92b2944174dd34a", "sha256": "440c61514dba22a0775c76ffb8b10cca6ce1cf659f8ff917fa2d434d65770068" }, "downloads": -1, "filename": "pygeos-0.7.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "502f783249552e63b92b2944174dd34a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 656631, "upload_time": "2020-03-23T18:34:50", "upload_time_iso_8601": "2020-03-23T18:34:50.572932Z", "url": "https://files.pythonhosted.org/packages/02/86/8e36858c41af210f7a2437337756a225a788ed2c580f3cdb1d49e5c135d5/pygeos-0.7.1-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "acccd5fd161c4c34fecfb1d24e3830b9", "sha256": "ffacef4bb16873dd00fa243b68b8f04817814a247dfc2e04bd75572b3d8b609e" }, "downloads": -1, "filename": "pygeos-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "acccd5fd161c4c34fecfb1d24e3830b9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 1395880, "upload_time": "2020-03-23T18:58:09", "upload_time_iso_8601": "2020-03-23T18:58:09.399884Z", "url": "https://files.pythonhosted.org/packages/ef/b3/4094fa34902b2dec621a8d2b5e7cfaf2dc2f1d4b39a4f744cc6b03134448/pygeos-0.7.1-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3bbe1d7079d2fee3f1937b83b7b2479", "sha256": "79bf18d5e9b3f7b58f7b10d2e6277a5c5002855f42b549d796dca495698e19ed" }, "downloads": -1, "filename": "pygeos-0.7.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f3bbe1d7079d2fee3f1937b83b7b2479", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 1565266, "upload_time": "2020-03-23T18:32:56", "upload_time_iso_8601": "2020-03-23T18:32:56.058897Z", "url": "https://files.pythonhosted.org/packages/14/44/b8558bb6f1066eb26240aaead299c3fcab28397f1a8629bf29a59893d299/pygeos-0.7.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "623cc03b78c3b404cb81917a4e15ca69", "sha256": "bc0e707750f813b7460a61e6ce33361e00845fe9ee0ceacbeaa2e892ace68330" }, "downloads": -1, "filename": "pygeos-0.7.1-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "623cc03b78c3b404cb81917a4e15ca69", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 556533, "upload_time": "2020-03-23T18:36:21", "upload_time_iso_8601": "2020-03-23T18:36:21.732274Z", "url": "https://files.pythonhosted.org/packages/f2/f2/d4eecc8c19683a05a2a6c78035aab7bbb9675e8b3c9e908b44fde7bd11a1/pygeos-0.7.1-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05eea0d80dbd166184a029486cdf7289", "sha256": "7a7bb256071e78eb7c293ed2455f29f1ca88939a2262b48361617c5945e9d6fb" }, "downloads": -1, "filename": "pygeos-0.7.1-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "05eea0d80dbd166184a029486cdf7289", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 656629, "upload_time": "2020-03-23T18:37:38", "upload_time_iso_8601": "2020-03-23T18:37:38.184094Z", "url": "https://files.pythonhosted.org/packages/35/f0/a7761e3d2bd1eaa2dffa673b675ab9d262a2ee453e8f8898298856c2fe9b/pygeos-0.7.1-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd9aa3f1c3e1c25e84564ea78ce78d51", "sha256": "0dbb816ebede8bb87f4e4c87c2303b9ed9e4281f8c4cac2263e7e2ac2271a8dc" }, "downloads": -1, "filename": "pygeos-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cd9aa3f1c3e1c25e84564ea78ce78d51", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 1387342, "upload_time": "2020-03-23T18:58:24", "upload_time_iso_8601": "2020-03-23T18:58:24.004028Z", "url": "https://files.pythonhosted.org/packages/16/d3/2287973841d601cc48ff18cd831acef3a642a91d98bb88cf21ff9de1e385/pygeos-0.7.1-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09d11d13f73cfe4081933ec4c9dc229c", "sha256": "a7124af0af8b53c751204daef7dc22720ca3e1f1465556766598f1d6028e06d5" }, "downloads": -1, "filename": "pygeos-0.7.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "09d11d13f73cfe4081933ec4c9dc229c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 1565146, "upload_time": "2020-03-23T18:32:52", "upload_time_iso_8601": "2020-03-23T18:32:52.377336Z", "url": "https://files.pythonhosted.org/packages/ed/5e/fdc614959c40ee37e61bd4cf3966de8a8255dd03c66e23b26462a23b9c3c/pygeos-0.7.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "89ae91169c95fc30c9e7e8493e0af3c8", "sha256": "b5d1e7ed1905c2c6a1e54d216b1f9f37cd8c8ed00eeb53cdd9d878375d74009b" }, "downloads": -1, "filename": "pygeos-0.7.1-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "89ae91169c95fc30c9e7e8493e0af3c8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 556723, "upload_time": "2020-03-23T18:39:17", "upload_time_iso_8601": "2020-03-23T18:39:17.380778Z", "url": "https://files.pythonhosted.org/packages/26/6a/51c171ba851fc98da4859872d3f9a9130f912db0f25aa90f8035d917ad3b/pygeos-0.7.1-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c69ef74ce356b88f22c21927a65d789", "sha256": "dd39660031fd6b489fde5d46481d927da0228f80a75438a0b27f4049d0fd9ae6" }, "downloads": -1, "filename": "pygeos-0.7.1-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "9c69ef74ce356b88f22c21927a65d789", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 656752, "upload_time": "2020-03-23T18:40:43", "upload_time_iso_8601": "2020-03-23T18:40:43.476350Z", "url": "https://files.pythonhosted.org/packages/9e/41/7a837977a22f81ce146f4d9ae09b31b32cae560c782d1adbf7052a620784/pygeos-0.7.1-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6cefb92fa3856b656defcdffab18319e", "sha256": "d2d549f2ffba5ed29cdf499f7e6b390603f964021892c94e567810c5ee3296a1" }, "downloads": -1, "filename": "pygeos-0.7.1.tar.gz", "has_sig": false, "md5_digest": "6cefb92fa3856b656defcdffab18319e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 68409, "upload_time": "2020-03-22T15:23:37", "upload_time_iso_8601": "2020-03-22T15:23:37.898930Z", "url": "https://files.pythonhosted.org/packages/37/93/4d31d614dc599ce15b8a50dc669af70440034dfe3d45a918e1be4aa927fa/pygeos-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8": [ { "comment_text": "", "digests": { "md5": "a5715ee1385db435a537b9c72130ff6e", "sha256": "e1ecb3d9edf56eb55208f8d9ff0d314926af3b0527e024172f2fe142b046f4ea" }, "downloads": -1, "filename": "pygeos-0.8-cp35-cp35m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a5715ee1385db435a537b9c72130ff6e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3", "size": 1578453, "upload_time": "2020-09-06T12:52:44", "upload_time_iso_8601": "2020-09-06T12:52:44.781580Z", "url": "https://files.pythonhosted.org/packages/6a/50/63447b4c559915801f5f2d62516fb2790209e60041e8816222c816bf893e/pygeos-0.8-cp35-cp35m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5d9034ac87c7c2917abf68e5b8509868", "sha256": "efb21aa3b01957c21237aaffbecfabc76f6411a9b7c75d359f1b9eb2d7239181" }, "downloads": -1, "filename": "pygeos-0.8-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "5d9034ac87c7c2917abf68e5b8509868", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3", "size": 569185, "upload_time": "2020-09-06T12:53:15", "upload_time_iso_8601": "2020-09-06T12:53:15.860068Z", "url": "https://files.pythonhosted.org/packages/62/4a/7b99544fbfdcd3181d029a853ce44b68307f5b4952f0edc4e11b1a1b0d99/pygeos-0.8-cp35-cp35m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d52777e2d8d785feb405901a97ac27d1", "sha256": "6585a6adaad8ad3ebcf67e7854211fe9a2bc9beb59dc945b60db6ad40a3a9bd6" }, "downloads": -1, "filename": "pygeos-0.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "d52777e2d8d785feb405901a97ac27d1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": ">=3", "size": 673702, "upload_time": "2020-09-06T13:01:42", "upload_time_iso_8601": "2020-09-06T13:01:42.040594Z", "url": "https://files.pythonhosted.org/packages/65/f9/b06214b7bddd3793e7389634b7981bd1ad2ccceb8262701fced9a2136e90/pygeos-0.8-cp35-cp35m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e80b27c7b7cb4e43fb0d904e667d75f", "sha256": "5294e7c8e732325a1f7d370ba0fea1faabc6d14926fbbb2b67a4ae618ed47ed2" }, "downloads": -1, "filename": "pygeos-0.8-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "0e80b27c7b7cb4e43fb0d904e667d75f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 1408117, "upload_time": "2020-09-06T13:07:11", "upload_time_iso_8601": "2020-09-06T13:07:11.337433Z", "url": "https://files.pythonhosted.org/packages/77/45/af2e06d3267163b947b22ca7c6a16a2a3197d5ec7c6534d95ea740cc23d1/pygeos-0.8-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f05e1bcd829cbbb481dc679e714290a4", "sha256": "92bae740bc2ccbb9d03f86995e936ff5a6e41b19a9da0499e8985e6e940a7a93" }, "downloads": -1, "filename": "pygeos-0.8-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f05e1bcd829cbbb481dc679e714290a4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 1578453, "upload_time": "2020-09-06T12:52:48", "upload_time_iso_8601": "2020-09-06T12:52:48.990282Z", "url": "https://files.pythonhosted.org/packages/66/06/2cfcf6e90814da1fdb4585534f03a36531f00cbad65f11b417337d69fe60/pygeos-0.8-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81a0b0ca3d2c10350c0815ea2e3fb8b2", "sha256": "35b36a819a663a09f8585c6a67fc7c016004769ae08496b6de10b176e7ba61e1" }, "downloads": -1, "filename": "pygeos-0.8-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "81a0b0ca3d2c10350c0815ea2e3fb8b2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 568829, "upload_time": "2020-09-06T13:08:52", "upload_time_iso_8601": "2020-09-06T13:08:52.949740Z", "url": "https://files.pythonhosted.org/packages/30/da/88fe98edcdd9cb49e8e69b81900ecc3a562d2a6dca309870d8bb59a06ea9/pygeos-0.8-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0b870c72523b58eef7aa0c8d76182e9", "sha256": "ff14eff6248b65b46481f06d4141b7b0dd9e3a0a6b9bf10b1a2c0eddccc94ad6" }, "downloads": -1, "filename": "pygeos-0.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c0b870c72523b58eef7aa0c8d76182e9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 672990, "upload_time": "2020-09-06T13:17:09", "upload_time_iso_8601": "2020-09-06T13:17:09.797149Z", "url": "https://files.pythonhosted.org/packages/4d/b8/511990666b10af72d48344f39d32885f5acc180e5d791546656acff477cb/pygeos-0.8-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1afafc13939d5675ca0e54163e15202b", "sha256": "1e95c79e34abad166824f3e0bf2412c9ea9873fcf51e0cacfb483f8955505aec" }, "downloads": -1, "filename": "pygeos-0.8-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1afafc13939d5675ca0e54163e15202b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 1408123, "upload_time": "2020-09-06T13:06:47", "upload_time_iso_8601": "2020-09-06T13:06:47.874291Z", "url": "https://files.pythonhosted.org/packages/ec/95/61a6520864f3b05da6364edc3f7952b625e1d487e5cfba03a8d5787c9784/pygeos-0.8-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bd3bd2e12452b1284a3983e02e6f938", "sha256": "696f2106b7c4a4f33b813cac141cb8483d420d4209f8e1dbde94e5e572cdac16" }, "downloads": -1, "filename": "pygeos-0.8-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5bd3bd2e12452b1284a3983e02e6f938", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 1578458, "upload_time": "2020-09-06T12:52:38", "upload_time_iso_8601": "2020-09-06T12:52:38.979088Z", "url": "https://files.pythonhosted.org/packages/8c/45/7dff89c1af72ed5f479a611c353768ef8309bfc1a9f5fe670ccb4be97872/pygeos-0.8-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d48ab8a6eebf7b31289e983ae8d0a34", "sha256": "914fe40a9da4a4bd280448f173b48e9232aa652d5ff38e23c7039633fe57e92f" }, "downloads": -1, "filename": "pygeos-0.8-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "0d48ab8a6eebf7b31289e983ae8d0a34", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 568829, "upload_time": "2020-09-06T13:24:16", "upload_time_iso_8601": "2020-09-06T13:24:16.845268Z", "url": "https://files.pythonhosted.org/packages/1a/23/6f9995ade3107c057a08d3af651373f435be7514eaf3bae702b78064f695/pygeos-0.8-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f9fb5d7dec63a1b7f24e6bb4d5de81f", "sha256": "c2bcf0aa4ecad93617d35072230ec9215ca6f9537bf75f959cd4084117269369" }, "downloads": -1, "filename": "pygeos-0.8-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6f9fb5d7dec63a1b7f24e6bb4d5de81f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 672988, "upload_time": "2020-09-06T13:32:32", "upload_time_iso_8601": "2020-09-06T13:32:32.330849Z", "url": "https://files.pythonhosted.org/packages/ab/40/430e4b210298f3143bd423795d5a89d67dd58172736ff6eb7b91ff2e9a2c/pygeos-0.8-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2fc21a0b8b3818997856d807bb1130fe", "sha256": "0df97a1cc15fef561c36596f065cac8e05e1b0de08292ad7a07140a5fa6b4015" }, "downloads": -1, "filename": "pygeos-0.8-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2fc21a0b8b3818997856d807bb1130fe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 1400068, "upload_time": "2020-09-06T13:08:02", "upload_time_iso_8601": "2020-09-06T13:08:02.453404Z", "url": "https://files.pythonhosted.org/packages/98/73/8c670019ad7912697085df67ce88e210f565c1b1e1cb6743528c79317e5b/pygeos-0.8-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3287d213bf99879e8f3c69b374b4f26d", "sha256": "36e2b60a987b2ce0ce988a334f2afa8925864456dec2c03891af8fd900a89504" }, "downloads": -1, "filename": "pygeos-0.8-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3287d213bf99879e8f3c69b374b4f26d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 1578346, "upload_time": "2020-09-06T12:53:04", "upload_time_iso_8601": "2020-09-06T12:53:04.765723Z", "url": "https://files.pythonhosted.org/packages/20/3a/9a3c6470eb5b62f946c68bf27e3715f589a90ee4e0944a5559dfb83ad40f/pygeos-0.8-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb7df1654d62db7bfb0aaffd356b3453", "sha256": "97a16e1ea243ac65176890d642597276c2c413ba8442a8b4f52cbe1b24ba5f68" }, "downloads": -1, "filename": "pygeos-0.8-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "eb7df1654d62db7bfb0aaffd356b3453", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 568964, "upload_time": "2020-09-06T13:39:35", "upload_time_iso_8601": "2020-09-06T13:39:35.850891Z", "url": "https://files.pythonhosted.org/packages/00/9a/087ad7a043ee004e4e996478aab48f34da0bc33640817b486a9b0a5df8bf/pygeos-0.8-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab29f615ea4b4173964f4309d2219bb7", "sha256": "650e56de79eceb75b216c3c08c6d703680d845395f5ea9fd67201bfa8240f6a0" }, "downloads": -1, "filename": "pygeos-0.8-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "ab29f615ea4b4173964f4309d2219bb7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 673070, "upload_time": "2020-09-06T13:40:29", "upload_time_iso_8601": "2020-09-06T13:40:29.148800Z", "url": "https://files.pythonhosted.org/packages/15/02/f4c1c0e76467a059280a6b6ca16be66ec93f2254d17952d7d78ca275bc13/pygeos-0.8-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c3f735465704fda8d40532093b92f03", "sha256": "45b7e1aaa5fc9ff53565ef089fb75c53c419ace8cee18385ec1d7c1515c17cbc" }, "downloads": -1, "filename": "pygeos-0.8.tar.gz", "has_sig": false, "md5_digest": "9c3f735465704fda8d40532093b92f03", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 74522, "upload_time": "2020-09-06T11:23:31", "upload_time_iso_8601": "2020-09-06T11:23:31.287651Z", "url": "https://files.pythonhosted.org/packages/01/32/51318748ac7d68bf42df12a3f3d2b686d2c99e33bbc510847fe8be1b3c1e/pygeos-0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9": [ { "comment_text": "", "digests": { "md5": "27b02af418ed40d5ec1573e57128a296", "sha256": "425221deda0e355166fcf7ce69613de4a52d6cff6ca667ccd1dc446fbad097c4" }, "downloads": -1, "filename": "pygeos-0.9-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "27b02af418ed40d5ec1573e57128a296", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 1940007, "upload_time": "2021-01-25T08:40:42", "upload_time_iso_8601": "2021-01-25T08:40:42.016733Z", "url": "https://files.pythonhosted.org/packages/eb/87/15082b0767025e808e13f3187fb902260c43ac8ef9870ed6d90203b9db02/pygeos-0.9-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c77881fdcd5d05d7a054e81d91de87e", "sha256": "82ddf8a6f4ea93d952678e9523f08debea5361d908490b25ac5fd46ed712a652" }, "downloads": -1, "filename": "pygeos-0.9-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5c77881fdcd5d05d7a054e81d91de87e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 2115750, "upload_time": "2021-01-25T08:36:32", "upload_time_iso_8601": "2021-01-25T08:36:32.999765Z", "url": "https://files.pythonhosted.org/packages/f5/04/ea3b71a73070a9a600d6db00d6d50d4ccde05becadbb9d2e7b845e7c6730/pygeos-0.9-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84f160546643b43eb4f31f045344f735", "sha256": "bbf661e2d2aa1fcbe10b4f6d739384a4f58e1006d51ef8d0e577fc62618aec16" }, "downloads": -1, "filename": "pygeos-0.9-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "84f160546643b43eb4f31f045344f735", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 882568, "upload_time": "2021-01-24T20:55:18", "upload_time_iso_8601": "2021-01-24T20:55:18.249311Z", "url": "https://files.pythonhosted.org/packages/45/a7/8a553fb3303c2eff8fc773b16633f3e4b24456c113843c68dd2119304b0e/pygeos-0.9-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e0b92f03188b4026bd0bfe791f57941", "sha256": "3f9126534e9bc88e872eae267032d0fab35f351d469caf6ffef4e1002bad4550" }, "downloads": -1, "filename": "pygeos-0.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7e0b92f03188b4026bd0bfe791f57941", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3", "size": 976589, "upload_time": "2021-01-24T20:56:39", "upload_time_iso_8601": "2021-01-24T20:56:39.207108Z", "url": "https://files.pythonhosted.org/packages/c9/21/7cf7b1bc07e9a22e62c9592704c18a90e06aee2d599d8b7ad5fee137b015/pygeos-0.9-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "09715df0b6aab287f71d3b550af17e87", "sha256": "4341501c725c8945319970f1e572a514719a17ddec6571d319561bb4ae6edf17" }, "downloads": -1, "filename": "pygeos-0.9-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "09715df0b6aab287f71d3b550af17e87", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 1938416, "upload_time": "2021-01-25T08:48:11", "upload_time_iso_8601": "2021-01-25T08:48:11.380134Z", "url": "https://files.pythonhosted.org/packages/87/9b/bee02491032c9baaa109ed806c43a35b02a9180fa078f463348d64917f0f/pygeos-0.9-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef1f5a6e60539a2325dcbbf54f1eee0b", "sha256": "531661dc547b0a9e03cf3cd8166a11d6a0e8cb3ecb71b8e6b240f6f28314023e" }, "downloads": -1, "filename": "pygeos-0.9-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ef1f5a6e60539a2325dcbbf54f1eee0b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 2115613, "upload_time": "2021-01-25T08:36:42", "upload_time_iso_8601": "2021-01-25T08:36:42.293493Z", "url": "https://files.pythonhosted.org/packages/f5/2c/071f928a67d8a7e754a99ba3281ec685c8dfa4d64f9b83fc53ca2c325b82/pygeos-0.9-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e65d2fea84e63f6cadb44d8c2680705", "sha256": "845567e866dbd8821675dce32d63bc9e6aa3a0384e8d5a7f259baf3bafbfd0c9" }, "downloads": -1, "filename": "pygeos-0.9-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "8e65d2fea84e63f6cadb44d8c2680705", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 882483, "upload_time": "2021-01-24T20:58:12", "upload_time_iso_8601": "2021-01-24T20:58:12.106996Z", "url": "https://files.pythonhosted.org/packages/5c/76/0fec99a32c668befcb0677f99b8a0aaf47c19a39246765036c4ff1d2d752/pygeos-0.9-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f8192aee2c2da2f831b2cc7c12890f61", "sha256": "3eaee0e9f9fcc7b6370bcfe839b15fcaa93dab3c894681df3e3437692decc4f1" }, "downloads": -1, "filename": "pygeos-0.9-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f8192aee2c2da2f831b2cc7c12890f61", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3", "size": 976425, "upload_time": "2021-01-24T20:59:29", "upload_time_iso_8601": "2021-01-24T20:59:29.866317Z", "url": "https://files.pythonhosted.org/packages/f3/23/6c755dea0c3238d9df945c18ee196eb530b6f8c04d8ce4f8957b72e2b58b/pygeos-0.9-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52e54ddde3e5137b09ea11c8742b23fe", "sha256": "b17fe2ed942e3b83c4afb4d0bb5870ac21a26f8353b137444f49a6b6beb71d2f" }, "downloads": -1, "filename": "pygeos-0.9-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "52e54ddde3e5137b09ea11c8742b23fe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 1938736, "upload_time": "2021-01-25T08:47:59", "upload_time_iso_8601": "2021-01-25T08:47:59.002017Z", "url": "https://files.pythonhosted.org/packages/0c/16/faaf1d1dbadd173cd2ecac5ff6ad6478f06d21afece2a00d6afaf25df04d/pygeos-0.9-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55d49344ebcab2959d980aaf2668b1bc", "sha256": "006aee5215d305afa96ce3e930a5fc00cfe9cc5e7c79f194922cd2eeb5547e2a" }, "downloads": -1, "filename": "pygeos-0.9-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "55d49344ebcab2959d980aaf2668b1bc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 2113653, "upload_time": "2021-01-25T08:37:06", "upload_time_iso_8601": "2021-01-25T08:37:06.367563Z", "url": "https://files.pythonhosted.org/packages/12/bc/ac39a820715886a8d94f67f9c99560a52cb0dd2a902f8c58f053c52a5d93/pygeos-0.9-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "711b6a6522cb15515287430444ed79b8", "sha256": "bc017fe4521577f8a4f62baf6c4f0882b8c8a0b0fbf65befe5060b1921dfa80e" }, "downloads": -1, "filename": "pygeos-0.9-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "711b6a6522cb15515287430444ed79b8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 883878, "upload_time": "2021-01-24T21:00:48", "upload_time_iso_8601": "2021-01-24T21:00:48.496940Z", "url": "https://files.pythonhosted.org/packages/c6/44/67f75e8645babe3ab272437ec6685f7eb5798db746907bc4b1d8a5c9da14/pygeos-0.9-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "272e413cde15514861c2e8f9b7de9b48", "sha256": "fae860732c532697f3708e8da669e057ce6692ed88740f493a522c5ed2f87aac" }, "downloads": -1, "filename": "pygeos-0.9-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "272e413cde15514861c2e8f9b7de9b48", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3", "size": 977715, "upload_time": "2021-01-24T21:02:00", "upload_time_iso_8601": "2021-01-24T21:02:00.034616Z", "url": "https://files.pythonhosted.org/packages/31/74/a4dd13525ffc758613e54ed4601838f66342e1f7a9277bcdb9e77a39ba94/pygeos-0.9-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2971b3b96b04b59d9df6242678234f56", "sha256": "c3d127091b18d98cd460cc5b20e2acabcf74668e8170146f40a158c01bbad055" }, "downloads": -1, "filename": "pygeos-0.9-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "2971b3b96b04b59d9df6242678234f56", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3", "size": 1930956, "upload_time": "2021-01-25T08:48:22", "upload_time_iso_8601": "2021-01-25T08:48:22.067208Z", "url": "https://files.pythonhosted.org/packages/ad/9f/3dc676f11b4b19f52bd7e4114a7b25e1e5756807b40391f8c285456f6d58/pygeos-0.9-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c0e2ba896820e2eea6fe5072da122f30", "sha256": "8e5b246dd7f1c5c554245a545424cac226443babfd7d6ef71a02b5635da9e8da" }, "downloads": -1, "filename": "pygeos-0.9-cp39-cp39-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c0e2ba896820e2eea6fe5072da122f30", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3", "size": 2103609, "upload_time": "2021-01-25T08:36:24", "upload_time_iso_8601": "2021-01-25T08:36:24.228877Z", "url": "https://files.pythonhosted.org/packages/dd/4c/a7dc69d345d8cfcd8f4cd6bcfe806c99c43a627121de5ea0e7f543154c09/pygeos-0.9-cp39-cp39-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4886d667b46d019809064fafe1386b26", "sha256": "b55e9bb4e03a30b809bdda102574d7e09e79907fe4f09c5b53be8c47585e1185" }, "downloads": -1, "filename": "pygeos-0.9-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "4886d667b46d019809064fafe1386b26", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3", "size": 883991, "upload_time": "2021-01-24T21:03:22", "upload_time_iso_8601": "2021-01-24T21:03:22.972439Z", "url": "https://files.pythonhosted.org/packages/77/9c/0eeb5f45c64b02a0fad676f478f390d44ca9d01a4ebf4726bf3fee131524/pygeos-0.9-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "894ac3c592a9044684b36b6e119350fa", "sha256": "aaa10b3a29a6fce9036f80ccfdf96ddb75575ecef8f0dbdbb0a8c456a3793084" }, "downloads": -1, "filename": "pygeos-0.9-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "894ac3c592a9044684b36b6e119350fa", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3", "size": 977875, "upload_time": "2021-01-24T21:04:39", "upload_time_iso_8601": "2021-01-24T21:04:39.174253Z", "url": "https://files.pythonhosted.org/packages/62/77/a892e33915d1cb53e11dbb4baca45f15cb33be82357dc80d565e2588b125/pygeos-0.9-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3d4e04cba540ceba80ce376f1f20192", "sha256": "c0584b20e95f80ee57277a6eb1e5d7f86600f8b1ef3c627d238e243afdcc0cc7" }, "downloads": -1, "filename": "pygeos-0.9.tar.gz", "has_sig": false, "md5_digest": "e3d4e04cba540ceba80ce376f1f20192", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 89760, "upload_time": "2021-01-23T09:52:21", "upload_time_iso_8601": "2021-01-23T09:52:21.045853Z", "url": "https://files.pythonhosted.org/packages/1e/4b/83d7b3b32caeee02bd921c38394526eba9d3d928ef3e99cd4e57453932c0/pygeos-0.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d0b8a0e242e5f7bc84e0efe1994b970c", "sha256": "e3593360f1a93d2a6fe1ea75fa84882186bd3851d187e4c4bbb586495c748e3d" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "d0b8a0e242e5f7bc84e0efe1994b970c", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2229659, "upload_time": "2021-12-03T15:30:33", "upload_time_iso_8601": "2021-12-03T15:30:33.566789Z", "url": "https://files.pythonhosted.org/packages/30/63/e21d07fab2e17c0ace261dacdf86fa9f615a66ce2a40f6ef00f8d3cb6d1e/pygeos-0.12.0-cp310-cp310-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22c71dbba35c6fb5129cec837922321d", "sha256": "ec4112b69823866fa966ec4869e1b51b6560d892c65c20b3fb065266519046e2" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "22c71dbba35c6fb5129cec837922321d", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1073531, "upload_time": "2021-12-03T15:30:35", "upload_time_iso_8601": "2021-12-03T15:30:35.409238Z", "url": "https://files.pythonhosted.org/packages/32/ac/54042bd3ef1fd9b35c5e24ed05cc700e8d828f274d95dca22902c2d5a6c1/pygeos-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6983056882c57fade7c7d45111cf09ff", "sha256": "75b5b0aefffb6b7747df299414df4f2e160e3a8993d2b6a86b805fb5b0196f13" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "6983056882c57fade7c7d45111cf09ff", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2090463, "upload_time": "2021-12-03T20:23:10", "upload_time_iso_8601": "2021-12-03T20:23:10.113078Z", "url": "https://files.pythonhosted.org/packages/17/90/f29cf92c3211d6fa4831a5a0077aae4671df630a9b621b9c73bac2980b41/pygeos-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42bf84d8c741edbdc26939a20652d543", "sha256": "26fae3eabb83a15348c2c3f78892114aca9bc4efaa342ab2fa3fa39a85e05dc5" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "42bf84d8c741edbdc26939a20652d543", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 2173972, "upload_time": "2021-12-03T15:30:36", "upload_time_iso_8601": "2021-12-03T15:30:36.567832Z", "url": "https://files.pythonhosted.org/packages/b4/64/01e6c648e6d0b305e0d1cdbe4fd96bc8d0fbae7cb14a929e5645cbe71524/pygeos-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f1271e1b35bbfb31b541f650f897ad9", "sha256": "b4ec8fe577ca7ba6dd046481cdb736f99961216fcb54c84211287a10d1158459" }, "downloads": -1, "filename": "pygeos-0.12.0-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "3f1271e1b35bbfb31b541f650f897ad9", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": ">=3.6", "size": 1443182, "upload_time": "2021-12-03T15:30:37", "upload_time_iso_8601": "2021-12-03T15:30:37.790897Z", "url": "https://files.pythonhosted.org/packages/88/94/dad931fc335b3ad426c9ead3e63bf877b19c4e27b8c08a40687d4f2ae1a9/pygeos-0.12.0-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db2aaba36d385696de14153ec2d7a470", "sha256": "6db68dc4583c88222d32cc624622234a97080b3c4650f0c0e12987664d49f374" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "db2aaba36d385696de14153ec2d7a470", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1236614, "upload_time": "2021-12-03T15:30:38", "upload_time_iso_8601": "2021-12-03T15:30:38.845000Z", "url": "https://files.pythonhosted.org/packages/fd/9c/db7a1181ec0de73adcca0b0ff42d62cd437cc54c69afa6a7d614a3eaebcd/pygeos-0.12.0-cp36-cp36m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "412baa03db61ceecac8939639b739954", "sha256": "da856315a4047d581300d860dd2aa01438e64121570bed46c81ad0a90f477db0" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "412baa03db61ceecac8939639b739954", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2037300, "upload_time": "2021-12-03T20:23:11", "upload_time_iso_8601": "2021-12-03T20:23:11.409304Z", "url": "https://files.pythonhosted.org/packages/ba/99/32c10d70a10afb9d4200fad120dd6a40799d1e94b35d3d3b1ed94729003b/pygeos-0.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2727686513252bcbc9c92b414b32c26b", "sha256": "3cf6d734aea07f04c7644ae24e303a447e96ea123ea524ab309e492ca683240e" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "2727686513252bcbc9c92b414b32c26b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2271335, "upload_time": "2021-12-03T15:30:39", "upload_time_iso_8601": "2021-12-03T15:30:39.987786Z", "url": "https://files.pythonhosted.org/packages/0c/11/f86d110b90f472503e73c0ee54929ce8a1f941e7d254dd8823819950c86c/pygeos-0.12.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a1c4b0a66c96a19f4d996be7bc266a5", "sha256": "12e06ec4417453f1a95d36b8ba8822569c30f6938dd4a7bac97433cab641b61f" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0a1c4b0a66c96a19f4d996be7bc266a5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 2123974, "upload_time": "2021-12-03T15:30:41", "upload_time_iso_8601": "2021-12-03T15:30:41.207953Z", "url": "https://files.pythonhosted.org/packages/53/01/f08b0b383d782058b657a4e9492850c52d70c03580d3cd7cbd074fb61ef6/pygeos-0.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7716dd1cdb00f41d22e70a3de21c50d7", "sha256": "ea7f3ea9c76f8c94ed9b360b4d6249c44d5bc48c8db5cb3a5d4b017e51d1bd8a" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "7716dd1cdb00f41d22e70a3de21c50d7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1304298, "upload_time": "2021-12-03T15:30:42", "upload_time_iso_8601": "2021-12-03T15:30:42.736693Z", "url": "https://files.pythonhosted.org/packages/e8/01/b14ac19cb68808a896f5e058a6e2ecd3eda6041a949f9a1f738b718f197b/pygeos-0.12.0-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c38276af484ba113aa47962b6a67280d", "sha256": "a6cf496887f25b99427624399bcd07107660e6f9135466c33dc60ad9bd4c9ebe" }, "downloads": -1, "filename": "pygeos-0.12.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c38276af484ba113aa47962b6a67280d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6", "size": 1469312, "upload_time": "2021-12-03T15:30:44", "upload_time_iso_8601": "2021-12-03T15:30:44.355765Z", "url": "https://files.pythonhosted.org/packages/37/be/7e924e63a9fccf8b4034ac4daade97af098fa1cb8d91952089d84f3ab7a1/pygeos-0.12.0-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbba5587895bc7044f18dfba1a853f49", "sha256": "f155f268676ff7b20a553a542a436be0f8df14233c873facc80214d836d6463b" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "bbba5587895bc7044f18dfba1a853f49", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1237184, "upload_time": "2021-12-03T15:30:45", "upload_time_iso_8601": "2021-12-03T15:30:45.487971Z", "url": "https://files.pythonhosted.org/packages/c2/6d/cf22147fe9f970192537b781637b75541b6f56a8fcfb28ba71f1329d8987/pygeos-0.12.0-cp37-cp37m-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebd64ce442ad4ee04b033b1549dea077", "sha256": "f74abd81487839532c7110721f3b1450d0c6bcfb5e18c45d604ddeb75ec99f86" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "ebd64ce442ad4ee04b033b1549dea077", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2034677, "upload_time": "2021-12-03T20:23:12", "upload_time_iso_8601": "2021-12-03T20:23:12.591573Z", "url": "https://files.pythonhosted.org/packages/b8/10/703464e7973240553e0a0ba4289847335fbc8c479cdb426914bb8bf6d0a2/pygeos-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5243de7038368884bdd90425006fa7db", "sha256": "6ac4ddfbe548d8a3e93732577b8a6d4df071f038338f6c400466b3c2bfe3dc78" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "5243de7038368884bdd90425006fa7db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2267730, "upload_time": "2021-12-03T15:30:46", "upload_time_iso_8601": "2021-12-03T15:30:46.687633Z", "url": "https://files.pythonhosted.org/packages/88/72/89feb00ded4da3becb671b9b2f2989cab649ba8b1e5aedefee6b1bd3df4b/pygeos-0.12.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bddaebbb865dfb9e2ab93c8fb96f0ea5", "sha256": "504a03330147d2bb3309f291f4333db892cdba40a66ac4f3db8a2672dff7cf4f" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bddaebbb865dfb9e2ab93c8fb96f0ea5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 2123300, "upload_time": "2021-12-03T15:30:47", "upload_time_iso_8601": "2021-12-03T15:30:47.789491Z", "url": "https://files.pythonhosted.org/packages/64/63/2007e48e8365d38d0f9e89a95e7048f366f6098fed8a8eae09f6f34cc516/pygeos-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc137c27ad6fe4140db3aea610343dd6", "sha256": "e3bcfb55e966aea26ff8e9b8fd314cee618c363f639e83b1eaaefb66bc97e7b0" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "fc137c27ad6fe4140db3aea610343dd6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1304207, "upload_time": "2021-12-03T15:30:49", "upload_time_iso_8601": "2021-12-03T15:30:49.152302Z", "url": "https://files.pythonhosted.org/packages/7d/bd/cced74c8d62623524a17343accdcc82b58093e06bfb3f97d69aa63955534/pygeos-0.12.0-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a715cff42774cb53cecd2383fd463175", "sha256": "835b7b1b2ef44453ff9d759dd67ee17fb89a52d8cdbd4d1655bf0be6ccfd90c3" }, "downloads": -1, "filename": "pygeos-0.12.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a715cff42774cb53cecd2383fd463175", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6", "size": 1469141, "upload_time": "2021-12-03T15:30:50", "upload_time_iso_8601": "2021-12-03T15:30:50.364597Z", "url": "https://files.pythonhosted.org/packages/b8/c9/451fb18e909d935a09a0c7faf222ff3246cb97ed4564193a016f7308cd75/pygeos-0.12.0-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e9f56b58b452b79fb0d3deaa8086874", "sha256": "60d103b4c099940ad73f0b193f65dfc77f957646451b8a399e4f1f5835c57ab6" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "7e9f56b58b452b79fb0d3deaa8086874", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2220291, "upload_time": "2021-12-03T15:30:51", "upload_time_iso_8601": "2021-12-03T15:30:51.556940Z", "url": "https://files.pythonhosted.org/packages/e2/16/ae7aa3ec7c251abb42413c90e42bbcc238dc0cb02527eb554816aec031ae/pygeos-0.12.0-cp38-cp38-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5b33ba8064b2cc176e75fd27b5a8ab8b", "sha256": "5bc1b9a548848f9c69c913eca8ab0bb9164b35a28da51f86fcc0887c553bd863" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5b33ba8064b2cc176e75fd27b5a8ab8b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1236649, "upload_time": "2021-12-03T15:30:52", "upload_time_iso_8601": "2021-12-03T15:30:52.744915Z", "url": "https://files.pythonhosted.org/packages/25/0d/1bc78c6ac4ce3a2ce4f298051c84fae5756be517410a9324c2652dce952e/pygeos-0.12.0-cp38-cp38-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f8892a69b2f6044123d8a530d27d5f3", "sha256": "11cb186f6cb9a2453a990a3e9894f861d308c574170d1c6f55a598cb11b87579" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "3f8892a69b2f6044123d8a530d27d5f3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1069369, "upload_time": "2021-12-03T15:30:53", "upload_time_iso_8601": "2021-12-03T15:30:53.680385Z", "url": "https://files.pythonhosted.org/packages/10/11/446d5e3f106b63379163860dd3d70c1eaabff5c5b2df8ce26dce6917e413/pygeos-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52bfc972e58711b447f3e2a8893b254f", "sha256": "b8fcb175645f57d7a6fa153a1582f9dbf625bb69c55267207b1bc8d2b983013b" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "52bfc972e58711b447f3e2a8893b254f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2089876, "upload_time": "2021-12-03T20:23:14", "upload_time_iso_8601": "2021-12-03T20:23:14.302216Z", "url": "https://files.pythonhosted.org/packages/a5/4d/5ce8ba2b73dc5adbe1e9a67691767d68c3f5e93177ad7747d5480dd000d6/pygeos-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c81d2b938dbe40dd41031c4c9f2ffe7", "sha256": "2453c07c9b8a24054f897ed56e8046c7dd743939f7f5d6637fdeafdccc411f29" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "0c81d2b938dbe40dd41031c4c9f2ffe7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2321187, "upload_time": "2021-12-03T15:30:54", "upload_time_iso_8601": "2021-12-03T15:30:54.751867Z", "url": "https://files.pythonhosted.org/packages/ce/8f/aeeaebad60192a2c5964a7ef01ecc6255f4b786b38611a8ee0fbbffd7d42/pygeos-0.12.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "688f5034a54da7ef9e4c008b1b44f70a", "sha256": "962df97f937d6656ce9293e7072318e99860b0d41f61df9017551855a8bc188e" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "688f5034a54da7ef9e4c008b1b44f70a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 2176503, "upload_time": "2021-12-03T15:30:55", "upload_time_iso_8601": "2021-12-03T15:30:55.915806Z", "url": "https://files.pythonhosted.org/packages/90/0b/6f149c71dc7e035bb872c7f819127749d0a3c4388473f28be59ddb0b61fc/pygeos-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "218f1dff756989439b1d72748bea8a30", "sha256": "d72e3691e47f44b49d3a23f05bb55eca34ed28b0e7b1b4aeb50207a95ae83f8f" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "218f1dff756989439b1d72748bea8a30", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1307438, "upload_time": "2021-12-03T15:30:57", "upload_time_iso_8601": "2021-12-03T15:30:57.132883Z", "url": "https://files.pythonhosted.org/packages/ee/37/14ee35c0887b6a224d8426a560675c0bcd719dc291d619b2d64fc2797840/pygeos-0.12.0-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a859d91529b514f2e7996eda3583f48d", "sha256": "41119e394ea90bf8f697613f530cf92c77ab98346c19cb19beba33a82fd5b91d" }, "downloads": -1, "filename": "pygeos-0.12.0-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "a859d91529b514f2e7996eda3583f48d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.6", "size": 1451475, "upload_time": "2021-12-03T15:30:58", "upload_time_iso_8601": "2021-12-03T15:30:58.153866Z", "url": "https://files.pythonhosted.org/packages/bf/7b/d82c13ab2e25cda8df5acdcc815013ec3e1bce9a97d573d46c94dab7a10d/pygeos-0.12.0-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7908c0209c781a45892b83b682321753", "sha256": "dfad4c0a4b60861f8e571ca409ce128859d26e1ac26a15ee071cf1f222431fdd" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-macosx_10_9_universal2.whl", "has_sig": false, "md5_digest": "7908c0209c781a45892b83b682321753", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2228991, "upload_time": "2021-12-03T15:30:59", "upload_time_iso_8601": "2021-12-03T15:30:59.312438Z", "url": "https://files.pythonhosted.org/packages/93/9d/6d5009bcdc921c6f1b873230666d02de3330eb442284c22b70ab51d7a9fa/pygeos-0.12.0-cp39-cp39-macosx_10_9_universal2.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "23cb779f4bf6a0307f06f27ea0cd118a", "sha256": "aeaf1f9ae45cf35a25ccdeb2b083e057b31d98cf9351bfc42a59352130ff5c31" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "23cb779f4bf6a0307f06f27ea0cd118a", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1241152, "upload_time": "2021-12-03T15:31:00", "upload_time_iso_8601": "2021-12-03T15:31:00.623368Z", "url": "https://files.pythonhosted.org/packages/2c/0d/2fcab0046b141c038cae47fe16d2eb0aaed3000b9312b682498f421a8acc/pygeos-0.12.0-cp39-cp39-macosx_10_9_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5a3176fb6353191536f66dd06130333", "sha256": "59971b44e3b8f61e96b159acdc5f9347b94766a4efb94af7b926b1c4958b60d4" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", "has_sig": false, "md5_digest": "e5a3176fb6353191536f66dd06130333", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1073300, "upload_time": "2021-12-03T15:31:01", "upload_time_iso_8601": "2021-12-03T15:31:01.612800Z", "url": "https://files.pythonhosted.org/packages/d3/cf/a6b19e5b1cda2d782482d6a6a55b5b7a22b4194b2de189cbc4cc64f1e140/pygeos-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dab40d84dcc2e56a49379a025ef77dd2", "sha256": "efcbd52e5602d758b1ff42e67b91b33b1599667b478d0be9c13e17b286cbfcf0" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "has_sig": false, "md5_digest": "dab40d84dcc2e56a49379a025ef77dd2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2085453, "upload_time": "2021-12-03T20:23:15", "upload_time_iso_8601": "2021-12-03T20:23:15.453364Z", "url": "https://files.pythonhosted.org/packages/5e/55/3800f7770d65fe015be0f5ad8d059ba6971c737c8cb637831000975cc89e/pygeos-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7dffc68347a7b6d7e15ef68438d027a2", "sha256": "47e7b2614d8982f841e33cc1f18d39b7a654d4d7958d456e4765ff4a9c76589b" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "7dffc68347a7b6d7e15ef68438d027a2", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2319603, "upload_time": "2021-12-03T15:31:02", "upload_time_iso_8601": "2021-12-03T15:31:02.622887Z", "url": "https://files.pythonhosted.org/packages/6a/3e/9090fd382c1434be89d1d91dfcb73672ec799d10dc523e0de0bca79f6a4c/pygeos-0.12.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f688d1c6f0c853283c6d6f45a9a64201", "sha256": "1f045632a940905c2f380544450bbcd48556b529bdfb9320aac777d90990fc25" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f688d1c6f0c853283c6d6f45a9a64201", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 2168826, "upload_time": "2021-12-03T15:31:03", "upload_time_iso_8601": "2021-12-03T15:31:03.823874Z", "url": "https://files.pythonhosted.org/packages/59/2c/9ba395b95763f4e5337c9275bb06774f75fcf7fb12e2a75ffe002ae2918d/pygeos-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4238271bf223b88a76531d043c2f072c", "sha256": "d2fefb3a9cf96d1ee4841772464e82b2ae3a8ddf3caf14ecb04c5fcdae6a7248" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "4238271bf223b88a76531d043c2f072c", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1297558, "upload_time": "2021-12-03T15:31:05", "upload_time_iso_8601": "2021-12-03T15:31:05.084365Z", "url": "https://files.pythonhosted.org/packages/94/d6/c2234e86cbe93b234db7af50cce31be19d3cfdce585dc193a7422fb103e3/pygeos-0.12.0-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68785403fb7b798ace242c19a62da337", "sha256": "25b94e8bc755a8d3e50661995556b2c27d253bfdd55aa719ea3c202de44a9569" }, "downloads": -1, "filename": "pygeos-0.12.0-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "68785403fb7b798ace242c19a62da337", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.6", "size": 1441760, "upload_time": "2021-12-03T15:31:06", "upload_time_iso_8601": "2021-12-03T15:31:06.349949Z", "url": "https://files.pythonhosted.org/packages/6f/4c/1cdac6e8036f68d0a546118c78b35855b6e7ed8a7010d23ac48f1984051d/pygeos-0.12.0-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eda4493db1aeb0503c83db5dfe84ee1a", "sha256": "3c41542ef67c66015f443ae3e6e683503a8a221f9c24fb2380f6ae42aed1600a" }, "downloads": -1, "filename": "pygeos-0.12.0.tar.gz", "has_sig": false, "md5_digest": "eda4493db1aeb0503c83db5dfe84ee1a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 141393, "upload_time": "2021-12-03T15:31:07", "upload_time_iso_8601": "2021-12-03T15:31:07.314581Z", "url": "https://files.pythonhosted.org/packages/78/6b/8cfe885a22aedb27cdbf5534dbaa49d1ee8037bd590b1dcebc84350e5281/pygeos-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }