YOGA - Yummy Optimizer for Gorgeous Assets
==========================================
|Github| |Discord| |PYPI Version| |Build Status| |Black| |License|
.. figure:: https://github.com/wanadev/yoga/raw/master/logo.png
:alt:
**YOGA** is a command-line tool and a library that can:
* convert and optimize images from various format to JPEG, PNG and WEBP,
* convert and optimize 3D models from various formats to `glTF and GLB`_.
**Images** are opened using Pillow_ and optimized using Guetzli_ and MozJPEG_
for JPEGs, Zopflipng_ for PNGs and libwebp_ for WEBPs.
**3D Models** are converted and optimized using assimp_. If models contain or
reference images, they are processed by YOGA's image optimizer.
EXAMPLE: Converting and optimizing an image from CLI::
yoga image input.png output.png
yoga image --output-format=jpeg --jpeg-quality=84 input.png output.jpg
yoga image --help
EXAMPLE: Converting and optimizing a 3D model from CLI::
yoga model input.fbx output.glb
yoga model --no-graph-optimization --no-meshes-optimization --image-output-format=jpeg --image-jpeg-quality=84 input.fbx output.glb
yoga model --help
.. _glTF and GLB: https://www.khronos.org/gltf/
.. _Pillow: https://github.com/python-pillow/Pillow
.. _Guetzli: https://github.com/google/guetzli
.. _MozJPEG: https://github.com/mozilla/mozjpeg
.. _Zopflipng: https://github.com/google/zopfli
.. _libwebp: https://chromium.googlesource.com/webm/libwebp/
.. _assimp: https://github.com/assimp/assimp
Install
-------
* See `the install section of the documentation <https://wanadev.github.io/yoga/install.html>`_
Documentation
-------------
* `Command Line Interface (CLI) <https://wanadev.github.io/yoga/cli/index.html>`_
* `Python API <https://wanadev.github.io/yoga/python/index.html>`_
* `Contributing <https://wanadev.github.io/yoga/contributing.html>`_
Changelog
---------
* **[NEXT]** (changes on ``master`` that have not been released yet):
* Nothing yet ;)
* **v1.3.3:**
* fix(build): Added missing setuptools versions pinning that break the PyPy builds (@flozz)
* **v1.3.2 / v1.3.2-1:**
* fix(build): Fixed Windows build with recent setuptools versions (@flozz)
* fix(release): Updated, fixed and improved standalone build scripts and CI (@flozz)
* misc: Added Python 3.13 support (@flozz)
* misc!: Removed Python 3.8 support (@flozz)
* **v1.3.1-1:**
* This version has no code change from the v1.3.1. It is only an update of
the distribution :
* A brand new standalone version was build for Linux
* The Windows standalone distribution was updated (changes in documentation)
* dist: Added scripts to build a standalone binary version of YOGA on Linux
* **v1.3.1:**
* chore(sdist): Fixed included files in sdist package (@flozz)
* **v1.3.0:**
* feat(assimp): Updated assimp to v5.3.1 (fixed build on GCC >= 13) (@flozz)
* chore: Removed a script that is no more needed (@flozz)
* docs: Updated contributing documentation (libraries, supported Python
version, assimp update) (@flozz)
* **v1.2.3:**
* Code quality: more robust type comparison (@flozz)
* Code quality: cleanup some Python 2.7 specific code (@flozz)
* Added Python 3.12 support (@flozz)
* Removed Python 3.7 support (@flozz)
* **v1.2.2:**
* Updated the code to not use deprecated constants on newer Pillow versions
* Various typo fixed (@kianmeng, #45)
* Added Python 3.11 support
* **v1.2.1:**
* No change: fix an upload error on PYPI
* **v1.2.0:**
* Add color quantization options (based on libimagequant)
* ``arm64`` and ``universal2`` wheels for macOS
* ``x86`` and ``x68_64`` wheels for musl-based Linux distro (Alpine,...)
* **MAINTAINERS:** New dependency: `imagequant <https://github.com/wanadev/imagequant-python>`_
* **v1.1.2:**
* Add flag to CFFI builder to fix MacOS build
* **v1.1.1 (not published):**
* JPEG: ignore invalid values for the orientation tag (#38)
* Python 3.10 support and wheels
* **v1.1.0:**
* **JPEG Optimization:**
* Honor the JPEG orientation EXIF tag
* JPEG optimization has been improved by using some optimizations from
MozJPEG after the Guetzli encoding (from 2.4 % to 7.3 % of additional size
reduction)
* **PNG Optimization:**
* YOGA can no more output a PNG larger than the input one when performing
a PNG to PNG optimization
* **CLI:**
* Allow to cancel an optimization using Ctrl+C (NOTE: may not work on
Windows)
* Add a ``--version`` option to get YOGA's version
* Improve ``yoga --help`` usage
* **Python versions:**
* Python 2.7 support dropped
* **NOTE for packagers:**
* new dependency to `mozjpeg-lossless-optimization
<https://github.com/wanadev/mozjpeg-lossless-optimization>`_
* **v1.0.0:**
* WEBP (lossy and lossless) images supported as output format
* PNG default optimization preset changed to a 10× faster preset (old preset
still available with ``--png-slow-optimization`` flag)
* New model flag ``--no-fix-infacing-normals`` to disable Assimp's "fix
infacing normals" postprocess (#32, #33)
* Show CLI usage when no parameter given
* Developer documentation improved (#31)
* ASSIMP library updated
* WARNING: This is the last version to actively support Python 2.7!
* **v0.11.1:**
* Automated workflow for deploying the PyPI packages
* Wheel are now distributed on PyPI
* **v0.11.0:**
* Allows to build YOGA on Windows
* Scripts and workflow to build Windows standalone versions
* **v0.10.2:**
* Updates assimp and python libraries
* **v0.10.1:**
* Fixes an issue that occurs when output file does not already exist
* **v0.10.0:**
* Prevent overwriting of the output file when an error occurs (#17)
* Unicode path support (#16)
* **v0.10.0b1:**
* Verbose and quiet modes,
* Allows to pass textures from memory instead of looking on the filesystem,
* Allows to pass a fallback texture instead of raising an error.
* **v0.9.1b1:**
* Automatic selection of the output format (png or jpeg),
* Prevent duplication of textures that are shared between materials,
* Fixes Windows paths of textures.
* **v0.9.0b1:** First release (only GLB output for models, no image auto
output format)
.. |Github| image:: https://img.shields.io/github/stars/wanadev/yoga?label=Github&logo=github
:target: https://github.com/wanadev/yoga
.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff
:target: https://discord.gg/BmUkEdMuFp
.. |PYPI Version| image:: https://img.shields.io/pypi/v/yoga.svg
:target: https://pypi.python.org/pypi/yoga
.. |Build Status| image:: https://github.com/wanadev/yoga/actions/workflows/python-ci.yml/badge.svg
:target: https://github.com/wanadev/yoga/actions
.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://black.readthedocs.io/en/stable/
.. |License| image:: https://img.shields.io/pypi/l/yoga.svg
:target: https://github.com/wanadev/yoga/blob/master/LICENSE
Raw data
{
"_id": null,
"home_page": "https://github.com/wanadev/yoga",
"name": "yoga",
"maintainer": "Fabien LOISON, Alexis BREUST",
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "image webp jpeg png optimizer guetzli zopfli zopflipng libwebp 3d model mesh assimp gltf glb converter",
"author": "Wanadev",
"author_email": "contact@wanadev.fr",
"download_url": "https://files.pythonhosted.org/packages/3f/d4/9eb44ebb613f449799acc146498bc2fc18f1c065e71de00106d819baa852/yoga-1.3.3.tar.gz",
"platform": null,
"description": "YOGA - Yummy Optimizer for Gorgeous Assets\n==========================================\n\n|Github| |Discord| |PYPI Version| |Build Status| |Black| |License|\n\n.. figure:: https://github.com/wanadev/yoga/raw/master/logo.png\n :alt:\n\n**YOGA** is a command-line tool and a library that can:\n\n* convert and optimize images from various format to JPEG, PNG and WEBP,\n* convert and optimize 3D models from various formats to `glTF and GLB`_.\n\n**Images** are opened using Pillow_ and optimized using Guetzli_ and MozJPEG_\nfor JPEGs, Zopflipng_ for PNGs and libwebp_ for WEBPs.\n\n**3D Models** are converted and optimized using assimp_. If models contain or\nreference images, they are processed by YOGA's image optimizer.\n\nEXAMPLE: Converting and optimizing an image from CLI::\n\n yoga image input.png output.png\n yoga image --output-format=jpeg --jpeg-quality=84 input.png output.jpg\n yoga image --help\n\nEXAMPLE: Converting and optimizing a 3D model from CLI::\n\n yoga model input.fbx output.glb\n yoga model --no-graph-optimization --no-meshes-optimization --image-output-format=jpeg --image-jpeg-quality=84 input.fbx output.glb\n yoga model --help\n\n.. _glTF and GLB: https://www.khronos.org/gltf/\n.. _Pillow: https://github.com/python-pillow/Pillow\n.. _Guetzli: https://github.com/google/guetzli\n.. _MozJPEG: https://github.com/mozilla/mozjpeg\n.. _Zopflipng: https://github.com/google/zopfli\n.. _libwebp: https://chromium.googlesource.com/webm/libwebp/\n.. _assimp: https://github.com/assimp/assimp\n\n\nInstall\n-------\n\n* See `the install section of the documentation <https://wanadev.github.io/yoga/install.html>`_\n\n\nDocumentation\n-------------\n\n* `Command Line Interface (CLI) <https://wanadev.github.io/yoga/cli/index.html>`_\n* `Python API <https://wanadev.github.io/yoga/python/index.html>`_\n* `Contributing <https://wanadev.github.io/yoga/contributing.html>`_\n\n\nChangelog\n---------\n\n* **[NEXT]** (changes on ``master`` that have not been released yet):\n\n * Nothing yet ;)\n\n* **v1.3.3:**\n\n * fix(build): Added missing setuptools versions pinning that break the PyPy builds (@flozz)\n\n* **v1.3.2 / v1.3.2-1:**\n\n * fix(build): Fixed Windows build with recent setuptools versions (@flozz)\n * fix(release): Updated, fixed and improved standalone build scripts and CI (@flozz)\n * misc: Added Python 3.13 support (@flozz)\n * misc!: Removed Python 3.8 support (@flozz)\n\n* **v1.3.1-1:**\n\n * This version has no code change from the v1.3.1. It is only an update of\n the distribution\u00a0:\n\n * A brand new standalone version was build for Linux\n * The Windows standalone distribution was updated (changes in documentation)\n\n * dist: Added scripts to build a standalone binary version of YOGA on Linux\n\n* **v1.3.1:**\n\n * chore(sdist): Fixed included files in sdist package (@flozz)\n\n* **v1.3.0:**\n\n * feat(assimp): Updated assimp to v5.3.1 (fixed build on GCC >= 13) (@flozz)\n * chore: Removed a script that is no more needed (@flozz)\n * docs: Updated contributing documentation (libraries, supported Python\n version, assimp update) (@flozz)\n\n* **v1.2.3:**\n\n * Code quality: more robust type comparison (@flozz)\n * Code quality: cleanup some Python 2.7 specific code (@flozz)\n * Added Python 3.12 support (@flozz)\n * Removed Python 3.7 support (@flozz)\n\n* **v1.2.2:**\n\n * Updated the code to not use deprecated constants on newer Pillow versions\n * Various typo fixed (@kianmeng, #45)\n * Added Python 3.11 support\n\n* **v1.2.1:**\n\n * No change: fix an upload error on PYPI\n\n* **v1.2.0:**\n\n * Add color quantization options (based on libimagequant)\n * ``arm64`` and ``universal2`` wheels for macOS\n * ``x86`` and ``x68_64`` wheels for musl-based Linux distro (Alpine,...)\n * **MAINTAINERS:** New dependency: `imagequant <https://github.com/wanadev/imagequant-python>`_\n\n* **v1.1.2:**\n\n * Add flag to CFFI builder to fix MacOS build\n\n* **v1.1.1 (not published):**\n\n * JPEG: ignore invalid values for the orientation tag (#38)\n * Python 3.10 support and wheels\n\n* **v1.1.0:**\n\n * **JPEG Optimization:**\n\n * Honor the JPEG orientation EXIF tag\n * JPEG optimization has been improved by using some optimizations from\n MozJPEG after the Guetzli encoding (from 2.4\u00a0% to 7.3\u00a0% of additional size\n reduction)\n\n * **PNG Optimization:**\n\n * YOGA can no more output a PNG larger than the input one when performing\n a PNG to PNG optimization\n\n * **CLI:**\n\n * Allow to cancel an optimization using Ctrl+C (NOTE: may not work on\n Windows)\n * Add a ``--version`` option to get YOGA's version\n * Improve ``yoga --help`` usage\n\n * **Python versions:**\n\n * Python 2.7 support dropped\n\n * **NOTE for packagers:**\n\n * new dependency to `mozjpeg-lossless-optimization\n <https://github.com/wanadev/mozjpeg-lossless-optimization>`_\n\n* **v1.0.0:**\n\n * WEBP (lossy and lossless) images supported as output format\n * PNG default optimization preset changed to a 10\u00d7 faster preset (old preset\n still available with ``--png-slow-optimization`` flag)\n * New model flag ``--no-fix-infacing-normals`` to disable Assimp's \"fix\n infacing normals\" postprocess (#32, #33)\n * Show CLI usage when no parameter given\n * Developer documentation improved (#31)\n * ASSIMP library updated\n * WARNING: This is the last version to actively support Python 2.7!\n\n* **v0.11.1:**\n\n * Automated workflow for deploying the PyPI packages\n * Wheel are now distributed on PyPI\n\n* **v0.11.0:**\n\n * Allows to build YOGA on Windows\n * Scripts and workflow to build Windows standalone versions\n\n* **v0.10.2:**\n\n * Updates assimp and python libraries\n\n* **v0.10.1:**\n\n * Fixes an issue that occurs when output file does not already exist\n\n* **v0.10.0:**\n\n * Prevent overwriting of the output file when an error occurs (#17)\n * Unicode path support (#16)\n\n* **v0.10.0b1:**\n\n * Verbose and quiet modes,\n * Allows to pass textures from memory instead of looking on the filesystem,\n * Allows to pass a fallback texture instead of raising an error.\n\n* **v0.9.1b1:**\n\n * Automatic selection of the output format (png or jpeg),\n * Prevent duplication of textures that are shared between materials,\n * Fixes Windows paths of textures.\n\n* **v0.9.0b1:** First release (only GLB output for models, no image auto\n output format)\n\n\n.. |Github| image:: https://img.shields.io/github/stars/wanadev/yoga?label=Github&logo=github\n :target: https://github.com/wanadev/yoga\n.. |Discord| image:: https://img.shields.io/badge/chat-Discord-8c9eff?logo=discord&logoColor=ffffff\n :target: https://discord.gg/BmUkEdMuFp\n.. |PYPI Version| image:: https://img.shields.io/pypi/v/yoga.svg\n :target: https://pypi.python.org/pypi/yoga\n.. |Build Status| image:: https://github.com/wanadev/yoga/actions/workflows/python-ci.yml/badge.svg\n :target: https://github.com/wanadev/yoga/actions\n.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://black.readthedocs.io/en/stable/\n.. |License| image:: https://img.shields.io/pypi/l/yoga.svg\n :target: https://github.com/wanadev/yoga/blob/master/LICENSE\n",
"bugtrack_url": null,
"license": "BSD-3-Clause",
"summary": "Yummy Optimizer for Gorgeous Assets",
"version": "1.3.3",
"project_urls": {
"Changelog": "https://github.com/wanadev/yoga#changelog",
"Chat": "https://discord.gg/BmUkEdMuFp",
"Documentation": "https://wanadev.github.io/yoga/",
"Homepage": "https://github.com/wanadev/yoga",
"Issues": "https://github.com/wanadev/yoga/issues",
"Source Code": "https://github.com/wanadev/yoga"
},
"split_keywords": [
"image",
"webp",
"jpeg",
"png",
"optimizer",
"guetzli",
"zopfli",
"zopflipng",
"libwebp",
"3d",
"model",
"mesh",
"assimp",
"gltf",
"glb",
"converter"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "51786bf33387282f7079540b6ba31e9834737bfeb21abaf8274c1a19314301ca",
"md5": "e28a34ab10123f103b4ccd0251587fd7",
"sha256": "c1d84359c0c5e5272579d3c08a73503f6c1f6b9764244822d792748a9b9c1378"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "e28a34ab10123f103b4ccd0251587fd7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4811834,
"upload_time": "2024-11-25T13:45:37",
"upload_time_iso_8601": "2024-11-25T13:45:37.782965Z",
"url": "https://files.pythonhosted.org/packages/51/78/6bf33387282f7079540b6ba31e9834737bfeb21abaf8274c1a19314301ca/yoga-1.3.3-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "24cda3f9db8a4fa7476b5905ced79cd88fcb72cb111738998830463d6e348331",
"md5": "7f6703e04852d76019a505179cffa290",
"sha256": "fe93922638f9fd39c38e243c856b0eeb9e527f2e41ea0a379b2b8d624724d494"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7f6703e04852d76019a505179cffa290",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 4793263,
"upload_time": "2024-11-25T13:45:39",
"upload_time_iso_8601": "2024-11-25T13:45:39.535217Z",
"url": "https://files.pythonhosted.org/packages/24/cd/a3f9db8a4fa7476b5905ced79cd88fcb72cb111738998830463d6e348331/yoga-1.3.3-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6ca7c2163e7845c82585395d84fe69e2c85c2a9078f38fdc2d2e7994b70f39e",
"md5": "84ba18e9cd89b090976eff5b4248bd6a",
"sha256": "89848e0eec565abaa6f4299e2895306c47f57791a9f7b755a75114b0da9976e2"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "84ba18e9cd89b090976eff5b4248bd6a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 43819,
"upload_time": "2024-11-25T13:45:42",
"upload_time_iso_8601": "2024-11-25T13:45:42.068973Z",
"url": "https://files.pythonhosted.org/packages/a6/ca/7c2163e7845c82585395d84fe69e2c85c2a9078f38fdc2d2e7994b70f39e/yoga-1.3.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95c43891b3b930b1b4e76c2dca705c347db610864884cc3e008c78a10264d9d0",
"md5": "67afbea23563332326f5b6e921d88e84",
"sha256": "b2a35f57652224e2ae6f536ec0235ad84d424586384d97b6044751eba8f79dbc"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "67afbea23563332326f5b6e921d88e84",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7238584,
"upload_time": "2024-11-25T13:45:43",
"upload_time_iso_8601": "2024-11-25T13:45:43.220938Z",
"url": "https://files.pythonhosted.org/packages/95/c4/3891b3b930b1b4e76c2dca705c347db610864884cc3e008c78a10264d9d0/yoga-1.3.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47717bada5de19c8fcb195fea1ff574c78166cca287148027de5abcec5c80273",
"md5": "944933528ca7914e5159fa7c1a10b37c",
"sha256": "4c906370a94e420c1c9ce0316ebd5bb08fe335c3d451a8c7389ee4015fea14a1"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "944933528ca7914e5159fa7c1a10b37c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7029251,
"upload_time": "2024-11-25T13:45:45",
"upload_time_iso_8601": "2024-11-25T13:45:45.095708Z",
"url": "https://files.pythonhosted.org/packages/47/71/7bada5de19c8fcb195fea1ff574c78166cca287148027de5abcec5c80273/yoga-1.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1ed8bad540d4915ff77b3e371af7235e1ab64264ecdd259dbf416c672166188",
"md5": "8102132d84e802acc12494dac1a9a859",
"sha256": "ac5ed48a33a182c0c4a460b9482cdfdc06d23b70bb9b908253affb21d4a0fe37"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8102132d84e802acc12494dac1a9a859",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 8156533,
"upload_time": "2024-11-25T13:45:47",
"upload_time_iso_8601": "2024-11-25T13:45:47.267846Z",
"url": "https://files.pythonhosted.org/packages/c1/ed/8bad540d4915ff77b3e371af7235e1ab64264ecdd259dbf416c672166188/yoga-1.3.3-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "58cfbb30b8b685221c4c78609609c37f0775148ed2c71901261dda7e46665fa9",
"md5": "60bb59c490a8614de1fddaee09c3260e",
"sha256": "691e3b85a254b51dff80d093442588542b1e97509c4f74c450ac08c110f99183"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "60bb59c490a8614de1fddaee09c3260e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 7832729,
"upload_time": "2024-11-25T13:45:49",
"upload_time_iso_8601": "2024-11-25T13:45:49.381296Z",
"url": "https://files.pythonhosted.org/packages/58/cf/bb30b8b685221c4c78609609c37f0775148ed2c71901261dda7e46665fa9/yoga-1.3.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "acbfd4e9673a5b96d43ff4d57ad3a403c424e57e0bc312cc2a1b779363b11014",
"md5": "ed88f5685703adec8290f56abfd3917a",
"sha256": "727a5816a73ee9cf47159542d9f431d872eae74ad52a02297f160575c51d4611"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "ed88f5685703adec8290f56abfd3917a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 2250746,
"upload_time": "2024-11-25T13:45:51",
"upload_time_iso_8601": "2024-11-25T13:45:51.511312Z",
"url": "https://files.pythonhosted.org/packages/ac/bf/d4e9673a5b96d43ff4d57ad3a403c424e57e0bc312cc2a1b779363b11014/yoga-1.3.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5c350e1ee5ed5a5cc9f2386e0caa427f473b455530af78db467f697dc7dbdc0",
"md5": "5242d93bcb54bf5503a0be395768b70f",
"sha256": "b45c275e086b9d4cb1b6e51c2070d089c538a8047559e20c2b3e27560c0cc506"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "5242d93bcb54bf5503a0be395768b70f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4811832,
"upload_time": "2024-11-25T13:45:52",
"upload_time_iso_8601": "2024-11-25T13:45:52.800532Z",
"url": "https://files.pythonhosted.org/packages/a5/c3/50e1ee5ed5a5cc9f2386e0caa427f473b455530af78db467f697dc7dbdc0/yoga-1.3.3-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d70da60a68da1f8f28b0c3bab526e17ec3ec6b27a93b87f5aeb0c10952e301c3",
"md5": "e6e0b82d1f380299e4de0b82ff078d4e",
"sha256": "bbbf8a170cd6edd5afc882d847c7e49448b30880b118611502c75f5b236884cc"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e6e0b82d1f380299e4de0b82ff078d4e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 4793262,
"upload_time": "2024-11-25T13:45:54",
"upload_time_iso_8601": "2024-11-25T13:45:54.288065Z",
"url": "https://files.pythonhosted.org/packages/d7/0d/a60a68da1f8f28b0c3bab526e17ec3ec6b27a93b87f5aeb0c10952e301c3/yoga-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ec37bc65ecfebe1940e9b22bca998f012ef7519e0e25a9efa4dbff3e20a9a51d",
"md5": "237c31a94a3c73e28cdbe0a0e7898127",
"sha256": "5498381931c7416ffec72d0afd5e5b15b51a51df43cb4b2dc55201fa47b45977"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "237c31a94a3c73e28cdbe0a0e7898127",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 43821,
"upload_time": "2024-11-25T13:45:55",
"upload_time_iso_8601": "2024-11-25T13:45:55.665377Z",
"url": "https://files.pythonhosted.org/packages/ec/37/bc65ecfebe1940e9b22bca998f012ef7519e0e25a9efa4dbff3e20a9a51d/yoga-1.3.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a183f3b7518b9fc2cdbdf4f0a2706ad0ec3c8fe57fa21fb9b2eb48a27bb7ccd",
"md5": "267610f73e9e988938f9e11cc49ee42a",
"sha256": "9a347a92678bc963c96bd7b9154007ba881d0b4eff1b027730e77867961407dc"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "267610f73e9e988938f9e11cc49ee42a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7238570,
"upload_time": "2024-11-25T13:45:57",
"upload_time_iso_8601": "2024-11-25T13:45:57.403149Z",
"url": "https://files.pythonhosted.org/packages/1a/18/3f3b7518b9fc2cdbdf4f0a2706ad0ec3c8fe57fa21fb9b2eb48a27bb7ccd/yoga-1.3.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5141dc09bb81ee9b3c8e5c941fcd7853745b96f36fcd76bc7fe05c138cd03a77",
"md5": "21dad3f731904d4bb402529f1ab785c6",
"sha256": "870ceda96662ad6b5e3732adc5d11c36aa3b86cb399cf6853732fabf1bc42186"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "21dad3f731904d4bb402529f1ab785c6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7029314,
"upload_time": "2024-11-25T13:45:59",
"upload_time_iso_8601": "2024-11-25T13:45:59.045214Z",
"url": "https://files.pythonhosted.org/packages/51/41/dc09bb81ee9b3c8e5c941fcd7853745b96f36fcd76bc7fe05c138cd03a77/yoga-1.3.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "49015c3c5cac37a4031f9b233eb5f2b344211f94df19c11d0a500a3c46deff2c",
"md5": "75e38a50dd69561f4d94f98f16ccb2bf",
"sha256": "cb4a600762102806c54a827f886ad8178e717412c6f35d8705659bdc9891da14"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "75e38a50dd69561f4d94f98f16ccb2bf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 8156537,
"upload_time": "2024-11-25T13:46:01",
"upload_time_iso_8601": "2024-11-25T13:46:01.373527Z",
"url": "https://files.pythonhosted.org/packages/49/01/5c3c5cac37a4031f9b233eb5f2b344211f94df19c11d0a500a3c46deff2c/yoga-1.3.3-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c71ed0cd7d3a0481aa5e899f6ed960a57def85ca9043242da4ef3a51b89f66a",
"md5": "e5f99c698413ba9f6a11fb3ce8811673",
"sha256": "b6ed886f287d6fe63dc1ab927fec4a339f731d28d03e8869c4e4a0926865114f"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e5f99c698413ba9f6a11fb3ce8811673",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 7832721,
"upload_time": "2024-11-25T13:46:03",
"upload_time_iso_8601": "2024-11-25T13:46:03.087749Z",
"url": "https://files.pythonhosted.org/packages/8c/71/ed0cd7d3a0481aa5e899f6ed960a57def85ca9043242da4ef3a51b89f66a/yoga-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "847a25cc93d7fe0b5f08333d86d3bd8a84b776114a6e3b0512ba9a4339b0f304",
"md5": "3d759ebeef65ed4e4f42074e54c12edd",
"sha256": "16ab0535de4e15ab7cb0adb1c9f953cefb5e8f7c97799aeae59358dbe2f488eb"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "3d759ebeef65ed4e4f42074e54c12edd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 2250744,
"upload_time": "2024-11-25T13:46:04",
"upload_time_iso_8601": "2024-11-25T13:46:04.818150Z",
"url": "https://files.pythonhosted.org/packages/84/7a/25cc93d7fe0b5f08333d86d3bd8a84b776114a6e3b0512ba9a4339b0f304/yoga-1.3.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f31845d675de6c23f0e422d3dec1c8d7266148928e1be4d243a19f67d7f8caa5",
"md5": "7fde9a40997aa67a99bff6c63688458e",
"sha256": "814470219ff3127607e6a1cb6e2704860d8b145ca672cbed336f97179bec79fd"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "7fde9a40997aa67a99bff6c63688458e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4811684,
"upload_time": "2024-11-25T13:46:06",
"upload_time_iso_8601": "2024-11-25T13:46:06.202094Z",
"url": "https://files.pythonhosted.org/packages/f3/18/45d675de6c23f0e422d3dec1c8d7266148928e1be4d243a19f67d7f8caa5/yoga-1.3.3-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "610021f841892006b3536ef1b43fe019d09cb34a4308e463c8aff3b8cde0dfb9",
"md5": "1963c5da7e850a98c569713db6b355c4",
"sha256": "271621ac0b1c671e4a9292444d16752d67fa49643f4b1cb90f31e3da26679da7"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "1963c5da7e850a98c569713db6b355c4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 4793114,
"upload_time": "2024-11-25T13:46:07",
"upload_time_iso_8601": "2024-11-25T13:46:07.725199Z",
"url": "https://files.pythonhosted.org/packages/61/00/21f841892006b3536ef1b43fe019d09cb34a4308e463c8aff3b8cde0dfb9/yoga-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74e583c6fd087ed139f56765a94e3089034b3b38911783d0a28c5fe50ef86d05",
"md5": "008a8eb7069cd02c9b6d181647fc19aa",
"sha256": "e3db35fa4557ad364644069a5c48530b813973ccc13b7c12e812fdadf22c6392"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "008a8eb7069cd02c9b6d181647fc19aa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 43819,
"upload_time": "2024-11-25T13:46:09",
"upload_time_iso_8601": "2024-11-25T13:46:09.065508Z",
"url": "https://files.pythonhosted.org/packages/74/e5/83c6fd087ed139f56765a94e3089034b3b38911783d0a28c5fe50ef86d05/yoga-1.3.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f3fb7c53993705a92fed01e25d01bea8b998bce08e1ce0f33f9539b8aa7adce9",
"md5": "1235714151b8d4b96e316aeed051a577",
"sha256": "40ba657a046e24ba6c24a6219dd929ed3f2504baf20ec3ecb261b0e429478a12"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1235714151b8d4b96e316aeed051a577",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7238689,
"upload_time": "2024-11-25T13:46:10",
"upload_time_iso_8601": "2024-11-25T13:46:10.895036Z",
"url": "https://files.pythonhosted.org/packages/f3/fb/7c53993705a92fed01e25d01bea8b998bce08e1ce0f33f9539b8aa7adce9/yoga-1.3.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9189d42136d92356e7344593fd4486666ba24795a4c1b2abc2fd22bf8c50ed5b",
"md5": "30af452f38f26971b0cd6906da20cb89",
"sha256": "3b813a86f4af2c6356711b18def50f69c93237c8d9e137c7312e15717fa8b0c6"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "30af452f38f26971b0cd6906da20cb89",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7029703,
"upload_time": "2024-11-25T13:46:13",
"upload_time_iso_8601": "2024-11-25T13:46:13.450309Z",
"url": "https://files.pythonhosted.org/packages/91/89/d42136d92356e7344593fd4486666ba24795a4c1b2abc2fd22bf8c50ed5b/yoga-1.3.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1bcb7afed63ca2fae882630308df12e6164dd7a7b2b1166fb2bc4ceac18f4ace",
"md5": "eeb14d4736060cc456d1210e85fa0216",
"sha256": "ae6dd113c5df57c51323f4fd28f54ddc376c14ce6170de8642d89ec0ed41eec0"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "eeb14d4736060cc456d1210e85fa0216",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 8156830,
"upload_time": "2024-11-25T13:46:21",
"upload_time_iso_8601": "2024-11-25T13:46:21.710434Z",
"url": "https://files.pythonhosted.org/packages/1b/cb/7afed63ca2fae882630308df12e6164dd7a7b2b1166fb2bc4ceac18f4ace/yoga-1.3.3-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9cbf163f523158124f1020de1ec29973592940d35cd167220a0a1a30aba08a9a",
"md5": "c3070aa9aa510e536e9aa1408f76dd25",
"sha256": "2a91da324078fb9a0c7ed137689b5771efec7925095c9d2f7b36a1b399b0c225"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c3070aa9aa510e536e9aa1408f76dd25",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 7833205,
"upload_time": "2024-11-25T13:46:23",
"upload_time_iso_8601": "2024-11-25T13:46:23.290875Z",
"url": "https://files.pythonhosted.org/packages/9c/bf/163f523158124f1020de1ec29973592940d35cd167220a0a1a30aba08a9a/yoga-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b6599da4c5edd5a0d210c28f5653e59017c1b9475beabbc958c5e72427c359c",
"md5": "d094bc39ea88ebd21a71ecb490a7bc61",
"sha256": "4a9c83700c64a591e48fb1e475d4b80b8383b90b8cec88a4f156e98923a4344d"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "d094bc39ea88ebd21a71ecb490a7bc61",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 2250765,
"upload_time": "2024-11-25T13:46:25",
"upload_time_iso_8601": "2024-11-25T13:46:25.123881Z",
"url": "https://files.pythonhosted.org/packages/9b/65/99da4c5edd5a0d210c28f5653e59017c1b9475beabbc958c5e72427c359c/yoga-1.3.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "84e9ab7f26a0bc57e49d9aee8c6128e80addbc9af4ca5c02acfb576ef5ddb491",
"md5": "52468e4484793c53552bdd3f29929df9",
"sha256": "a7b0a162072e2ed542cc909a80a6dea2981c6567d03b2de4995a4339abcc09b7"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "52468e4484793c53552bdd3f29929df9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4811685,
"upload_time": "2024-11-25T13:46:27",
"upload_time_iso_8601": "2024-11-25T13:46:27.307253Z",
"url": "https://files.pythonhosted.org/packages/84/e9/ab7f26a0bc57e49d9aee8c6128e80addbc9af4ca5c02acfb576ef5ddb491/yoga-1.3.3-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "169f7d9f3eb7453b543f3e02bbe8f910d1cd2aa99c14cfa938a01a21af55de91",
"md5": "104da058c9d9fc981e511763965715dd",
"sha256": "430f2fcc2c0907bb1356f996175ba15473ec193111303b65d9522be60570d618"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "104da058c9d9fc981e511763965715dd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 4793112,
"upload_time": "2024-11-25T13:46:29",
"upload_time_iso_8601": "2024-11-25T13:46:29.277143Z",
"url": "https://files.pythonhosted.org/packages/16/9f/7d9f3eb7453b543f3e02bbe8f910d1cd2aa99c14cfa938a01a21af55de91/yoga-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66dcf2cddfc95a4b1e618ca088c523cf85e756bdbd1651d9bc7797bcf206746a",
"md5": "5aac446db00b43e760eb01dd342f4062",
"sha256": "96e09c6f0242bf3d9b93012ffba5740d878a560ccef15b203620479d6226b855"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5aac446db00b43e760eb01dd342f4062",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 43819,
"upload_time": "2024-11-25T13:46:30",
"upload_time_iso_8601": "2024-11-25T13:46:30.649148Z",
"url": "https://files.pythonhosted.org/packages/66/dc/f2cddfc95a4b1e618ca088c523cf85e756bdbd1651d9bc7797bcf206746a/yoga-1.3.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d72c23e508b0cb53d8c144455b124bd20e60466de62f0692e3c264559ef4f612",
"md5": "53c2e208bb6155b145afb819a8f748ab",
"sha256": "d1e1d0df9d996f5584174dc9595d322f54199fb9d5ac9810bf443a16966ec8b6"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "53c2e208bb6155b145afb819a8f748ab",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7238540,
"upload_time": "2024-11-25T13:46:32",
"upload_time_iso_8601": "2024-11-25T13:46:32.123948Z",
"url": "https://files.pythonhosted.org/packages/d7/2c/23e508b0cb53d8c144455b124bd20e60466de62f0692e3c264559ef4f612/yoga-1.3.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50f33b2767d9584030a6f7a5f3c2e01cbe09a26cdcdbfe97de4de01ff178f3cd",
"md5": "62c39bfd956f5bd7d8fead873427338f",
"sha256": "625177005e40a9e6a10541081c319d60d9a8c1fcafdef21d5def261ada7fa74d"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "62c39bfd956f5bd7d8fead873427338f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7029656,
"upload_time": "2024-11-25T13:46:34",
"upload_time_iso_8601": "2024-11-25T13:46:34.461007Z",
"url": "https://files.pythonhosted.org/packages/50/f3/3b2767d9584030a6f7a5f3c2e01cbe09a26cdcdbfe97de4de01ff178f3cd/yoga-1.3.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "828206c5ad92b928349e16c2884c04cc8deeb7ecfe2e404b306c62fa71fa9841",
"md5": "dbd2b1a9641c642c477232f44e399101",
"sha256": "88a27610b7b64220bd1afdc50e336a37d3ca48ef5d59bad6672eec643f728f51"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "dbd2b1a9641c642c477232f44e399101",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 8156783,
"upload_time": "2024-11-25T13:46:36",
"upload_time_iso_8601": "2024-11-25T13:46:36.000528Z",
"url": "https://files.pythonhosted.org/packages/82/82/06c5ad92b928349e16c2884c04cc8deeb7ecfe2e404b306c62fa71fa9841/yoga-1.3.3-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8727bdea7d1bb3ee4e837d42a411c3d7acb67cfb79f19dbff547a21d9dbed076",
"md5": "2015d4651097f331ed802b9e433d06fd",
"sha256": "2ab05d2c058c56afdc39dc498a1817644990067e3f3a966f5e2e2b1299ff7c04"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "2015d4651097f331ed802b9e433d06fd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 7833151,
"upload_time": "2024-11-25T13:46:37",
"upload_time_iso_8601": "2024-11-25T13:46:37.640106Z",
"url": "https://files.pythonhosted.org/packages/87/27/bdea7d1bb3ee4e837d42a411c3d7acb67cfb79f19dbff547a21d9dbed076/yoga-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc22b967ceca9135a6a56775bfd503cb025577ddb603f0ce495da24d34f9484a",
"md5": "dc1a38664f1f06be394bc223f6c43388",
"sha256": "58815686a2bffb83c3c2a085123289bcf82a62a6423092da0a3dce99d97822d8"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "dc1a38664f1f06be394bc223f6c43388",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 2250767,
"upload_time": "2024-11-25T13:46:39",
"upload_time_iso_8601": "2024-11-25T13:46:39.876993Z",
"url": "https://files.pythonhosted.org/packages/fc/22/b967ceca9135a6a56775bfd503cb025577ddb603f0ce495da24d34f9484a/yoga-1.3.3-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37515fcc3c81bc2725676c634af1cd1f7b0ffc0810d4546ff2b17efea72c5fc0",
"md5": "8ede4e8a5c8335aed46af1850e68f431",
"sha256": "4bfb261e65feb59818bae473bd4b405b612c4a9a56495804178271a5874b40bc"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp36-cp36m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8ede4e8a5c8335aed46af1850e68f431",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 4792749,
"upload_time": "2024-11-25T13:46:41",
"upload_time_iso_8601": "2024-11-25T13:46:41.213090Z",
"url": "https://files.pythonhosted.org/packages/37/51/5fcc3c81bc2725676c634af1cd1f7b0ffc0810d4546ff2b17efea72c5fc0/yoga-1.3.3-cp36-cp36m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2d0a83f933f87500020e04c5b84aeca73479a54533bc852eff885c3a2d1090d",
"md5": "f688214c304fab555c9ccdb4cb7ed03f",
"sha256": "6f52121afb9a3567de99638d9f4c6b19ed12e44f7d2fd9cccf93cef02d0df4c7"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f688214c304fab555c9ccdb4cb7ed03f",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 7238327,
"upload_time": "2024-11-25T13:46:42",
"upload_time_iso_8601": "2024-11-25T13:46:42.837919Z",
"url": "https://files.pythonhosted.org/packages/a2/d0/a83f933f87500020e04c5b84aeca73479a54533bc852eff885c3a2d1090d/yoga-1.3.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9dd22150d5beb21c046b088c62807bc53b4a71ed0c8aa867e509e2a3c3b73de7",
"md5": "2a8d821dd50830ed68e9035f2a8e7eb9",
"sha256": "9b1a54c892e80c9c8b7ad0f4e39974e08da21aa4386e82eb6a883a1385a7ea6f"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2a8d821dd50830ed68e9035f2a8e7eb9",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 7029090,
"upload_time": "2024-11-25T13:46:44",
"upload_time_iso_8601": "2024-11-25T13:46:44.534037Z",
"url": "https://files.pythonhosted.org/packages/9d/d2/2150d5beb21c046b088c62807bc53b4a71ed0c8aa867e509e2a3c3b73de7/yoga-1.3.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05d20e235b20622cf2fc62e4b22f4b4f05de446bcfa5036f3544125fc4e3538a",
"md5": "26e962925853143240c5dddfd35529b7",
"sha256": "6004221d5e9c05f9a24274882aabcaf1d7321e0db5de1b1ad5ab97559fa3c2f3"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp36-cp36m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "26e962925853143240c5dddfd35529b7",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 8156281,
"upload_time": "2024-11-25T13:46:46",
"upload_time_iso_8601": "2024-11-25T13:46:46.919039Z",
"url": "https://files.pythonhosted.org/packages/05/d2/0e235b20622cf2fc62e4b22f4b4f05de446bcfa5036f3544125fc4e3538a/yoga-1.3.3-cp36-cp36m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e24d29ee7b54c849d76f9a6ec3a07068ee7ad1fd955c6904e4d86659b20a60ca",
"md5": "b22f35e7607a87fb60f2d00fb88ecd8b",
"sha256": "6d7bd1a5dda0933d873aaa594f2c58b09b9c15a902661e4e94844e376b8a232b"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp36-cp36m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b22f35e7607a87fb60f2d00fb88ecd8b",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 7832677,
"upload_time": "2024-11-25T13:46:49",
"upload_time_iso_8601": "2024-11-25T13:46:49.271598Z",
"url": "https://files.pythonhosted.org/packages/e2/4d/29ee7b54c849d76f9a6ec3a07068ee7ad1fd955c6904e4d86659b20a60ca/yoga-1.3.3-cp36-cp36m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79d414d5aa50cc1124e658d19b70cdbd700e17d04e698173d6efb2ed7f6c70df",
"md5": "df432d863387c1ab99dd62c7aa5aa6f7",
"sha256": "210e518024818f662a3636369cc4a3ad2193e1218d92cfe1e3cb7f49cfcce511"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp36-cp36m-win_amd64.whl",
"has_sig": false,
"md5_digest": "df432d863387c1ab99dd62c7aa5aa6f7",
"packagetype": "bdist_wheel",
"python_version": "cp36",
"requires_python": null,
"size": 2251436,
"upload_time": "2024-11-25T13:46:50",
"upload_time_iso_8601": "2024-11-25T13:46:50.755961Z",
"url": "https://files.pythonhosted.org/packages/79/d4/14d5aa50cc1124e658d19b70cdbd700e17d04e698173d6efb2ed7f6c70df/yoga-1.3.3-cp36-cp36m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87d77059042fdb09c13822832606d306be60aa248f84f1f1af066d60a0646f69",
"md5": "63871024787dfb26ba41967ef08488b9",
"sha256": "feb28a6df022a4abadbed456b4467998972c9fe2ed80d3b3ca18764fd2fd5aa9"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "63871024787dfb26ba41967ef08488b9",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 4793258,
"upload_time": "2024-11-25T13:46:52",
"upload_time_iso_8601": "2024-11-25T13:46:52.843477Z",
"url": "https://files.pythonhosted.org/packages/87/d7/7059042fdb09c13822832606d306be60aa248f84f1f1af066d60a0646f69/yoga-1.3.3-cp37-cp37m-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "571d85c3e206ca6cdd651d8ff1598de2e71fb36a5a34fee07499c06d562260f1",
"md5": "4a39d492f4ad0d71912162bcd0e7a8e6",
"sha256": "a4b9286a7c95a37f69257eb25ddcd39d7f8bb99d5620d1b7534eb114ec8bab3a"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4a39d492f4ad0d71912162bcd0e7a8e6",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 7238306,
"upload_time": "2024-11-25T13:46:54",
"upload_time_iso_8601": "2024-11-25T13:46:54.354936Z",
"url": "https://files.pythonhosted.org/packages/57/1d/85c3e206ca6cdd651d8ff1598de2e71fb36a5a34fee07499c06d562260f1/yoga-1.3.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2908c6662353677dc61729a4e4a67672486f25a919ed09ccdcbaafa9e03702c5",
"md5": "f68b8490a6d9053f06d32b2e1bf2672b",
"sha256": "81e9e3a2136f01755ebc0f60743c18092a18baddbdc8abd8fd568499322f90e7"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f68b8490a6d9053f06d32b2e1bf2672b",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 7029104,
"upload_time": "2024-11-25T13:46:56",
"upload_time_iso_8601": "2024-11-25T13:46:56.141147Z",
"url": "https://files.pythonhosted.org/packages/29/08/c6662353677dc61729a4e4a67672486f25a919ed09ccdcbaafa9e03702c5/yoga-1.3.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb04233e372de2c9dd98f8e531e9b908da903ffe5519a91880c220ece0b6987f",
"md5": "b263276c51b3426f41a2c65fee387dd1",
"sha256": "a3b520dbc6ce799addf843321a01bcb846b1a7f0afe2bc0619b2d0bc87979170"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp37-cp37m-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b263276c51b3426f41a2c65fee387dd1",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 8156267,
"upload_time": "2024-11-25T13:46:57",
"upload_time_iso_8601": "2024-11-25T13:46:57.796934Z",
"url": "https://files.pythonhosted.org/packages/cb/04/233e372de2c9dd98f8e531e9b908da903ffe5519a91880c220ece0b6987f/yoga-1.3.3-cp37-cp37m-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "968d99bf360503ba9e418c6605316c765dfb988a2aa8ba62420ba64894a3610d",
"md5": "b94c306ef70562354a7c507d6e559f07",
"sha256": "c5743a1c7667148423c8999fff51ffb2a078ae605829bf25e7c1a29d48e8c245"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp37-cp37m-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b94c306ef70562354a7c507d6e559f07",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 7832652,
"upload_time": "2024-11-25T13:47:00",
"upload_time_iso_8601": "2024-11-25T13:47:00.837739Z",
"url": "https://files.pythonhosted.org/packages/96/8d/99bf360503ba9e418c6605316c765dfb988a2aa8ba62420ba64894a3610d/yoga-1.3.3-cp37-cp37m-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d0d3cc997686e867a76c988c9b1363a580e72bceb6891237a740f134965ee53",
"md5": "4dce1ce491fc799cdf81dfd28e635807",
"sha256": "cbaddadd4cb7f324cc6dcdd2a1c1fb1de7467b123b88e92b680d59f9021e9926"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp37-cp37m-win_amd64.whl",
"has_sig": false,
"md5_digest": "4dce1ce491fc799cdf81dfd28e635807",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": null,
"size": 2250748,
"upload_time": "2024-11-25T13:47:02",
"upload_time_iso_8601": "2024-11-25T13:47:02.463204Z",
"url": "https://files.pythonhosted.org/packages/8d/0d/3cc997686e867a76c988c9b1363a580e72bceb6891237a740f134965ee53/yoga-1.3.3-cp37-cp37m-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6282a851acc33f30e7c11b311e8e8df515bf4f36a31677d6a2ae6dc9031e1392",
"md5": "7f81bbf2b4c8a9e4066ad4f35191c358",
"sha256": "994c388e6bd4777a285b32df00e9dcfcaa332f1409acfcc02048192e472cf174"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "7f81bbf2b4c8a9e4066ad4f35191c358",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4811823,
"upload_time": "2024-11-25T13:47:03",
"upload_time_iso_8601": "2024-11-25T13:47:03.837694Z",
"url": "https://files.pythonhosted.org/packages/62/82/a851acc33f30e7c11b311e8e8df515bf4f36a31677d6a2ae6dc9031e1392/yoga-1.3.3-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc2b66b600c38f1cbf16e273a7231af0ea75047ce1cd7c8c5822fc99d9d7c3fc",
"md5": "ccadd9353495e1de10a3afa24da5a347",
"sha256": "86c8463c9046fc60a7431886ce06f19bafad85ddbd8dcb989fa76a4574d9bac1"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ccadd9353495e1de10a3afa24da5a347",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 4793257,
"upload_time": "2024-11-25T13:47:06",
"upload_time_iso_8601": "2024-11-25T13:47:06.577838Z",
"url": "https://files.pythonhosted.org/packages/dc/2b/66b600c38f1cbf16e273a7231af0ea75047ce1cd7c8c5822fc99d9d7c3fc/yoga-1.3.3-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "743cbe17a68909bad46690627c49fe2e643f6bd38bd71c765caa07f2db82c2d6",
"md5": "778eb61eecae7a1d91e50d6aea8ea1a0",
"sha256": "0a13d81d36fe4950098fff354b9c4065a16f47a1e528cd873e125a7e916ab395"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "778eb61eecae7a1d91e50d6aea8ea1a0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 43820,
"upload_time": "2024-11-25T13:47:08",
"upload_time_iso_8601": "2024-11-25T13:47:08.148996Z",
"url": "https://files.pythonhosted.org/packages/74/3c/be17a68909bad46690627c49fe2e643f6bd38bd71c765caa07f2db82c2d6/yoga-1.3.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "518a4983f794d250a5fbc10f0a35e37f1f6aa0e9d8a72f50f371921a17959a86",
"md5": "82718577e5f89b10de560593a9781896",
"sha256": "e2795b3f2b8b85cb7648974f60d0df67bcb5ddf517c20d0bf094fc0847d4e833"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "82718577e5f89b10de560593a9781896",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7238781,
"upload_time": "2024-11-25T13:47:09",
"upload_time_iso_8601": "2024-11-25T13:47:09.942756Z",
"url": "https://files.pythonhosted.org/packages/51/8a/4983f794d250a5fbc10f0a35e37f1f6aa0e9d8a72f50f371921a17959a86/yoga-1.3.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "923d64da15793bf79b52bba70f71159b2eee0d065b2bce6f4cac8a9f7bfbb269",
"md5": "9f3d6ae0c1bf75d91dc6d4d85397f569",
"sha256": "5623ce75e52a4f5f3c7fcbe6f6d242e0ab426427d909139fa49c423f1abd94f7"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9f3d6ae0c1bf75d91dc6d4d85397f569",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7029595,
"upload_time": "2024-11-25T13:47:11",
"upload_time_iso_8601": "2024-11-25T13:47:11.541014Z",
"url": "https://files.pythonhosted.org/packages/92/3d/64da15793bf79b52bba70f71159b2eee0d065b2bce6f4cac8a9f7bfbb269/yoga-1.3.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ecaa6987147c2f8819b0166d50929bde292d0c403a7368b0e167571b88f1db2c",
"md5": "6d5cbc505c31af00611c6807b1b9b96d",
"sha256": "726cc5872c11e9dd54fb35fbe66eb251fb5abc000a24695c34ea98abfb1c1ac1"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6d5cbc505c31af00611c6807b1b9b96d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 8156867,
"upload_time": "2024-11-25T13:47:13",
"upload_time_iso_8601": "2024-11-25T13:47:13.158961Z",
"url": "https://files.pythonhosted.org/packages/ec/aa/6987147c2f8819b0166d50929bde292d0c403a7368b0e167571b88f1db2c/yoga-1.3.3-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02f6c699100e941adc2b3342b0be829c0a2aa804d87d2c62252686880cfdac0e",
"md5": "ded83e95206b3db4734ea54404eb3923",
"sha256": "893b88a52c75d98aaa90ed3d25c8435c816bb678596412fe5953263196287f26"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ded83e95206b3db4734ea54404eb3923",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 7833015,
"upload_time": "2024-11-25T13:47:14",
"upload_time_iso_8601": "2024-11-25T13:47:14.928296Z",
"url": "https://files.pythonhosted.org/packages/02/f6/c699100e941adc2b3342b0be829c0a2aa804d87d2c62252686880cfdac0e/yoga-1.3.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85957f9b262b6a65a01b983a3d089ee392c02998d0ed196191a58434f3feb04a",
"md5": "ea7982b83c1cace3b40f8e54f998ee2e",
"sha256": "fad098e639e104e077c02d45b02129f70b257b44927942c8453c173a435c2e53"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "ea7982b83c1cace3b40f8e54f998ee2e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 2250745,
"upload_time": "2024-11-25T13:47:16",
"upload_time_iso_8601": "2024-11-25T13:47:16.764385Z",
"url": "https://files.pythonhosted.org/packages/85/95/7f9b262b6a65a01b983a3d089ee392c02998d0ed196191a58434f3feb04a/yoga-1.3.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "939feb46031a6df58c74555b0d4fc6b67f2df2ce6a875bd5f3c6ed03f6bf453f",
"md5": "8b94acb0de30f1b554153e14cc37cf22",
"sha256": "f158bc189e338dd1fbf0732cadc11ccdca39ec643b1626f62cd8f53e859954cd"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "8b94acb0de30f1b554153e14cc37cf22",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4811833,
"upload_time": "2024-11-25T13:47:18",
"upload_time_iso_8601": "2024-11-25T13:47:18.158632Z",
"url": "https://files.pythonhosted.org/packages/93/9f/eb46031a6df58c74555b0d4fc6b67f2df2ce6a875bd5f3c6ed03f6bf453f/yoga-1.3.3-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c11ecdcbc4d554c3cbf8716dc33df0184f400b92fe1387e25b5270557ea3a3c7",
"md5": "5bf101070967acb5a5049596f2258990",
"sha256": "0655aa3161d6ef6e69d5889b3a33c9aa0c7778f707c561b27af5dd27286730e9"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "5bf101070967acb5a5049596f2258990",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 4793259,
"upload_time": "2024-11-25T13:47:19",
"upload_time_iso_8601": "2024-11-25T13:47:19.751159Z",
"url": "https://files.pythonhosted.org/packages/c1/1e/cdcbc4d554c3cbf8716dc33df0184f400b92fe1387e25b5270557ea3a3c7/yoga-1.3.3-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e7829a57c835aa8170f857db745d779d8b918baa980234c7a6102d61caeeeace",
"md5": "b0697a3994065bbe8559ea00cc61db6e",
"sha256": "a8c9abf3fedca2902163d8c0e5276c74eeee97b5a9b3521884c9769571b6de34"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b0697a3994065bbe8559ea00cc61db6e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 43820,
"upload_time": "2024-11-25T13:47:21",
"upload_time_iso_8601": "2024-11-25T13:47:21.433070Z",
"url": "https://files.pythonhosted.org/packages/e7/82/9a57c835aa8170f857db745d779d8b918baa980234c7a6102d61caeeeace/yoga-1.3.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d61c8a1a9c5cd146e7fe534f03ccc21a564d418a159003f5c8f4eb35cee8a8d4",
"md5": "5b56ed03c8e304d9169f401eb8c7e1ea",
"sha256": "9d8f77604f596ae16abec72b40b9a739f5e3c3a48c00508d215164e82a03e33b"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "5b56ed03c8e304d9169f401eb8c7e1ea",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7238594,
"upload_time": "2024-11-25T13:47:22",
"upload_time_iso_8601": "2024-11-25T13:47:22.635152Z",
"url": "https://files.pythonhosted.org/packages/d6/1c/8a1a9c5cd146e7fe534f03ccc21a564d418a159003f5c8f4eb35cee8a8d4/yoga-1.3.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77e2b530ceae856e3462e9d2e1baaf95ccc91819ac5ec6c36626fe496aeb5ab1",
"md5": "f2371ecaa3394cf2a9f2f88dd9ed7e64",
"sha256": "0caaaeff1239521480ebdeda58b56669d2300c5a8ff3b304342753706f80be2b"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f2371ecaa3394cf2a9f2f88dd9ed7e64",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7029250,
"upload_time": "2024-11-25T13:47:24",
"upload_time_iso_8601": "2024-11-25T13:47:24.275973Z",
"url": "https://files.pythonhosted.org/packages/77/e2/b530ceae856e3462e9d2e1baaf95ccc91819ac5ec6c36626fe496aeb5ab1/yoga-1.3.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eec82b1abf75cda2cd48cbdc85cb96d867532a976bbb1bac1de77494aeeda865",
"md5": "c4ec4f59ddd30bec5d6d001083a589f6",
"sha256": "b720c7f0b9077b961998b11c5ae38b223c980493c4a8af3a73c7bd1372a6243e"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c4ec4f59ddd30bec5d6d001083a589f6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 8156531,
"upload_time": "2024-11-25T13:47:25",
"upload_time_iso_8601": "2024-11-25T13:47:25.966042Z",
"url": "https://files.pythonhosted.org/packages/ee/c8/2b1abf75cda2cd48cbdc85cb96d867532a976bbb1bac1de77494aeeda865/yoga-1.3.3-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "776990a26aa40706f88e459e63c83f8798a34d4269f516a8d56a7a355d83cc59",
"md5": "5a6f74b24de772f247cc05feebce0bbb",
"sha256": "384752968861483cbf99f04f9bdc43b8625cb40e40d0c40b20dd8d67fbef0044"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5a6f74b24de772f247cc05feebce0bbb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 7832723,
"upload_time": "2024-11-25T13:47:27",
"upload_time_iso_8601": "2024-11-25T13:47:27.991333Z",
"url": "https://files.pythonhosted.org/packages/77/69/90a26aa40706f88e459e63c83f8798a34d4269f516a8d56a7a355d83cc59/yoga-1.3.3-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b019394d797033144dbc0bf4d59b017487a12982796645200522533d905cac6",
"md5": "0db119340c979d87ba8a4862f3ce4294",
"sha256": "2999a5632efee288b206d1221a02053e10f73cfc6f982c9765f878ed5d88ee93"
},
"downloads": -1,
"filename": "yoga-1.3.3-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "0db119340c979d87ba8a4862f3ce4294",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 2250748,
"upload_time": "2024-11-25T13:47:29",
"upload_time_iso_8601": "2024-11-25T13:47:29.654532Z",
"url": "https://files.pythonhosted.org/packages/2b/01/9394d797033144dbc0bf4d59b017487a12982796645200522533d905cac6/yoga-1.3.3-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "78262b79a7a4758680d6c3a5b6f9495f66b768e4a1a12be30abf094a6b6451ee",
"md5": "e2c3fda3eadae72c4d5948e51ed21d87",
"sha256": "41a87edc85658b97de782e4f5a258989372a1d39c1793008360bb668375ad4bd"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "e2c3fda3eadae72c4d5948e51ed21d87",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 4791587,
"upload_time": "2024-11-25T13:47:31",
"upload_time_iso_8601": "2024-11-25T13:47:31.077586Z",
"url": "https://files.pythonhosted.org/packages/78/26/2b79a7a4758680d6c3a5b6f9495f66b768e4a1a12be30abf094a6b6451ee/yoga-1.3.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b7b27f0bb7f1c8336a0a4ddee33c9401960cefa3b30a0136aaf0e811d646ac6b",
"md5": "32f0870fe1271de522eb5b43dc6da295",
"sha256": "a882608a9a5823603c808f51c70e0fdfa049dc90ac46673246ee758d8f16b38b"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "32f0870fe1271de522eb5b43dc6da295",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 6904978,
"upload_time": "2024-11-25T13:47:32",
"upload_time_iso_8601": "2024-11-25T13:47:32.801270Z",
"url": "https://files.pythonhosted.org/packages/b7/b2/7f0bb7f1c8336a0a4ddee33c9401960cefa3b30a0136aaf0e811d646ac6b/yoga-1.3.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81559229a3f90ab872722b14bf22d048be84b4d16aeb86060e9dafb34ee287b4",
"md5": "98b403cd3dba9edefe25dadd02ee8e5b",
"sha256": "1b8a33529be38bd68d00bd41f763dacf6b13cdabdbd8dfbdd31dbbbae5620321"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "98b403cd3dba9edefe25dadd02ee8e5b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 6674204,
"upload_time": "2024-11-25T13:47:34",
"upload_time_iso_8601": "2024-11-25T13:47:34.580550Z",
"url": "https://files.pythonhosted.org/packages/81/55/9229a3f90ab872722b14bf22d048be84b4d16aeb86060e9dafb34ee287b4/yoga-1.3.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a6a34fbb3fda6a0d866a428b42eb2ea3ec70e14917775259c1a687cc257af6c",
"md5": "ea321695bcc06b184ff1bb5a0ef1480a",
"sha256": "8d7b4c93c83d8bc37bd073a479899e75470f8fe3ccd4108b564d2fd8f69b81bc"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "ea321695bcc06b184ff1bb5a0ef1480a",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": null,
"size": 2248942,
"upload_time": "2024-11-25T13:47:36",
"upload_time_iso_8601": "2024-11-25T13:47:36.871321Z",
"url": "https://files.pythonhosted.org/packages/2a/6a/34fbb3fda6a0d866a428b42eb2ea3ec70e14917775259c1a687cc257af6c/yoga-1.3.3-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9a48b2a62a04f571d218749164862840afec5f78a89c5d323626df570d0bdafa",
"md5": "ef1767ab93a9d3f4b9d17cba1b1688eb",
"sha256": "230727afd182ddfc66579c85f7a38376aeab3d2f9140ebbec655e89cdc3a2f00"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "ef1767ab93a9d3f4b9d17cba1b1688eb",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 4791666,
"upload_time": "2024-11-25T13:47:43",
"upload_time_iso_8601": "2024-11-25T13:47:43.700029Z",
"url": "https://files.pythonhosted.org/packages/9a/48/b2a62a04f571d218749164862840afec5f78a89c5d323626df570d0bdafa/yoga-1.3.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2b1df0ba4cc0c000ebbc6c2ff4d1966d313b6074f88a97335b406e92342b6c07",
"md5": "22466a87f341e162012d5b51887dbeaa",
"sha256": "e7683054ca68a432ed46fbff5b1a5013a59a95bc76f65470434f01f5c2c9b45b"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "22466a87f341e162012d5b51887dbeaa",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 7045126,
"upload_time": "2024-11-25T13:47:52",
"upload_time_iso_8601": "2024-11-25T13:47:52.117502Z",
"url": "https://files.pythonhosted.org/packages/2b/1d/f0ba4cc0c000ebbc6c2ff4d1966d313b6074f88a97335b406e92342b6c07/yoga-1.3.3-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89f635e7ca3e739de1e54eab2ac03a9ebdce2f870e84cb1a60f60b98344849e7",
"md5": "dae2220a65e22d2d99dc441b4632acb6",
"sha256": "5ade507368a3406e8f97417f082c41a254f38d52f94f99a598fa79a253d91ac0"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "dae2220a65e22d2d99dc441b4632acb6",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 6833891,
"upload_time": "2024-11-25T13:47:53",
"upload_time_iso_8601": "2024-11-25T13:47:53.764315Z",
"url": "https://files.pythonhosted.org/packages/89/f6/35e7ca3e739de1e54eab2ac03a9ebdce2f870e84cb1a60f60b98344849e7/yoga-1.3.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9df45f51911a242e35539144254be3fb9e5ef56703a873ae295c36b2a4372842",
"md5": "5b32f03cedca566864963f7dd3031e01",
"sha256": "2abe47dc0220091911aa7b0616bac13dda60f751fbe1c3a0e034f38393cc2e48"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp37-pypy37_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "5b32f03cedca566864963f7dd3031e01",
"packagetype": "bdist_wheel",
"python_version": "pp37",
"requires_python": null,
"size": 2248933,
"upload_time": "2024-11-25T13:47:56",
"upload_time_iso_8601": "2024-11-25T13:47:56.148529Z",
"url": "https://files.pythonhosted.org/packages/9d/f4/5f51911a242e35539144254be3fb9e5ef56703a873ae295c36b2a4372842/yoga-1.3.3-pp37-pypy37_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b71ead1b4f6479ec7f87314ee44f0268e799539e287f0a1c5e74283e7cdbd978",
"md5": "7c1a8626b721d64b6261edbdbb7f46be",
"sha256": "0305bf11a9063e7971d67cf955fd6033134c7d5d8ae39b69ab5254fa2dd4b7ce"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "7c1a8626b721d64b6261edbdbb7f46be",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 4791666,
"upload_time": "2024-11-25T13:47:57",
"upload_time_iso_8601": "2024-11-25T13:47:57.701627Z",
"url": "https://files.pythonhosted.org/packages/b7/1e/ad1b4f6479ec7f87314ee44f0268e799539e287f0a1c5e74283e7cdbd978/yoga-1.3.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c79d370d79378892b49087b13de65ae6312134693f4e34d5dd8ebcb2332e992b",
"md5": "4a487d3e30aa1707dd7498b9b841186c",
"sha256": "6f1efa99846ed3f76f70c63b2f300c32214bad58d5550ae790b451a1cf33c471"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4a487d3e30aa1707dd7498b9b841186c",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 6904976,
"upload_time": "2024-11-25T13:47:59",
"upload_time_iso_8601": "2024-11-25T13:47:59.327517Z",
"url": "https://files.pythonhosted.org/packages/c7/9d/370d79378892b49087b13de65ae6312134693f4e34d5dd8ebcb2332e992b/yoga-1.3.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7d8edf84fa0fcecfe2a5392ebb937fb98ddad0d5dcd28d131751f7efc3caff4",
"md5": "5ae169f31f956e07b18a9f116f910777",
"sha256": "e728ffa155fc191ed4c2b5755772c87624e8adbd5b655c0210c60d556313df35"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5ae169f31f956e07b18a9f116f910777",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 6674202,
"upload_time": "2024-11-25T13:48:00",
"upload_time_iso_8601": "2024-11-25T13:48:00.951094Z",
"url": "https://files.pythonhosted.org/packages/a7/d8/edf84fa0fcecfe2a5392ebb937fb98ddad0d5dcd28d131751f7efc3caff4/yoga-1.3.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33c3312720ae2d21865f49e9a657a3ca45297472e8a33adba26718a2ad3f92e4",
"md5": "4f128cba8354b0fb5c5a08ef774411b6",
"sha256": "4158df95c1bab15005e2ed85593ab0d3a3dd28767764e51421d56bd06d62369d"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp38-pypy38_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "4f128cba8354b0fb5c5a08ef774411b6",
"packagetype": "bdist_wheel",
"python_version": "pp38",
"requires_python": null,
"size": 2248928,
"upload_time": "2024-11-25T13:48:02",
"upload_time_iso_8601": "2024-11-25T13:48:02.484130Z",
"url": "https://files.pythonhosted.org/packages/33/c3/312720ae2d21865f49e9a657a3ca45297472e8a33adba26718a2ad3f92e4/yoga-1.3.3-pp38-pypy38_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e530efeaad95714ff167d4d6a1cc9445794c505826e964c5b98748c11f44335",
"md5": "e797e74f88aa42d700f9631dfe91aec9",
"sha256": "7f4a90986c2a5da7a597b0480214c6d37eaedd401833afc377440a8a2469a450"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "e797e74f88aa42d700f9631dfe91aec9",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 4791582,
"upload_time": "2024-11-25T13:48:03",
"upload_time_iso_8601": "2024-11-25T13:48:03.874501Z",
"url": "https://files.pythonhosted.org/packages/4e/53/0efeaad95714ff167d4d6a1cc9445794c505826e964c5b98748c11f44335/yoga-1.3.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e427f716192103f5118dc9bfa5447a86df54d895c051a4ea8a2013a06534c687",
"md5": "0fe2e5056e83554409697aa9d19daf83",
"sha256": "7d91d28f7085459a958b227728c5127672ec85f60c6611a5c1c8d959348276b9"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0fe2e5056e83554409697aa9d19daf83",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 6904972,
"upload_time": "2024-11-25T13:48:06",
"upload_time_iso_8601": "2024-11-25T13:48:06.027811Z",
"url": "https://files.pythonhosted.org/packages/e4/27/f716192103f5118dc9bfa5447a86df54d895c051a4ea8a2013a06534c687/yoga-1.3.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a614b72fffd5221391852f5442d9de6f293146ec23dde6c7d6ba1bd609b652d",
"md5": "c8f621f745abd4e84ca1ee60cf50b397",
"sha256": "41c1e1bf1415cc3b8c806516cf1c2d7fee2520d040e58c4722b938c65326635b"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c8f621f745abd4e84ca1ee60cf50b397",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 6674199,
"upload_time": "2024-11-25T13:48:09",
"upload_time_iso_8601": "2024-11-25T13:48:09.260384Z",
"url": "https://files.pythonhosted.org/packages/4a/61/4b72fffd5221391852f5442d9de6f293146ec23dde6c7d6ba1bd609b652d/yoga-1.3.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "898bdc368c300db783892640e6f6bc753879beca9413a787858c1bac78c1317d",
"md5": "b19a5ef2fd02e92aefabae9be2169ae1",
"sha256": "110972f390aeefc711fb4205e3571478725c7db263cf48d53469ff64a48e1d7f"
},
"downloads": -1,
"filename": "yoga-1.3.3-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "b19a5ef2fd02e92aefabae9be2169ae1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": null,
"size": 2248925,
"upload_time": "2024-11-25T13:48:10",
"upload_time_iso_8601": "2024-11-25T13:48:10.750188Z",
"url": "https://files.pythonhosted.org/packages/89/8b/dc368c300db783892640e6f6bc753879beca9413a787858c1bac78c1317d/yoga-1.3.3-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3fd49eb44ebb613f449799acc146498bc2fc18f1c065e71de00106d819baa852",
"md5": "d788f63da779c441fa39a9ef6f738107",
"sha256": "ac1202ddb676c8d1fb97185d321c946d60e9a3ab6bccb46be212b2bed52bcbed"
},
"downloads": -1,
"filename": "yoga-1.3.3.tar.gz",
"has_sig": false,
"md5_digest": "d788f63da779c441fa39a9ef6f738107",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 3248069,
"upload_time": "2024-11-25T13:48:12",
"upload_time_iso_8601": "2024-11-25T13:48:12.247248Z",
"url": "https://files.pythonhosted.org/packages/3f/d4/9eb44ebb613f449799acc146498bc2fc18f1c065e71de00106d819baa852/yoga-1.3.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-25 13:48:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "wanadev",
"github_project": "yoga",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "yoga"
}