Name | shewchuk JSON |
Version |
6.10.0
JSON |
| download |
home_page | https://github.com/lycantropos/shewchuk/ |
Summary | Robust floating point operations. |
upload_time | 2024-11-14 04:25:48 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | MIT License Copyright (c) 2021 Azat Ibrakov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
shewchuk
========
[![](https://github.com/lycantropos/shewchuk/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/lycantropos/shewchuk/actions/workflows/ci.yml "Github Actions")
[![](https://readthedocs.org/projects/shewchuk/badge/?version=latest)](https://shewchuk.readthedocs.io/en/latest/?badge=latest "Documentation")
[![](https://codecov.io/gh/lycantropos/shewchuk/branch/master/graph/badge.svg)](https://codecov.io/gh/lycantropos/shewchuk "Codecov")
[![](https://img.shields.io/github/license/lycantropos/shewchuk.svg)](https://github.com/lycantropos/shewchuk/blob/master/LICENSE "License")
[![](https://badge.fury.io/py/shewchuk.svg)](https://badge.fury.io/py/shewchuk "PyPI")
Summary
-------
`shewchuk` is a collection of computational geometry utilities
for robust processing of geometries with floating point coordinates.
Named after and based on [the work](https://www.cs.cmu.edu/~quake/robust.html)
of [Jonathan Richard Shewchuk](https://en.wikipedia.org/wiki/Jonathan_Shewchuk).
---
In what follows `python` is an alias for `python3.9` or `pypy3.9`
or any later version (`python3.10`, `pypy3.10` and so on).
Installation
------------
Install the latest `pip` & `setuptools` packages versions
```bash
python -m pip install --upgrade pip setuptools
```
### User
Download and install the latest stable version from `PyPI` repository
```bash
python -m pip install --upgrade shewchuk
```
### Developer
Download the latest version from `GitHub` repository
```bash
git clone https://github.com/lycantropos/shewchuk.git
cd shewchuk
```
Install
```bash
python -m pip install -e .
```
Usage
-----
```python
>>> from shewchuk import incircle_test
>>> incircle_test(3, 3, 0, 0, 2, 0, 0, 2) == -1
True
>>> incircle_test(2, 2, 0, 0, 2, 0, 0, 2) == 0
True
>>> incircle_test(1, 1, 0, 0, 2, 0, 0, 2) == 1
True
>>> from shewchuk import kind
>>> kind(1, 0, 0, 0, 2, 0) == -1
True
>>> kind(0, 0, 0, 1, 1, 0) == 0
True
>>> kind(0, 0, 1, 0, 2, 0) == 1
True
>>> from shewchuk import orientation
>>> orientation(0, 0, 0, 1, 1, 0) == -1
True
>>> orientation(0, 0, 1, 0, 2, 0) == 0
True
>>> orientation(0, 0, 1, 0, 0, 1) == 1
True
```
Development
-----------
### Bumping version
#### Preparation
Install
[bump2version](https://github.com/c4urself/bump2version#installation).
#### Pre-release
Choose which version number category to bump following [semver
specification](http://semver.org/).
Test bumping version
```bash
bump2version --dry-run --verbose $CATEGORY
```
where `$CATEGORY` is the target version number category name, possible
values are `patch`/`minor`/`major`.
Bump version
```bash
bump2version --verbose $CATEGORY
```
This will set version to `major.minor.patch-alpha`.
#### Release
Test bumping version
```bash
bump2version --dry-run --verbose release
```
Bump version
```bash
bump2version --verbose release
```
This will set version to `major.minor.patch`.
### Running tests
Install with dependencies
```bash
python -m pip install -e .[tests]
```
Plain
```bash
pytest
```
Inside `Docker` container:
- with `CPython`
```bash
docker-compose --file docker-compose.cpython.yml up
```
- with `PyPy`
```bash
docker-compose --file docker-compose.pypy.yml up
```
`Bash` script:
- with `CPython`
```bash
./run-tests.sh
```
or
```bash
./run-tests.sh cpython
```
- with `PyPy`
```bash
./run-tests.sh pypy
```
`PowerShell` script:
- with `CPython`
```powershell
.\run-tests.ps1
```
or
```powershell
.\run-tests.ps1 cpython
```
- with `PyPy`
```powershell
.\run-tests.ps1 pypy
```
Raw data
{
"_id": null,
"home_page": "https://github.com/lycantropos/shewchuk/",
"name": "shewchuk",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Azat Ibrakov <azatibrakov@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/3f/a4/6aad9cc9c037dfdc4129b634007af8f35ef198fb261690e2e032f2e88cab/shewchuk-6.10.0.tar.gz",
"platform": null,
"description": "shewchuk\n========\n\n[![](https://github.com/lycantropos/shewchuk/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/lycantropos/shewchuk/actions/workflows/ci.yml \"Github Actions\")\n[![](https://readthedocs.org/projects/shewchuk/badge/?version=latest)](https://shewchuk.readthedocs.io/en/latest/?badge=latest \"Documentation\")\n[![](https://codecov.io/gh/lycantropos/shewchuk/branch/master/graph/badge.svg)](https://codecov.io/gh/lycantropos/shewchuk \"Codecov\")\n[![](https://img.shields.io/github/license/lycantropos/shewchuk.svg)](https://github.com/lycantropos/shewchuk/blob/master/LICENSE \"License\")\n[![](https://badge.fury.io/py/shewchuk.svg)](https://badge.fury.io/py/shewchuk \"PyPI\")\n\nSummary\n-------\n\n`shewchuk` is a collection of computational geometry utilities\nfor robust processing of geometries with floating point coordinates.\n\nNamed after and based on [the work](https://www.cs.cmu.edu/~quake/robust.html)\nof [Jonathan Richard Shewchuk](https://en.wikipedia.org/wiki/Jonathan_Shewchuk).\n\n---\n\nIn what follows `python` is an alias for `python3.9` or `pypy3.9`\nor any later version (`python3.10`, `pypy3.10` and so on).\n\nInstallation\n------------\n\nInstall the latest `pip` & `setuptools` packages versions\n```bash\npython -m pip install --upgrade pip setuptools\n```\n\n### User\n\nDownload and install the latest stable version from `PyPI` repository\n```bash\npython -m pip install --upgrade shewchuk\n```\n\n### Developer\n\nDownload the latest version from `GitHub` repository\n```bash\ngit clone https://github.com/lycantropos/shewchuk.git\ncd shewchuk\n```\n\nInstall\n```bash\npython -m pip install -e .\n```\n\nUsage\n-----\n```python\n>>> from shewchuk import incircle_test\n>>> incircle_test(3, 3, 0, 0, 2, 0, 0, 2) == -1\nTrue\n>>> incircle_test(2, 2, 0, 0, 2, 0, 0, 2) == 0\nTrue\n>>> incircle_test(1, 1, 0, 0, 2, 0, 0, 2) == 1\nTrue\n>>> from shewchuk import kind\n>>> kind(1, 0, 0, 0, 2, 0) == -1\nTrue\n>>> kind(0, 0, 0, 1, 1, 0) == 0\nTrue\n>>> kind(0, 0, 1, 0, 2, 0) == 1\nTrue\n>>> from shewchuk import orientation\n>>> orientation(0, 0, 0, 1, 1, 0) == -1\nTrue\n>>> orientation(0, 0, 1, 0, 2, 0) == 0\nTrue\n>>> orientation(0, 0, 1, 0, 0, 1) == 1\nTrue\n\n```\n\nDevelopment\n-----------\n\n### Bumping version\n\n#### Preparation\n\nInstall\n[bump2version](https://github.com/c4urself/bump2version#installation).\n\n#### Pre-release\n\nChoose which version number category to bump following [semver\nspecification](http://semver.org/).\n\nTest bumping version\n```bash\nbump2version --dry-run --verbose $CATEGORY\n```\n\nwhere `$CATEGORY` is the target version number category name, possible\nvalues are `patch`/`minor`/`major`.\n\nBump version\n```bash\nbump2version --verbose $CATEGORY\n```\n\nThis will set version to `major.minor.patch-alpha`.\n\n#### Release\n\nTest bumping version\n```bash\nbump2version --dry-run --verbose release\n```\n\nBump version\n```bash\nbump2version --verbose release\n```\n\nThis will set version to `major.minor.patch`.\n\n### Running tests\n\nInstall with dependencies\n```bash\npython -m pip install -e .[tests]\n```\n\nPlain\n```bash\npytest\n```\n\nInside `Docker` container:\n- with `CPython`\n ```bash\n docker-compose --file docker-compose.cpython.yml up\n ```\n- with `PyPy`\n ```bash\n docker-compose --file docker-compose.pypy.yml up\n ```\n\n`Bash` script:\n- with `CPython`\n ```bash\n ./run-tests.sh\n ```\n or\n ```bash\n ./run-tests.sh cpython\n ```\n\n- with `PyPy`\n ```bash\n ./run-tests.sh pypy\n ```\n\n`PowerShell` script:\n- with `CPython`\n ```powershell\n .\\run-tests.ps1\n ```\n or\n ```powershell\n .\\run-tests.ps1 cpython\n ```\n- with `PyPy`\n ```powershell\n .\\run-tests.ps1 pypy\n ```\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2021 Azat Ibrakov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "Robust floating point operations.",
"version": "6.10.0",
"project_urls": {
"Download": "https://github.com/lycantropos/shewchuk/archive/master.zip",
"Homepage": "https://github.com/lycantropos/shewchuk/"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "862139d38147a78c1a9d40c20f0be188d9832280a6853ee9a0801dcb05c32e32",
"md5": "4ba74b8ba26ea1061c6671ebe3cae4ab",
"sha256": "4c14028a32e3a2816212c7a1095e49ca389629b3299f4b1b95d4824ac3b871b5"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "4ba74b8ba26ea1061c6671ebe3cae4ab",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 62937,
"upload_time": "2024-11-14T04:24:20",
"upload_time_iso_8601": "2024-11-14T04:24:20.791960Z",
"url": "https://files.pythonhosted.org/packages/86/21/39d38147a78c1a9d40c20f0be188d9832280a6853ee9a0801dcb05c32e32/shewchuk-6.10.0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d7e427071d26267257fe514800d159b2f9d4d7a101437e8d20e9a9a6539abf9",
"md5": "a43ec073d05382462c66b6bbd9dd7155",
"sha256": "1a6077fd25fa790859bca0d784c82a5f685ca5069b34b3efc200558d8aede77b"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "a43ec073d05382462c66b6bbd9dd7155",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 40213,
"upload_time": "2024-11-14T04:24:22",
"upload_time_iso_8601": "2024-11-14T04:24:22.809951Z",
"url": "https://files.pythonhosted.org/packages/8d/7e/427071d26267257fe514800d159b2f9d4d7a101437e8d20e9a9a6539abf9/shewchuk-6.10.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9064b97854421925daa4924fd2aad07ccee4127ed7eb9bb24b701dca0289e6a0",
"md5": "5468a92bb6575afe6d16068a4e5e1fa8",
"sha256": "93221afacfeeab81cf59a23517a679b5bdd5860beb6558ee7c24efd8c5d0bfa5"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5468a92bb6575afe6d16068a4e5e1fa8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 36147,
"upload_time": "2024-11-14T04:24:23",
"upload_time_iso_8601": "2024-11-14T04:24:23.829862Z",
"url": "https://files.pythonhosted.org/packages/90/64/b97854421925daa4924fd2aad07ccee4127ed7eb9bb24b701dca0289e6a0/shewchuk-6.10.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02447a55604d3c517c08ff55dbfa1123504dfb9d983c4b9b41f017460cf955b0",
"md5": "b60f91bd42e94dfca5d72d211f35eced",
"sha256": "cec9febf548285df3f8f01a2e1d5f9289b8addc2168c493cde3e777c646d35b7"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b60f91bd42e94dfca5d72d211f35eced",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 135492,
"upload_time": "2024-11-14T04:24:25",
"upload_time_iso_8601": "2024-11-14T04:24:25.636754Z",
"url": "https://files.pythonhosted.org/packages/02/44/7a55604d3c517c08ff55dbfa1123504dfb9d983c4b9b41f017460cf955b0/shewchuk-6.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7b7fea2bd772b1a9c55b9d42852dd9f3c5a00df819cf19a9fe33705f269448a5",
"md5": "9e5e5fcfecc9934fd5454078d150da6c",
"sha256": "7340969da93e4cdc6cfa30a177e3a082a7491fae2099fd0a25f0e7c22866542d"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9e5e5fcfecc9934fd5454078d150da6c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 149045,
"upload_time": "2024-11-14T04:24:27",
"upload_time_iso_8601": "2024-11-14T04:24:27.820704Z",
"url": "https://files.pythonhosted.org/packages/7b/7f/ea2bd772b1a9c55b9d42852dd9f3c5a00df819cf19a9fe33705f269448a5/shewchuk-6.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cb136acc3943ed81f31da1cec6e430741bacfc5289b6e31c5bb2a13e356333f",
"md5": "8c48e7aaf3ea42b781fb4449b867c897",
"sha256": "485aad4adc672f7f95d9f611dab68a000003a395d9db41b54ad4a1cf2a1b9e12"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8c48e7aaf3ea42b781fb4449b867c897",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 145080,
"upload_time": "2024-11-14T04:24:29",
"upload_time_iso_8601": "2024-11-14T04:24:29.749891Z",
"url": "https://files.pythonhosted.org/packages/6c/b1/36acc3943ed81f31da1cec6e430741bacfc5289b6e31c5bb2a13e356333f/shewchuk-6.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71bb7b628d160266082a81eeb6fc784ec4e4b22e21e2d856f31712f9e8e2a7bc",
"md5": "da2fb36d24af1b2de32053507a7064a2",
"sha256": "d523d1e97d4ffda5331b02a0996f778457f354b3017c62c743af692ba6d3c091"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "da2fb36d24af1b2de32053507a7064a2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 158500,
"upload_time": "2024-11-14T04:24:30",
"upload_time_iso_8601": "2024-11-14T04:24:30.889633Z",
"url": "https://files.pythonhosted.org/packages/71/bb/7b628d160266082a81eeb6fc784ec4e4b22e21e2d856f31712f9e8e2a7bc/shewchuk-6.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b16a24a34b1e37f1c5d111db43479d5a11277b62ed9ab7d350d8e17dbfd45c7c",
"md5": "9a98b70b1257d53038641939e5070e90",
"sha256": "1c501807fab6c96e5512796cda22cdf1a719ef1066266aa4ab91d0c29bf5e068"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "9a98b70b1257d53038641939e5070e90",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 141489,
"upload_time": "2024-11-14T04:24:32",
"upload_time_iso_8601": "2024-11-14T04:24:32.851130Z",
"url": "https://files.pythonhosted.org/packages/b1/6a/24a34b1e37f1c5d111db43479d5a11277b62ed9ab7d350d8e17dbfd45c7c/shewchuk-6.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1b1330708ecfbf8ca56cae2a632f9d33b2805e20210fe01283fbeb628fd9dd0b",
"md5": "3e953683fc63f8ff397626dbce3b2fa3",
"sha256": "65611ebec65d5e5e4345f662d89f251a900540289158cfc1c1c12569bf0ec114"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "3e953683fc63f8ff397626dbce3b2fa3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 136550,
"upload_time": "2024-11-14T04:24:34",
"upload_time_iso_8601": "2024-11-14T04:24:34.702719Z",
"url": "https://files.pythonhosted.org/packages/1b/13/30708ecfbf8ca56cae2a632f9d33b2805e20210fe01283fbeb628fd9dd0b/shewchuk-6.10.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7eff888ae7c0c119256ba76b14a53603bc789b54a6e33dc73ec4d177d338cacd",
"md5": "dd26731a7ed9da8756f5f6916f49868f",
"sha256": "2638d164e6c52649224d30ccf1cc01d3de6257621a909f174db72141cff66aca"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dd26731a7ed9da8756f5f6916f49868f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 158136,
"upload_time": "2024-11-14T04:24:35",
"upload_time_iso_8601": "2024-11-14T04:24:35.917606Z",
"url": "https://files.pythonhosted.org/packages/7e/ff/888ae7c0c119256ba76b14a53603bc789b54a6e33dc73ec4d177d338cacd/shewchuk-6.10.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb34ca8f154f6e9bfb55326be77fd1fc9b74b884275cd8ee71f2c633fc87cd3a",
"md5": "fd87f5694df22e043f17700d3bcd2059",
"sha256": "2c71bf3aa94a1ba83d4b41cbfc2653e5921a7fc984b91b2def2a4f5e1e43fb61"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "fd87f5694df22e043f17700d3bcd2059",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 35643,
"upload_time": "2024-11-14T04:24:37",
"upload_time_iso_8601": "2024-11-14T04:24:37.987690Z",
"url": "https://files.pythonhosted.org/packages/cb/34/ca8f154f6e9bfb55326be77fd1fc9b74b884275cd8ee71f2c633fc87cd3a/shewchuk-6.10.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5279ddccb3c047f0a66dd00f992d4557c6a8928216eb9daf633476ad1849e51e",
"md5": "9e77f2d8da8c19684734f4d94a8e8880",
"sha256": "60ef1102728915aea5a47fb3ce393d2aa1aa2cf3e0508d2a0ca256e21a84ec43"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "9e77f2d8da8c19684734f4d94a8e8880",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 39812,
"upload_time": "2024-11-14T04:24:39",
"upload_time_iso_8601": "2024-11-14T04:24:39.648152Z",
"url": "https://files.pythonhosted.org/packages/52/79/ddccb3c047f0a66dd00f992d4557c6a8928216eb9daf633476ad1849e51e/shewchuk-6.10.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb0dfecd15a7ad68097a23dbfdecd3965ae291cdc1c38cda9d8a004af5fdf579",
"md5": "da837dd4c0d1a84124cc29ff1bb2146d",
"sha256": "712da783519ee6d488ef7a2b28016361c9e5cb02f70854939f8575802c58a6a1"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "da837dd4c0d1a84124cc29ff1bb2146d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 62934,
"upload_time": "2024-11-14T04:24:40",
"upload_time_iso_8601": "2024-11-14T04:24:40.941463Z",
"url": "https://files.pythonhosted.org/packages/cb/0d/fecd15a7ad68097a23dbfdecd3965ae291cdc1c38cda9d8a004af5fdf579/shewchuk-6.10.0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7df244238917fb3347b78d768a34d93990dd45b12ab7d12d4a2f2e091782b1f8",
"md5": "c787014b02680282d3f016d023496dce",
"sha256": "3d21a6219f56fe4c6f90fca69ecebbd4054cd3a69a1766f784394189b9425684"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "c787014b02680282d3f016d023496dce",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 40214,
"upload_time": "2024-11-14T04:24:42",
"upload_time_iso_8601": "2024-11-14T04:24:42.580559Z",
"url": "https://files.pythonhosted.org/packages/7d/f2/44238917fb3347b78d768a34d93990dd45b12ab7d12d4a2f2e091782b1f8/shewchuk-6.10.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03c74734feec292c430e3672aa5e287e72b140dc4c7566f026c792256703bb61",
"md5": "ff53c83f5811390f42b16f94a98eb7c0",
"sha256": "202f15ce44d240865ac31a5d239df5ff689d7d2f549331787bdb84217434bb54"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ff53c83f5811390f42b16f94a98eb7c0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 36153,
"upload_time": "2024-11-14T04:24:44",
"upload_time_iso_8601": "2024-11-14T04:24:44.217574Z",
"url": "https://files.pythonhosted.org/packages/03/c7/4734feec292c430e3672aa5e287e72b140dc4c7566f026c792256703bb61/shewchuk-6.10.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13e47f438a93b57b722e2538421b76ddd6d9cd0b88c016f382b3f65043aed03b",
"md5": "4151428b5c1d38ef92dfb33cedb9978c",
"sha256": "35c3e206da08dc910f7269bb87b9d844df69c19952b4dcc247cf8895cf0167b2"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4151428b5c1d38ef92dfb33cedb9978c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 137229,
"upload_time": "2024-11-14T04:24:45",
"upload_time_iso_8601": "2024-11-14T04:24:45.231136Z",
"url": "https://files.pythonhosted.org/packages/13/e4/7f438a93b57b722e2538421b76ddd6d9cd0b88c016f382b3f65043aed03b/shewchuk-6.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e11c7743f563ee624692bb9d28a9c9f35e9a97596a3b7fb7e9cc6e15e4c82c16",
"md5": "3133468d8711857ac113442e65ce6456",
"sha256": "614dc79d3fa64b644bcb87037d60f394e3fc9c95452b3fb3af534380abb8672e"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "3133468d8711857ac113442e65ce6456",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 150853,
"upload_time": "2024-11-14T04:24:46",
"upload_time_iso_8601": "2024-11-14T04:24:46.432979Z",
"url": "https://files.pythonhosted.org/packages/e1/1c/7743f563ee624692bb9d28a9c9f35e9a97596a3b7fb7e9cc6e15e4c82c16/shewchuk-6.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81dfea43e8c248fc03e8e3df76d06c158c5318d02d8cdf6712fefdf7c0c0b688",
"md5": "cafbedb30a05a7bfe0b4c7f1181bde12",
"sha256": "279f0363d163f0ffeb54a9b0576bac230477393b868db4d84c7eb322efbed04d"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "cafbedb30a05a7bfe0b4c7f1181bde12",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 146784,
"upload_time": "2024-11-14T04:24:47",
"upload_time_iso_8601": "2024-11-14T04:24:47.598629Z",
"url": "https://files.pythonhosted.org/packages/81/df/ea43e8c248fc03e8e3df76d06c158c5318d02d8cdf6712fefdf7c0c0b688/shewchuk-6.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7585b92f3ae85bd0c43ea9fb92be545d6bc72b39deab8617063ade193536ae8a",
"md5": "16b3c707ed52fc53a5702a4fdb1ba868",
"sha256": "9d9b3c9433d3429db036164701d872d2469d3fc437a1e00bf3b28ed2197e13e1"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "16b3c707ed52fc53a5702a4fdb1ba868",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 160329,
"upload_time": "2024-11-14T04:24:49",
"upload_time_iso_8601": "2024-11-14T04:24:49.466746Z",
"url": "https://files.pythonhosted.org/packages/75/85/b92f3ae85bd0c43ea9fb92be545d6bc72b39deab8617063ade193536ae8a/shewchuk-6.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3143a5127d09665c0e3206802e8423bd97897a2259f8f7212850ebaab8b5cad",
"md5": "833bb947f843a111886f375778b3544f",
"sha256": "f943b43666ebf20b552a3d924b8338992c6f32f6cb127bcb80d98190b3bd6bee"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "833bb947f843a111886f375778b3544f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 143268,
"upload_time": "2024-11-14T04:24:51",
"upload_time_iso_8601": "2024-11-14T04:24:51.369765Z",
"url": "https://files.pythonhosted.org/packages/e3/14/3a5127d09665c0e3206802e8423bd97897a2259f8f7212850ebaab8b5cad/shewchuk-6.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e42dc2fb64f78b7c84993dc66f9003cdc9090c3d9568abcb66cd343c59c6e84e",
"md5": "4fb715ffe657210693906bea76eb3af0",
"sha256": "7cd5f8d58bc9e05dca62303b8a04bcf45687b37b0a28143397a5688c58613841"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "4fb715ffe657210693906bea76eb3af0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 138192,
"upload_time": "2024-11-14T04:24:52",
"upload_time_iso_8601": "2024-11-14T04:24:52.758235Z",
"url": "https://files.pythonhosted.org/packages/e4/2d/c2fb64f78b7c84993dc66f9003cdc9090c3d9568abcb66cd343c59c6e84e/shewchuk-6.10.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf3cb3f999c5650a69eaa8df4d52f9920b3f69e39d0ab9d56efd3aceecf63d61",
"md5": "6f05e58cf06f174d6d49a90524507369",
"sha256": "475fa615c7a6901b3d65a584cde1ba3b24667879dd80f34b1d66bf73fade463c"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6f05e58cf06f174d6d49a90524507369",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 159896,
"upload_time": "2024-11-14T04:24:53",
"upload_time_iso_8601": "2024-11-14T04:24:53.903605Z",
"url": "https://files.pythonhosted.org/packages/bf/3c/b3f999c5650a69eaa8df4d52f9920b3f69e39d0ab9d56efd3aceecf63d61/shewchuk-6.10.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69c5d67870beec8e535676fae84c95cdfe7451c571c00e374219591c794df392",
"md5": "3b096f2d3b65d4b8ffea50184c8204db",
"sha256": "6ad5f5abd9bc2222c34693c7b57abb5b73391ccc1417b0964c809f52fcd2b4b2"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "3b096f2d3b65d4b8ffea50184c8204db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 35647,
"upload_time": "2024-11-14T04:24:55",
"upload_time_iso_8601": "2024-11-14T04:24:55.003621Z",
"url": "https://files.pythonhosted.org/packages/69/c5/d67870beec8e535676fae84c95cdfe7451c571c00e374219591c794df392/shewchuk-6.10.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d1c3ddca1cb5eb3a93cc7ee1e999b1e36bcab57fe1880906c15ba5d414025168",
"md5": "8c1a737baaeb1c5b5a85abd9b7cbc0db",
"sha256": "0444e5dd75f6d429c561a108706aebc8b45f7ea5eb391f8023ccd7cc01a74f6a"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "8c1a737baaeb1c5b5a85abd9b7cbc0db",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 39819,
"upload_time": "2024-11-14T04:24:55",
"upload_time_iso_8601": "2024-11-14T04:24:55.983984Z",
"url": "https://files.pythonhosted.org/packages/d1/c3/ddca1cb5eb3a93cc7ee1e999b1e36bcab57fe1880906c15ba5d414025168/shewchuk-6.10.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46839227c1f0170beabeebdd38aafd603dcc6ce3d1b4ca9a920c4193613e46e3",
"md5": "9b61aac239c916760bdcc17e2dbd6ec1",
"sha256": "691748c5689b5d9382b9684856df03859b571a11cf3479049f940bb94080d2b7"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "9b61aac239c916760bdcc17e2dbd6ec1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 63062,
"upload_time": "2024-11-14T04:24:57",
"upload_time_iso_8601": "2024-11-14T04:24:57.588296Z",
"url": "https://files.pythonhosted.org/packages/46/83/9227c1f0170beabeebdd38aafd603dcc6ce3d1b4ca9a920c4193613e46e3/shewchuk-6.10.0-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92a0f057ccd54276e88c43dc94892f9c6b02d16198243f0f93ba38eabfc155c4",
"md5": "8502c3f433deca68e865e59ee5efa3ba",
"sha256": "742f2706d77b6d4446b2a2315ce74290ffe02b6bce3165d33b85a7c1a8071d7f"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "8502c3f433deca68e865e59ee5efa3ba",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 40435,
"upload_time": "2024-11-14T04:24:58",
"upload_time_iso_8601": "2024-11-14T04:24:58.618562Z",
"url": "https://files.pythonhosted.org/packages/92/a0/f057ccd54276e88c43dc94892f9c6b02d16198243f0f93ba38eabfc155c4/shewchuk-6.10.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fbf02489e47e27bb86a1b6675aac73cffd4c8b9cb8502e64020f560795c615e3",
"md5": "84b3df23af38cc339e0a8b3d91386612",
"sha256": "189de15e246674569ef8b4ca7f202ed4678d9df509cee2d47a4d8f6b3d0e8339"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "84b3df23af38cc339e0a8b3d91386612",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 36074,
"upload_time": "2024-11-14T04:24:59",
"upload_time_iso_8601": "2024-11-14T04:24:59.594608Z",
"url": "https://files.pythonhosted.org/packages/fb/f0/2489e47e27bb86a1b6675aac73cffd4c8b9cb8502e64020f560795c615e3/shewchuk-6.10.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a8716401551a6b56396aa5dd68a236e20cb74f0d1cb562fff05d6dfe2d3fc64",
"md5": "e377b2c07b4585008b0e04d8f113aad7",
"sha256": "5174b9c37aef9ef7aab9ec36ddc6dc1ff2d0dc0bc0bb8e6f3b7beb1cdca6c1db"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e377b2c07b4585008b0e04d8f113aad7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 139817,
"upload_time": "2024-11-14T04:25:00",
"upload_time_iso_8601": "2024-11-14T04:25:00.643925Z",
"url": "https://files.pythonhosted.org/packages/1a/87/16401551a6b56396aa5dd68a236e20cb74f0d1cb562fff05d6dfe2d3fc64/shewchuk-6.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cec326cb4739bbc0df8201e5f473308a609e2a32fd033abc15625e95f84b9f59",
"md5": "adcc1cd18751f073f021d9b70ccfb795",
"sha256": "ee1e78b747e5d136422eb5f16e8c8e981a1f58a3e332642b6870230be927d224"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "adcc1cd18751f073f021d9b70ccfb795",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 153667,
"upload_time": "2024-11-14T04:25:01",
"upload_time_iso_8601": "2024-11-14T04:25:01.926884Z",
"url": "https://files.pythonhosted.org/packages/ce/c3/26cb4739bbc0df8201e5f473308a609e2a32fd033abc15625e95f84b9f59/shewchuk-6.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aac4a576a80121c6e7d2166260523e7dc5d738629f31f18dd2febea7b77c9860",
"md5": "8e01ac360cfccd8ebe2592783fe3ed35",
"sha256": "ba830a28b9ce9b94113ef829ce73c308ae22bbf46e2fef398ee5bb07811c2784"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8e01ac360cfccd8ebe2592783fe3ed35",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 149726,
"upload_time": "2024-11-14T04:25:03",
"upload_time_iso_8601": "2024-11-14T04:25:03.100175Z",
"url": "https://files.pythonhosted.org/packages/aa/c4/a576a80121c6e7d2166260523e7dc5d738629f31f18dd2febea7b77c9860/shewchuk-6.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "783224efd14ab82cb37dd509a936b5997e23bc9203f2d3533396f3f9e59369cc",
"md5": "3b753c60d5ffb8c29b27dc9ff1c5c36f",
"sha256": "a39864675844fd9fb29f8db2078e120d6e375361d32cd36e3f57c368743fb5c5"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3b753c60d5ffb8c29b27dc9ff1c5c36f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 163314,
"upload_time": "2024-11-14T04:25:06",
"upload_time_iso_8601": "2024-11-14T04:25:06.012565Z",
"url": "https://files.pythonhosted.org/packages/78/32/24efd14ab82cb37dd509a936b5997e23bc9203f2d3533396f3f9e59369cc/shewchuk-6.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7fd2d7e5572fb767b81f9a6522adb9caee7e8c0f3bdee819863f11000dc1f816",
"md5": "df81eb7d7ac4586d549135e4325738d0",
"sha256": "e937941dd002261a6e28303ffcd5b7f1caa38ddfff0a5f03307caa04c60f7249"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "df81eb7d7ac4586d549135e4325738d0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 145505,
"upload_time": "2024-11-14T04:25:07",
"upload_time_iso_8601": "2024-11-14T04:25:07.805067Z",
"url": "https://files.pythonhosted.org/packages/7f/d2/d7e5572fb767b81f9a6522adb9caee7e8c0f3bdee819863f11000dc1f816/shewchuk-6.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8a5eed0295667d4597fb9a00ce1c7e3ac2c231f0756abad32695c28d8cb222f6",
"md5": "6a820a97e42da13877aebdaaf7c8da84",
"sha256": "e274a9fd6bfc03370c5e7cd8edf9e5fe281e537b9aef3d755bb41a91ab8f188e"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6a820a97e42da13877aebdaaf7c8da84",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 140668,
"upload_time": "2024-11-14T04:25:09",
"upload_time_iso_8601": "2024-11-14T04:25:09.652320Z",
"url": "https://files.pythonhosted.org/packages/8a/5e/ed0295667d4597fb9a00ce1c7e3ac2c231f0756abad32695c28d8cb222f6/shewchuk-6.10.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c22ab1711384fbed89f0394d827182361c6a1131282fd784eb5495621762da28",
"md5": "546dd34e09c12c3104d8c2875213684f",
"sha256": "57bdc9f47393f5180d98f71713a5628596317cba188b1ea78d76cae2fb575d66"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "546dd34e09c12c3104d8c2875213684f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 162561,
"upload_time": "2024-11-14T04:25:10",
"upload_time_iso_8601": "2024-11-14T04:25:10.770926Z",
"url": "https://files.pythonhosted.org/packages/c2/2a/b1711384fbed89f0394d827182361c6a1131282fd784eb5495621762da28/shewchuk-6.10.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e974558760fe47ff536c0b5075d861cd2d1e3e2582219cbfc6735bc1761bc04",
"md5": "c0688b30ff372c9fc4dee6a0e22d5fb1",
"sha256": "7f2185c41cf81e24491a1fe8663bf05231989fba53b8855c9abc67b54a5a80a0"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "c0688b30ff372c9fc4dee6a0e22d5fb1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 35779,
"upload_time": "2024-11-14T04:25:11",
"upload_time_iso_8601": "2024-11-14T04:25:11.832945Z",
"url": "https://files.pythonhosted.org/packages/4e/97/4558760fe47ff536c0b5075d861cd2d1e3e2582219cbfc6735bc1761bc04/shewchuk-6.10.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4008dd6589c66a2ee40444775509c0d7054c416da623d14eecd1e3e11a5cc688",
"md5": "e5599783be2f7dcdc1b7a0d8c58ad6d1",
"sha256": "2c41462b2b56c663e65ee99a08f933c8f7ea6f8e43e7529377261d3cd93d7af5"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "e5599783be2f7dcdc1b7a0d8c58ad6d1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 40037,
"upload_time": "2024-11-14T04:25:12",
"upload_time_iso_8601": "2024-11-14T04:25:12.809372Z",
"url": "https://files.pythonhosted.org/packages/40/08/dd6589c66a2ee40444775509c0d7054c416da623d14eecd1e3e11a5cc688/shewchuk-6.10.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d4e28753804c75db5799c2407cc18cfdfeb1280a29104b4e8cca78b374218d7d",
"md5": "17d46fe5d3b1fe7b2ce7283862f93cc1",
"sha256": "f9105c75aae4ca3a5ad5c4d5c85ffd2f9a617f7e05eb8f49f007818576f20a20"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "17d46fe5d3b1fe7b2ce7283862f93cc1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 63049,
"upload_time": "2024-11-14T04:25:13",
"upload_time_iso_8601": "2024-11-14T04:25:13.766019Z",
"url": "https://files.pythonhosted.org/packages/d4/e2/8753804c75db5799c2407cc18cfdfeb1280a29104b4e8cca78b374218d7d/shewchuk-6.10.0-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8152bd91034173591cd240245fbe775d6398d90705df53f1b3348c53fa6954e8",
"md5": "649274c2e07e3cffd7f1fcec0010e8d4",
"sha256": "6430dc05a42ffe9819b54b793f9a66a64c15736a81a76ebfb79c50809d9d9879"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "649274c2e07e3cffd7f1fcec0010e8d4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 40442,
"upload_time": "2024-11-14T04:25:14",
"upload_time_iso_8601": "2024-11-14T04:25:14.811415Z",
"url": "https://files.pythonhosted.org/packages/81/52/bd91034173591cd240245fbe775d6398d90705df53f1b3348c53fa6954e8/shewchuk-6.10.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "64fb2191ae412954c99c60f91f4e8abc0fa9e4715f6d6e371fea79830a2eed58",
"md5": "964ad11ad5dd418bafc78bc868dff0b7",
"sha256": "5cca59f2f7ffdf707bc4c7acf778d3a689334acc8faa61317a4b31ad54ce06b0"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "964ad11ad5dd418bafc78bc868dff0b7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 36055,
"upload_time": "2024-11-14T04:25:16",
"upload_time_iso_8601": "2024-11-14T04:25:16.479432Z",
"url": "https://files.pythonhosted.org/packages/64/fb/2191ae412954c99c60f91f4e8abc0fa9e4715f6d6e371fea79830a2eed58/shewchuk-6.10.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "86a2aed5bcd1d802d983243571c71db00f6366931415e0a17edabefb602d7f5a",
"md5": "0e7c80fe580201ad3485ad01dd2c17c5",
"sha256": "0de608de12ae57985bb3f92d740d2783863e91dbf35dc97718a46387415c9b48"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0e7c80fe580201ad3485ad01dd2c17c5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 139754,
"upload_time": "2024-11-14T04:25:18",
"upload_time_iso_8601": "2024-11-14T04:25:18.186599Z",
"url": "https://files.pythonhosted.org/packages/86/a2/aed5bcd1d802d983243571c71db00f6366931415e0a17edabefb602d7f5a/shewchuk-6.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f89e162b964ed2a59c1c66861cc5837426ceb258ec1b426cc6a10cd115949bd8",
"md5": "53eaee7fab1d051710da20f6e2de4eea",
"sha256": "507758fb1d092de7624b2c6114a77e132c7a29680f5dfb608f8f4ea36801d4f7"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "53eaee7fab1d051710da20f6e2de4eea",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 153621,
"upload_time": "2024-11-14T04:25:20",
"upload_time_iso_8601": "2024-11-14T04:25:20.109557Z",
"url": "https://files.pythonhosted.org/packages/f8/9e/162b964ed2a59c1c66861cc5837426ceb258ec1b426cc6a10cd115949bd8/shewchuk-6.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "465a5f84e3ccd6441975c3b06ced666d1dc6496ff7889b36436043781ea58fd7",
"md5": "8d80451f0cbda25d9288c21d9d4010b5",
"sha256": "3715f0a3037b55641773d376220f44e8231186dc5263338e3916cac29bb6f1e8"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "8d80451f0cbda25d9288c21d9d4010b5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 149766,
"upload_time": "2024-11-14T04:25:22",
"upload_time_iso_8601": "2024-11-14T04:25:22.922171Z",
"url": "https://files.pythonhosted.org/packages/46/5a/5f84e3ccd6441975c3b06ced666d1dc6496ff7889b36436043781ea58fd7/shewchuk-6.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "961ba78755aceeedbe464fdafe44264a1211ab80ef8248eea3a1063efd9a17f1",
"md5": "32bcd14f85421ee8f45e94952c767a01",
"sha256": "5bb77da9c57ce43e134c37b1713511ab3b7b3bd3b70b31db1e92ff8fff7deb13"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "32bcd14f85421ee8f45e94952c767a01",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 163228,
"upload_time": "2024-11-14T04:25:24",
"upload_time_iso_8601": "2024-11-14T04:25:24.635435Z",
"url": "https://files.pythonhosted.org/packages/96/1b/a78755aceeedbe464fdafe44264a1211ab80ef8248eea3a1063efd9a17f1/shewchuk-6.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46e6eca0080f3d54ac8ab752e1c68136bcbd99e32e655c269f9c6e168fc6110f",
"md5": "5c5fe0b6eef0f74db42e8fc0f846f4c6",
"sha256": "b239d6d806d185700c12d6aeb6d2fc3c9971c5e4fce1f2b609826b8641e280b4"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5c5fe0b6eef0f74db42e8fc0f846f4c6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 145445,
"upload_time": "2024-11-14T04:25:25",
"upload_time_iso_8601": "2024-11-14T04:25:25.903126Z",
"url": "https://files.pythonhosted.org/packages/46/e6/eca0080f3d54ac8ab752e1c68136bcbd99e32e655c269f9c6e168fc6110f/shewchuk-6.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09ebe6baac81c406849c1a1bc81fe62bf52bdb271c1a0ff5df50bde486189871",
"md5": "cf3fe812762f922abda040a0a3cbfcc4",
"sha256": "d261af4fea7e8c37de562733bbfff815d4277f0cfe65188873ebae0c45404856"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "cf3fe812762f922abda040a0a3cbfcc4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 140645,
"upload_time": "2024-11-14T04:25:27",
"upload_time_iso_8601": "2024-11-14T04:25:27.094351Z",
"url": "https://files.pythonhosted.org/packages/09/eb/e6baac81c406849c1a1bc81fe62bf52bdb271c1a0ff5df50bde486189871/shewchuk-6.10.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cd0bd79d07fb25ad7dc60a3544ffd7aecd0f2e2fce9677e41c927446a16626cd",
"md5": "ee88bed053caa2b79455ab55f76ea48f",
"sha256": "6db43045a500c766a275303bc04891b614cb7a73e4b0813bb2439df64ab6203d"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ee88bed053caa2b79455ab55f76ea48f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 162575,
"upload_time": "2024-11-14T04:25:28",
"upload_time_iso_8601": "2024-11-14T04:25:28.932046Z",
"url": "https://files.pythonhosted.org/packages/cd/0b/d79d07fb25ad7dc60a3544ffd7aecd0f2e2fce9677e41c927446a16626cd/shewchuk-6.10.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e5a3cbf9bad81b704c6393074801b491b5e404cc43e312dcd0a093462166bbe",
"md5": "98abfb85fb4cb2471f7b07feffbd5bb3",
"sha256": "982f8e4a127527d477e93815b1f542bc8b6f1cd853d33a7e5906646efc14ef5d"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "98abfb85fb4cb2471f7b07feffbd5bb3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 35777,
"upload_time": "2024-11-14T04:25:30",
"upload_time_iso_8601": "2024-11-14T04:25:30.129105Z",
"url": "https://files.pythonhosted.org/packages/8e/5a/3cbf9bad81b704c6393074801b491b5e404cc43e312dcd0a093462166bbe/shewchuk-6.10.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "baf6796e0d91eff05ff1e682507fc7e19684045fa6f67bf71231db2d21ce13c5",
"md5": "40f7ea0ed1bfccd8318478f1c5ee9a72",
"sha256": "0259fd9d9ff2c100de34e9ec8b2337314c2bcfe496c4d25fd9ba6fc31b7f8ee5"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "40f7ea0ed1bfccd8318478f1c5ee9a72",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 40029,
"upload_time": "2024-11-14T04:25:31",
"upload_time_iso_8601": "2024-11-14T04:25:31.774268Z",
"url": "https://files.pythonhosted.org/packages/ba/f6/796e0d91eff05ff1e682507fc7e19684045fa6f67bf71231db2d21ce13c5/shewchuk-6.10.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f7dc33f2f6d4e65bb7363637bec42a6fc3e2bc480ed0b6529e76f4f7e9732e4",
"md5": "bf7a07a8572c8fc7b15087c53b880ece",
"sha256": "40126bdee8ca3cb19b0fc21671c43da60ee06fba8de5a55f30857b1cb0d2c0af"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "bf7a07a8572c8fc7b15087c53b880ece",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 64161,
"upload_time": "2024-11-14T04:25:33",
"upload_time_iso_8601": "2024-11-14T04:25:33.486227Z",
"url": "https://files.pythonhosted.org/packages/9f/7d/c33f2f6d4e65bb7363637bec42a6fc3e2bc480ed0b6529e76f4f7e9732e4/shewchuk-6.10.0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d1c0d3aa5c1e1f06e3b36131c8efc52f23262ece243b571fa72ad2a367daa528",
"md5": "8524b287e4029e18f68561d07c9c5bec",
"sha256": "5912ad9ddb9072cf829c3309a27581986171e77d6de89d1f4757b4a531f10814"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8524b287e4029e18f68561d07c9c5bec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 40866,
"upload_time": "2024-11-14T04:25:34",
"upload_time_iso_8601": "2024-11-14T04:25:34.572872Z",
"url": "https://files.pythonhosted.org/packages/d1/c0/d3aa5c1e1f06e3b36131c8efc52f23262ece243b571fa72ad2a367daa528/shewchuk-6.10.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f73804f54b645fd549ff06f450972d096d5ba075f7e5f9f9ccbbce9712f3e9a",
"md5": "6157fef5d1e8493772e943e83693baa6",
"sha256": "c1d72faebe88cb32f5baa4ce6d61f7b00a3628a1f4ecb3901e5a4c677e7c786f"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6157fef5d1e8493772e943e83693baa6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 36713,
"upload_time": "2024-11-14T04:25:36",
"upload_time_iso_8601": "2024-11-14T04:25:36.246811Z",
"url": "https://files.pythonhosted.org/packages/8f/73/804f54b645fd549ff06f450972d096d5ba075f7e5f9f9ccbbce9712f3e9a/shewchuk-6.10.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5b73cd03f0b776a689dd2be62d966113b79fab8804bc53f04ac99a9b66bd0906",
"md5": "680b5a1eb12348c0e568d6961fe16332",
"sha256": "8865d14c1f0993e0333b98ab0320216c8ff8af58f2e047279f588edab1abb98d"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "680b5a1eb12348c0e568d6961fe16332",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 134884,
"upload_time": "2024-11-14T04:25:37",
"upload_time_iso_8601": "2024-11-14T04:25:37.282041Z",
"url": "https://files.pythonhosted.org/packages/5b/73/cd03f0b776a689dd2be62d966113b79fab8804bc53f04ac99a9b66bd0906/shewchuk-6.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0136b674c898b0f3fa146955d661d8564185a6f01ac5cb72bd464cce258179f3",
"md5": "95fc07d23910fb22199490d950b13321",
"sha256": "9bd5b0b4fce5d86f1f0f90e788db660c1b3c93c2483070e5f322ba744d3a41d6"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "95fc07d23910fb22199490d950b13321",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 148490,
"upload_time": "2024-11-14T04:25:38",
"upload_time_iso_8601": "2024-11-14T04:25:38.628045Z",
"url": "https://files.pythonhosted.org/packages/01/36/b674c898b0f3fa146955d661d8564185a6f01ac5cb72bd464cce258179f3/shewchuk-6.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6b0b08fe00478e20214626a5ebfdea2c1bdbe9ea42a60c5f3af394abee36224",
"md5": "a58b4a407516f930bc75d5d2a4597992",
"sha256": "00a1fc4ee77d1956d4e4191340b942b5d4bcc456e85f05f2d7efb1393d2c80cc"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "a58b4a407516f930bc75d5d2a4597992",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 144759,
"upload_time": "2024-11-14T04:25:40",
"upload_time_iso_8601": "2024-11-14T04:25:40.603596Z",
"url": "https://files.pythonhosted.org/packages/c6/b0/b08fe00478e20214626a5ebfdea2c1bdbe9ea42a60c5f3af394abee36224/shewchuk-6.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09e53f2cdc9a27f5b2149335126d25ba781e0028ba36ed5d789c837e3b68a405",
"md5": "6b77518f98dae7cb87c2358b0b477b6a",
"sha256": "efddfbb24992a716d2e7cde4188375d344df03cd69d85415d0169c524b3bd4ef"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6b77518f98dae7cb87c2358b0b477b6a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 157493,
"upload_time": "2024-11-14T04:25:41",
"upload_time_iso_8601": "2024-11-14T04:25:41.888189Z",
"url": "https://files.pythonhosted.org/packages/09/e5/3f2cdc9a27f5b2149335126d25ba781e0028ba36ed5d789c837e3b68a405/shewchuk-6.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21a67d48d2dae5ce7e90d1d5f5678e2bc0f4e4afe0096cfbd7f18fb9ba1adbb3",
"md5": "4100fe46267d680ceb0fb7608b27ab23",
"sha256": "fa4eb61c84e5266c1ae29c4d8191edff5a7643e4ce731984d80220ae3d825547"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4100fe46267d680ceb0fb7608b27ab23",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 140483,
"upload_time": "2024-11-14T04:25:43",
"upload_time_iso_8601": "2024-11-14T04:25:43.162422Z",
"url": "https://files.pythonhosted.org/packages/21/a6/7d48d2dae5ce7e90d1d5f5678e2bc0f4e4afe0096cfbd7f18fb9ba1adbb3/shewchuk-6.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6318fd381a5df027c70497e86c9727d983bcaf58f8e73356da68c9a42511e5ea",
"md5": "fb3a3c5f4a0a2e7a4be8c83d8bd9ff51",
"sha256": "e2e842382e021f1437f592f28be4dd86b36b40db4a63f8ea3bdf00756d9fbcd1"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "fb3a3c5f4a0a2e7a4be8c83d8bd9ff51",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 135523,
"upload_time": "2024-11-14T04:25:44",
"upload_time_iso_8601": "2024-11-14T04:25:44.359292Z",
"url": "https://files.pythonhosted.org/packages/63/18/fd381a5df027c70497e86c9727d983bcaf58f8e73356da68c9a42511e5ea/shewchuk-6.10.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1ad30bfdaeeea9631e781c241a7e75549564f9dad24d59aeb3846bdb0547060",
"md5": "1bcbf948a85fe57b7858f924f7179376",
"sha256": "47a08dbc6de319abf0decc0f572f51b1d1de4a9a76a5542b2ece9ccf6d642bff"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1bcbf948a85fe57b7858f924f7179376",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 157419,
"upload_time": "2024-11-14T04:25:45",
"upload_time_iso_8601": "2024-11-14T04:25:45.548750Z",
"url": "https://files.pythonhosted.org/packages/b1/ad/30bfdaeeea9631e781c241a7e75549564f9dad24d59aeb3846bdb0547060/shewchuk-6.10.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "38995f4b97180d70fcb966b83238f05f3defae1572af3897bec645f8f7159b3a",
"md5": "3ddf45e2f2318fcd5d2ebcc117440ce2",
"sha256": "da8a7aa04b415632f55bb5bf5908d7cc2a135e2765f0cf20dcbbe13c4d77ede6"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "3ddf45e2f2318fcd5d2ebcc117440ce2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 35647,
"upload_time": "2024-11-14T04:25:46",
"upload_time_iso_8601": "2024-11-14T04:25:46.738647Z",
"url": "https://files.pythonhosted.org/packages/38/99/5f4b97180d70fcb966b83238f05f3defae1572af3897bec645f8f7159b3a/shewchuk-6.10.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db2f51f33c1e830f338c45d82b3d85ce0b1f17ed7874abaaf45d6c42f01f3c66",
"md5": "59d98d80a3d2bb0af3bb8141e286f256",
"sha256": "2a14045741488929d8410ba899670d284027ecb66ecd709661821b7eac7cad94"
},
"downloads": -1,
"filename": "shewchuk-6.10.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "59d98d80a3d2bb0af3bb8141e286f256",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 39659,
"upload_time": "2024-11-14T04:25:47",
"upload_time_iso_8601": "2024-11-14T04:25:47.801318Z",
"url": "https://files.pythonhosted.org/packages/db/2f/51f33c1e830f338c45d82b3d85ce0b1f17ed7874abaaf45d6c42f01f3c66/shewchuk-6.10.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fa46aad9cc9c037dfdc4129b634007af8f35ef198fb261690e2e032f2e88cab",
"md5": "395a9f60318fa4345a4fcdb27af432cb",
"sha256": "cb6bd748a3d65990e9acef254785161c6441f9b6b2c9a1e8806ea22d407dabfc"
},
"downloads": -1,
"filename": "shewchuk-6.10.0.tar.gz",
"has_sig": false,
"md5_digest": "395a9f60318fa4345a4fcdb27af432cb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 32066,
"upload_time": "2024-11-14T04:25:48",
"upload_time_iso_8601": "2024-11-14T04:25:48.799947Z",
"url": "https://files.pythonhosted.org/packages/3f/a4/6aad9cc9c037dfdc4129b634007af8f35ef198fb261690e2e032f2e88cab/shewchuk-6.10.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-14 04:25:48",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "lycantropos",
"github_project": "shewchuk",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "shewchuk"
}