Name | pymunk JSON |
Version |
6.11.0
JSON |
| download |
home_page | None |
Summary | Pymunk is a easy-to-use pythonic 2D physics library |
upload_time | 2025-01-18 15:24:28 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | None |
keywords |
pygame
2d
physics
rigid body
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
Pymunk
======
.. image:: https://raw.githubusercontent.com/viblo/pymunk/master/docs/src/_static/pymunk_logo_animation.gif
Pymunk is an easy-to-use pythonic 2D physics library that can be used whenever
you need 2D rigid body physics from Python. Perfect when you need 2D physics
in your game, demo or simulation! It is built on top of the very
capable 2D physics library `Chipmunk2D <http://chipmunk-physics.net>`_.
The first version was released in 2007 and Pymunk is still actively developed
and maintained today, more than 15 years of active development!
Pymunk has been used with success in many projects, big and small. For example:
3 Pyweek game competition winners, dozens of published scientific
papers and even in a self-driving car simulation! See the Showcases section on
the Pymunk webpage for some examples.
2007 - 2025, Victor Blomqvist - vb@viblo.se, MIT License
This release is based on the latest Pymunk release (6.11.0),
using Chipmunk2D 7 rev dfc2fb8ca023ce6376fa2cf4a7f91c92ee08a970.
Installation
------------
In the normal case Pymunk can be installed from PyPI with pip::
> pip install pymunk
It has one direct dependency, CFFI.
Pymunk can also be installed with conda, from the conda-forge channel::
> conda install -c conda-forge pymunk
For more detailed installation instructions, please see the complete Pymunk
documentation.
Example
-------
Quick code example::
import pymunk # Import pymunk..
space = pymunk.Space() # Create a Space which contain the simulation
space.gravity = 0,-981 # Set its gravity
body = pymunk.Body() # Create a Body
body.position = 50,100 # Set the position of the body
poly = pymunk.Poly.create_box(body) # Create a box shape and attach to body
poly.mass = 10 # Set the mass on the shape
space.add(body, poly) # Add both body and shape to the simulation
print_options = pymunk.SpaceDebugDrawOptions() # For easy printing
for _ in range(100): # Run simulation 100 steps in total
space.step(0.02) # Step the simulation one step forward
space.debug_draw(print_options) # Print the state of the simulation
This will print (to console) the state of the simulation. For more visual,
detailed and advanced examples, take a look at the included demos.
They are included in the Pymunk install, in the pymunk.examples subpackage.
They can be run directly. To list the examples::
> python -m pymunk.examples -l
And to run one of them::
> python -m pymunk.examples.index_video
Contact & Support
-----------------
.. _contact-support:
**Homepage**
http://www.pymunk.org/
**Stackoverflow**
You can ask questions/browse old ones at Stackoverflow, just look for
the Pymunk tag. http://stackoverflow.com/questions/tagged/pymunk
**E-Mail**
You can email me directly at vb@viblo.se
**Issue Tracker**
Please use the issue tracker at Github to report any issues you find. This
is also the place for feature requests:
https://github.com/viblo/pymunk/issues
Regardless of the method you use I will try to answer your questions as soon
as I see them. (And if you ask on Stackoverflow other people might help as
well!)
Documentation
-------------
The full documentation including API reference, showcase of usages and
screenshots of examples is available on the Pymunk homepage,
http://www.pymunk.org
The Pymunk Vision
-----------------
"*Make 2D physics easy to include in your game*"
It is (or is striving to be):
* **Easy to use** - It should be easy to use, no complicated code should be
needed to add physics to your game or program.
* **"Pythonic"** - It should not be visible that a c-library (Chipmunk) is in
the bottom, it should feel like a Python library (no strange naming, OO,
no memory handling and more)
* **Simple to build & install** - You shouldn't need to have a zillion of
libraries installed to make it install, or do a lot of command line tricks.
* **Multi-platform** - Should work on both Windows, \*nix and OSX.
* **Non-intrusive** - It should not put restrictions on how you structure
your program and not force you to use a special game loop, it should be
possible to use with other libraries like Pygame and Pyglet.
Dependencies / Requirements
---------------------------
Basically Pymunk have been made to be as easy to install and distribute as
possible, usually `pip install` will take care of everything for you.
- Python (Runs on CPython 3.8 and later and Pypy3)
- Chipmunk (Prebuilt and included when using binary wheels)
- CFFI (will be installed automatically by Pip)
- Setuptools (should be included with Pip)
* GCC and friends (optional, you need it to compile Pymunk from source. On
windows Visual Studio is required to compile)
* Pygame (optional, you need it to run the Pygame based demos)
* Pyglet (optional, you need it to run the Pyglet based demos)
* Matplotlib & Jupyter Notebook (optional, you need it to run the Matplotlib
based demos)
* Numpy (optional, you need to it run a few demos)
* Sphinx & aafigure & sphinx_autodoc_typehints (optional, you need it to build
documentation)
Older Pythons
-------------
- Support for Python 2 (and Python 3.0 - 3.5) was dropped with Pymunk 6.0.
- Support for Python 3.6 was dropped with Pymunk 6.5.2.
- Support for Python 3.7 was dropped with Pymunk 6.9.0
If you use any of these legacy versions of Python, please use an older
Pymunk version. (It might work on newer Pymunks as well, but it's not tested,
and no wheels are built.)
Raw data
{
"_id": null,
"home_page": null,
"name": "pymunk",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "pygame, 2d, physics, rigid body",
"author": null,
"author_email": "Victor Blomqvist <vb@viblo.se>",
"download_url": "https://files.pythonhosted.org/packages/af/95/8caf3261ba3b1375d77c35854edf1430a677008dac4fca70275ad1b340c1/pymunk-6.11.0.tar.gz",
"platform": null,
"description": "Pymunk\n======\n\n.. image:: https://raw.githubusercontent.com/viblo/pymunk/master/docs/src/_static/pymunk_logo_animation.gif\n\nPymunk is an easy-to-use pythonic 2D physics library that can be used whenever \nyou need 2D rigid body physics from Python. Perfect when you need 2D physics \nin your game, demo or simulation! It is built on top of the very \ncapable 2D physics library `Chipmunk2D <http://chipmunk-physics.net>`_.\n\nThe first version was released in 2007 and Pymunk is still actively developed \nand maintained today, more than 15 years of active development!\n\nPymunk has been used with success in many projects, big and small. For example: \n3 Pyweek game competition winners, dozens of published scientific \npapers and even in a self-driving car simulation! See the Showcases section on \nthe Pymunk webpage for some examples.\n\n2007 - 2025, Victor Blomqvist - vb@viblo.se, MIT License\n\nThis release is based on the latest Pymunk release (6.11.0), \nusing Chipmunk2D 7 rev dfc2fb8ca023ce6376fa2cf4a7f91c92ee08a970.\n\n\nInstallation\n------------\n\nIn the normal case Pymunk can be installed from PyPI with pip::\n\n > pip install pymunk\n\nIt has one direct dependency, CFFI.\n\nPymunk can also be installed with conda, from the conda-forge channel::\n\n > conda install -c conda-forge pymunk\n\nFor more detailed installation instructions, please see the complete Pymunk \ndocumentation.\n\nExample\n-------\n\nQuick code example::\n \n import pymunk # Import pymunk..\n\n space = pymunk.Space() # Create a Space which contain the simulation\n space.gravity = 0,-981 # Set its gravity\n\n body = pymunk.Body() # Create a Body\n body.position = 50,100 # Set the position of the body\n\n poly = pymunk.Poly.create_box(body) # Create a box shape and attach to body\n poly.mass = 10 # Set the mass on the shape\n space.add(body, poly) # Add both body and shape to the simulation\n\n print_options = pymunk.SpaceDebugDrawOptions() # For easy printing \n\n for _ in range(100): # Run simulation 100 steps in total\n space.step(0.02) # Step the simulation one step forward\n space.debug_draw(print_options) # Print the state of the simulation\n\nThis will print (to console) the state of the simulation. For more visual, \ndetailed and advanced examples, take a look at the included demos. \nThey are included in the Pymunk install, in the pymunk.examples subpackage. \nThey can be run directly. To list the examples::\n\n > python -m pymunk.examples -l\n\nAnd to run one of them::\n\n > python -m pymunk.examples.index_video\n\n\nContact & Support\n-----------------\n.. _contact-support:\n\n**Homepage**\n http://www.pymunk.org/\n\n**Stackoverflow**\n You can ask questions/browse old ones at Stackoverflow, just look for \n the Pymunk tag. http://stackoverflow.com/questions/tagged/pymunk\n\n**E-Mail**\n You can email me directly at vb@viblo.se\n\n**Issue Tracker**\n Please use the issue tracker at Github to report any issues you find. This \n is also the place for feature requests:\n https://github.com/viblo/pymunk/issues\n \nRegardless of the method you use I will try to answer your questions as soon \nas I see them. (And if you ask on Stackoverflow other people might help as \nwell!)\n\n\nDocumentation\n-------------\n\nThe full documentation including API reference, showcase of usages and \nscreenshots of examples is available on the Pymunk homepage, \nhttp://www.pymunk.org\n\n\nThe Pymunk Vision\n-----------------\n\n \"*Make 2D physics easy to include in your game*\"\n\nIt is (or is striving to be):\n\n* **Easy to use** - It should be easy to use, no complicated code should be \n needed to add physics to your game or program.\n* **\"Pythonic\"** - It should not be visible that a c-library (Chipmunk) is in \n the bottom, it should feel like a Python library (no strange naming, OO, \n no memory handling and more)\n* **Simple to build & install** - You shouldn't need to have a zillion of \n libraries installed to make it install, or do a lot of command line tricks.\n* **Multi-platform** - Should work on both Windows, \\*nix and OSX.\n* **Non-intrusive** - It should not put restrictions on how you structure \n your program and not force you to use a special game loop, it should be \n possible to use with other libraries like Pygame and Pyglet. \n\n \nDependencies / Requirements\n---------------------------\n\nBasically Pymunk have been made to be as easy to install and distribute as \npossible, usually `pip install` will take care of everything for you.\n\n- Python (Runs on CPython 3.8 and later and Pypy3)\n- Chipmunk (Prebuilt and included when using binary wheels)\n- CFFI (will be installed automatically by Pip)\n- Setuptools (should be included with Pip)\n\n* GCC and friends (optional, you need it to compile Pymunk from source. On \n windows Visual Studio is required to compile)\n* Pygame (optional, you need it to run the Pygame based demos)\n* Pyglet (optional, you need it to run the Pyglet based demos)\n* Matplotlib & Jupyter Notebook (optional, you need it to run the Matplotlib \n based demos)\n* Numpy (optional, you need to it run a few demos)\n* Sphinx & aafigure & sphinx_autodoc_typehints (optional, you need it to build \n documentation)\n\n\nOlder Pythons\n-------------\n\n- Support for Python 2 (and Python 3.0 - 3.5) was dropped with Pymunk 6.0.\n- Support for Python 3.6 was dropped with Pymunk 6.5.2.\n- Support for Python 3.7 was dropped with Pymunk 6.9.0\n\nIf you use any of these legacy versions of Python, please use an older \nPymunk version. (It might work on newer Pymunks as well, but it's not tested, \nand no wheels are built.)\n",
"bugtrack_url": null,
"license": null,
"summary": "Pymunk is a easy-to-use pythonic 2D physics library",
"version": "6.11.0",
"project_urls": {
"Changelog": "https://github.com/viblo/pymunk/blob/master/CHANGELOG.rst",
"Documentation": "https://www.pymunk.org",
"Homepage": "https://www.pymunk.org",
"Issues": "https://github.com/viblo/viblo/issues",
"Repository": "https://github.com/viblo/pymunk.git"
},
"split_keywords": [
"pygame",
" 2d",
" physics",
" rigid body"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "ab1758a21117c67d056357c7d8213819d96dfb4773837b7f5afe9d59c3e7db08",
"md5": "d9a9f1827316eeea4242f4c259424b7e",
"sha256": "76ee20adbf40a93f85963083a1d36b860e1f6cd7b06a27029d0d388b8775cdf9"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "d9a9f1827316eeea4242f4c259424b7e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 364685,
"upload_time": "2025-01-18T15:21:54",
"upload_time_iso_8601": "2025-01-18T15:21:54.678813Z",
"url": "https://files.pythonhosted.org/packages/ab/17/58a21117c67d056357c7d8213819d96dfb4773837b7f5afe9d59c3e7db08/pymunk-6.11.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95b8cde08ef4ce1fd642533d8254c2c3cb96be3404791008f42c22a1919f47ca",
"md5": "6f5be0eea62fa2893f2a61476d1ea5d0",
"sha256": "463ac2dca6d7090ac133bffbabe38b00589ae9b600c8e63ab7ef6af281f2107d"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6f5be0eea62fa2893f2a61476d1ea5d0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 347278,
"upload_time": "2025-01-18T15:21:57",
"upload_time_iso_8601": "2025-01-18T15:21:57.525629Z",
"url": "https://files.pythonhosted.org/packages/95/b8/cde08ef4ce1fd642533d8254c2c3cb96be3404791008f42c22a1919f47ca/pymunk-6.11.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "348255111d0ca5839f71821274429c1f0f6647c21577475ee6e472b223ec0560",
"md5": "b5f8619918cdd638913ae92409543b39",
"sha256": "9dcc496808ef6f5752ed1a5ead35098a596e661e9f625f978ed204ccf539bb23"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b5f8619918cdd638913ae92409543b39",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1065584,
"upload_time": "2025-01-18T15:22:00",
"upload_time_iso_8601": "2025-01-18T15:22:00.865521Z",
"url": "https://files.pythonhosted.org/packages/34/82/55111d0ca5839f71821274429c1f0f6647c21577475ee6e472b223ec0560/pymunk-6.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80350d37d6c1c4ffedf1ed0cbfa3b6381a0a5fdb6355e520c1c9ae70521cb980",
"md5": "006e1c2424f37290de4672f0cd24e8b8",
"sha256": "21103d3660dd46c913ed0888cb2602d00aad77a66d81edd36349132a3dd25f91"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "006e1c2424f37290de4672f0cd24e8b8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 988942,
"upload_time": "2025-01-18T15:22:03",
"upload_time_iso_8601": "2025-01-18T15:22:03.986771Z",
"url": "https://files.pythonhosted.org/packages/80/35/0d37d6c1c4ffedf1ed0cbfa3b6381a0a5fdb6355e520c1c9ae70521cb980/pymunk-6.11.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": "f96aae17942d7115606898df0bf3829129b3b921af9977e9aec1f65274ae975b",
"md5": "27af83f1b018aeea9c15abeb3e0328bb",
"sha256": "adac693cf90018b55403e91fa8b0efa807ff584440c49cc0f1d0cb7a9e92ebf2"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "27af83f1b018aeea9c15abeb3e0328bb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 975278,
"upload_time": "2025-01-18T15:22:08",
"upload_time_iso_8601": "2025-01-18T15:22:08.753001Z",
"url": "https://files.pythonhosted.org/packages/f9/6a/ae17942d7115606898df0bf3829129b3b921af9977e9aec1f65274ae975b/pymunk-6.11.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c79927eefcb8d92120f37fc3e36ed4d2d578d01695b4c3e382e54b8697385733",
"md5": "fa5fb6396bcf2179072e8ff9eacc8548",
"sha256": "aeaa9fe45b7e8cc9d694fe1a65d66e6e3cbb089b72fc60c3879040ca1ce94d42"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "fa5fb6396bcf2179072e8ff9eacc8548",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1037153,
"upload_time": "2025-01-18T15:22:11",
"upload_time_iso_8601": "2025-01-18T15:22:11.719427Z",
"url": "https://files.pythonhosted.org/packages/c7/99/27eefcb8d92120f37fc3e36ed4d2d578d01695b4c3e382e54b8697385733/pymunk-6.11.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e186f068f17bb43962883c40dcf2e1d648bc133e6fe23d82d8041b307177aba1",
"md5": "02d9090edba9e7040f0e2550858588cb",
"sha256": "5c8f241e5e37eea7c285f055320e34adcead10845ffc0d2f886dcf5a3a0c6fdd"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "02d9090edba9e7040f0e2550858588cb",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 315554,
"upload_time": "2025-01-18T15:22:14",
"upload_time_iso_8601": "2025-01-18T15:22:14.260248Z",
"url": "https://files.pythonhosted.org/packages/e1/86/f068f17bb43962883c40dcf2e1d648bc133e6fe23d82d8041b307177aba1/pymunk-6.11.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce08462fd3de163883379fff77a0a52e583ed909886461652b8c89eef387f840",
"md5": "c78a395228d02641408f9e811b6b0c49",
"sha256": "a521dfac30947f2320370ae67d72ffb7141eb10b474d5f2d810313bfce3a950b"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "c78a395228d02641408f9e811b6b0c49",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 366948,
"upload_time": "2025-01-18T15:22:15",
"upload_time_iso_8601": "2025-01-18T15:22:15.740442Z",
"url": "https://files.pythonhosted.org/packages/ce/08/462fd3de163883379fff77a0a52e583ed909886461652b8c89eef387f840/pymunk-6.11.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f4fa81dff1f9c96bf2d7e2c95d0e2cde97db72f0e8d3811ec053f7a1cab0ada",
"md5": "52a328ee1da3017ceb6becc3ca239b6b",
"sha256": "306ac1a5790ff0203d4704c588933c9fd8092119af3623c417b55b0be805aa53"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "52a328ee1da3017ceb6becc3ca239b6b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 364689,
"upload_time": "2025-01-18T15:22:18",
"upload_time_iso_8601": "2025-01-18T15:22:18.076780Z",
"url": "https://files.pythonhosted.org/packages/8f/4f/a81dff1f9c96bf2d7e2c95d0e2cde97db72f0e8d3811ec053f7a1cab0ada/pymunk-6.11.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef30e661850b835a0ce3586cf0dd15611a42beab89000cbae5c5682f3cfcc459",
"md5": "2d218d9d35cea706584c30ef3acc385d",
"sha256": "f95a70b1d32095579e2ed4ca03473ddb7163283f6d278495bde95dfc9229e55e"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2d218d9d35cea706584c30ef3acc385d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 347276,
"upload_time": "2025-01-18T15:22:19",
"upload_time_iso_8601": "2025-01-18T15:22:19.659171Z",
"url": "https://files.pythonhosted.org/packages/ef/30/e661850b835a0ce3586cf0dd15611a42beab89000cbae5c5682f3cfcc459/pymunk-6.11.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0da2f6dbed59213c14f485aeaa11b9b9ca8f331e14ecb00758a9a8f99a00f28c",
"md5": "d06bbda5bbfd2b99aae23f921afac15e",
"sha256": "6cfe3323fa4b554bf2ea07c56eb879477e4a27d7f5a401077a966cf161ba72b4"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d06bbda5bbfd2b99aae23f921afac15e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1065617,
"upload_time": "2025-01-18T15:22:21",
"upload_time_iso_8601": "2025-01-18T15:22:21.824104Z",
"url": "https://files.pythonhosted.org/packages/0d/a2/f6dbed59213c14f485aeaa11b9b9ca8f331e14ecb00758a9a8f99a00f28c/pymunk-6.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8b73f52f748c65dfd46d55db8bc48ccbbfc0705acf4d4c875e6af4e8b214c64",
"md5": "dc47d6ca9555933b20a347ecc0da1101",
"sha256": "e483827a0d74a306d252247004a2fb588d79eb7053517b3e7b27a078818956e8"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "dc47d6ca9555933b20a347ecc0da1101",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 988958,
"upload_time": "2025-01-18T15:22:24",
"upload_time_iso_8601": "2025-01-18T15:22:24.939915Z",
"url": "https://files.pythonhosted.org/packages/c8/b7/3f52f748c65dfd46d55db8bc48ccbbfc0705acf4d4c875e6af4e8b214c64/pymunk-6.11.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": "26c2c62a73f4cd4c1bd95203716c1b5a85dd2fb8e4b802815878946aa8279a68",
"md5": "8c950061a7d01b37cf79ac39a3a5f4d1",
"sha256": "2fc76d66e4f44e5acc6a96172aaa45a9da4ede17eb90580e844cde8a956b68ab"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8c950061a7d01b37cf79ac39a3a5f4d1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 975277,
"upload_time": "2025-01-18T15:22:27",
"upload_time_iso_8601": "2025-01-18T15:22:27.231811Z",
"url": "https://files.pythonhosted.org/packages/26/c2/c62a73f4cd4c1bd95203716c1b5a85dd2fb8e4b802815878946aa8279a68/pymunk-6.11.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4728d1efac5a5a9e37e173729d96917bce3c70cdadf98b8cfb942e373d171c05",
"md5": "acc8cdbcd16c38990f938ccf50d92c74",
"sha256": "febe659290ea06d24c6fe69bfa010f45f240884aa6da4c1dfc2b33fba5ccd093"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "acc8cdbcd16c38990f938ccf50d92c74",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1037144,
"upload_time": "2025-01-18T15:22:30",
"upload_time_iso_8601": "2025-01-18T15:22:30.813409Z",
"url": "https://files.pythonhosted.org/packages/47/28/d1efac5a5a9e37e173729d96917bce3c70cdadf98b8cfb942e373d171c05/pymunk-6.11.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a544a991d2a83207eedc3fa176f62e4a98c6c099dbaa7473c980ffdacc1119a7",
"md5": "aab0d1c1038ac92807ad8e88100023c6",
"sha256": "b40e4f0fb77d5f7ce73a0faa89d2dc55ca2ee1cdf44e2a8a89a1acabff4b505d"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "aab0d1c1038ac92807ad8e88100023c6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 315555,
"upload_time": "2025-01-18T15:22:34",
"upload_time_iso_8601": "2025-01-18T15:22:34.826001Z",
"url": "https://files.pythonhosted.org/packages/a5/44/a991d2a83207eedc3fa176f62e4a98c6c099dbaa7473c980ffdacc1119a7/pymunk-6.11.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ff7f841c85a050adb543ff483f3576f7aca6eea6a6fee4f7b94e6313361984d",
"md5": "3513a6f7970257f2dc1088d33822309d",
"sha256": "dbd45427f27d93ec3a6a537bbf416ad810de6507648a63626a35a7dd10fd0da2"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "3513a6f7970257f2dc1088d33822309d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 366948,
"upload_time": "2025-01-18T15:22:36",
"upload_time_iso_8601": "2025-01-18T15:22:36.981135Z",
"url": "https://files.pythonhosted.org/packages/3f/f7/f841c85a050adb543ff483f3576f7aca6eea6a6fee4f7b94e6313361984d/pymunk-6.11.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7243f25044c5d3d9b8a5679dc1820ad1ab5fc007603935e940f05ce67ccf4a6a",
"md5": "f54a6b09b84c873be2790ea5c7ea04ce",
"sha256": "39d19e759a7b5664350eea7e1ae358a679d01e714443a854c2a9a64116920dc9"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "f54a6b09b84c873be2790ea5c7ea04ce",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 365047,
"upload_time": "2025-01-18T15:22:39",
"upload_time_iso_8601": "2025-01-18T15:22:39.311831Z",
"url": "https://files.pythonhosted.org/packages/72/43/f25044c5d3d9b8a5679dc1820ad1ab5fc007603935e940f05ce67ccf4a6a/pymunk-6.11.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e903b93457dc0a8c14c19f0eb9c6940447ec47aa149cdf63817d0ad53cff125f",
"md5": "97acc5220624156fbb9506e6e9720e46",
"sha256": "20d93c66fe4928fa828604207547b18e01ed578629c352ca2e1921b00af6ccf4"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "97acc5220624156fbb9506e6e9720e46",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 347393,
"upload_time": "2025-01-18T15:22:42",
"upload_time_iso_8601": "2025-01-18T15:22:42.544195Z",
"url": "https://files.pythonhosted.org/packages/e9/03/b93457dc0a8c14c19f0eb9c6940447ec47aa149cdf63817d0ad53cff125f/pymunk-6.11.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e34a3fd020663c2bda0ae690c6cee14e6aef5f9819938ef93c8591c219c626bb",
"md5": "705cb57425a1b93e34e2b4bd5cb2ec6d",
"sha256": "1f9133c86a5e1509613043eb1afdc1d9430dfe7f8dfd66ea27bb46acfa1a8d9a"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "705cb57425a1b93e34e2b4bd5cb2ec6d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1071360,
"upload_time": "2025-01-18T15:22:46",
"upload_time_iso_8601": "2025-01-18T15:22:46.636733Z",
"url": "https://files.pythonhosted.org/packages/e3/4a/3fd020663c2bda0ae690c6cee14e6aef5f9819938ef93c8591c219c626bb/pymunk-6.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb0c5538bbe402a5c35413413f7be1a1be291329f008e6c1d9fb13f090f401be",
"md5": "d20255349ed5cd9b501a0d306ce6c664",
"sha256": "db5184355a72dd5b4d8fdee6960296ff4829cafa9d8596f7833e230dd439ca29"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d20255349ed5cd9b501a0d306ce6c664",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 990701,
"upload_time": "2025-01-18T15:22:50",
"upload_time_iso_8601": "2025-01-18T15:22:50.006735Z",
"url": "https://files.pythonhosted.org/packages/bb/0c/5538bbe402a5c35413413f7be1a1be291329f008e6c1d9fb13f090f401be/pymunk-6.11.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": "fa37092e673fb084266ab9b4743a2976f684c72fd3dc4c95e94c9c62a411762c",
"md5": "7d23b6146b8ce460abfdecb644a19816",
"sha256": "986f807fe44da499178e221bac614bc5aa11c34077887ffae8865c379d2e341e"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7d23b6146b8ce460abfdecb644a19816",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 976609,
"upload_time": "2025-01-18T15:22:53",
"upload_time_iso_8601": "2025-01-18T15:22:53.146983Z",
"url": "https://files.pythonhosted.org/packages/fa/37/092e673fb084266ab9b4743a2976f684c72fd3dc4c95e94c9c62a411762c/pymunk-6.11.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e55a64ec48156345b28c9a4195e4b093febe46b38f60e0789479945ff45c8249",
"md5": "cd24d2f08ebf0eb029942a2dce0865c2",
"sha256": "9567f4288a933d6d96e94c7710925b41e3ca0cd93799e8b34517ec943f66932b"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "cd24d2f08ebf0eb029942a2dce0865c2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1042582,
"upload_time": "2025-01-18T15:22:56",
"upload_time_iso_8601": "2025-01-18T15:22:56.312065Z",
"url": "https://files.pythonhosted.org/packages/e5/5a/64ec48156345b28c9a4195e4b093febe46b38f60e0789479945ff45c8249/pymunk-6.11.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a6031b22fc1c3f993ea9e84185af18b2f7b26b2c23833b051cb09f21b8eb9c6",
"md5": "a52e694ce73159b87972baa1f7064436",
"sha256": "1fee1d496e72b4ac795875bd0e7f2089583b5746d55e6b1bd074e4e228b1b695"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "a52e694ce73159b87972baa1f7064436",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 315560,
"upload_time": "2025-01-18T15:22:58",
"upload_time_iso_8601": "2025-01-18T15:22:58.046587Z",
"url": "https://files.pythonhosted.org/packages/0a/60/31b22fc1c3f993ea9e84185af18b2f7b26b2c23833b051cb09f21b8eb9c6/pymunk-6.11.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d0ae379dbfa3be00109e4eb93c47e143c8659818b99b4089ee3cb80d372de3e",
"md5": "35369523f26ac0d706d7536d83c9665e",
"sha256": "7656b5f6def4272cd53b5476f64f5f7a66578630a6f92137f26a2e3d8572cd09"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "35369523f26ac0d706d7536d83c9665e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 366939,
"upload_time": "2025-01-18T15:23:03",
"upload_time_iso_8601": "2025-01-18T15:23:03.029848Z",
"url": "https://files.pythonhosted.org/packages/0d/0a/e379dbfa3be00109e4eb93c47e143c8659818b99b4089ee3cb80d372de3e/pymunk-6.11.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73efd099e5c6a90428642242e24b2c4e15aa4fc65b32351201c16af62fe6f220",
"md5": "e073c94f010b108ff43dfc30e6ab0122",
"sha256": "aabdd315a76ec972726419ce644f62adc0d51dfe540003554cd00afdb1aeda0b"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "e073c94f010b108ff43dfc30e6ab0122",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 365044,
"upload_time": "2025-01-18T15:23:04",
"upload_time_iso_8601": "2025-01-18T15:23:04.624176Z",
"url": "https://files.pythonhosted.org/packages/73/ef/d099e5c6a90428642242e24b2c4e15aa4fc65b32351201c16af62fe6f220/pymunk-6.11.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fb5f492f5ab6c3b79fa85307fc8c431773358423725816553335b9c5b8bca7b9",
"md5": "93bd020cf54f5cbaf6e3f8c44a9275e1",
"sha256": "7fc0e25d52752adea82eaae29077de08090e05e9e4d025affe80ad0239e39839"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "93bd020cf54f5cbaf6e3f8c44a9275e1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 347397,
"upload_time": "2025-01-18T15:23:07",
"upload_time_iso_8601": "2025-01-18T15:23:07.118857Z",
"url": "https://files.pythonhosted.org/packages/fb/5f/492f5ab6c3b79fa85307fc8c431773358423725816553335b9c5b8bca7b9/pymunk-6.11.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "190a82f130e7e8b8f9b297bbe8b4dd63d5f9b378ac5f3b646646bc7b2258fcc5",
"md5": "bf1c0746e4ac791d830ec50fdc1a08c0",
"sha256": "0345b6fed28b41dfb7d5973a96335f40a19c7c62ecc6941d3a27459ce490c76f"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bf1c0746e4ac791d830ec50fdc1a08c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1071192,
"upload_time": "2025-01-18T15:23:10",
"upload_time_iso_8601": "2025-01-18T15:23:10.184772Z",
"url": "https://files.pythonhosted.org/packages/19/0a/82f130e7e8b8f9b297bbe8b4dd63d5f9b378ac5f3b646646bc7b2258fcc5/pymunk-6.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ac16d50604c63e0ceeb66f56781d8f36ad9e217a5800a980273932f9dd3b874",
"md5": "ffd9e6b9fafc077837035dde1551bb7c",
"sha256": "5101ec2488a59bcedd11eef66dbe0ced18a63b4ae0843350b84f4e13c5dfc139"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ffd9e6b9fafc077837035dde1551bb7c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 990710,
"upload_time": "2025-01-18T15:23:13",
"upload_time_iso_8601": "2025-01-18T15:23:13.450089Z",
"url": "https://files.pythonhosted.org/packages/8a/c1/6d50604c63e0ceeb66f56781d8f36ad9e217a5800a980273932f9dd3b874/pymunk-6.11.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": "992ac2854e5bd2d276ac53ebf517da6fa4e43bceb8ffd6162f9d256e9b7b1972",
"md5": "2f89ee6fec35f365d23bcd04c897c486",
"sha256": "22928a950db49f66b12ac33de21953b0a896c405727c91f78100300c8b60635e"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "2f89ee6fec35f365d23bcd04c897c486",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 976611,
"upload_time": "2025-01-18T15:23:16",
"upload_time_iso_8601": "2025-01-18T15:23:16.489689Z",
"url": "https://files.pythonhosted.org/packages/99/2a/c2854e5bd2d276ac53ebf517da6fa4e43bceb8ffd6162f9d256e9b7b1972/pymunk-6.11.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26a768417c0a161ac806ca919e58b1ce52075bbdf34221e6030ecf69d2d556f9",
"md5": "eaf14ce57466faa76f671836b7b7e871",
"sha256": "cce20c4f7f9bf2df4334448099b3e736bf926b99069fda78c245c36304d2a285"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "eaf14ce57466faa76f671836b7b7e871",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1042544,
"upload_time": "2025-01-18T15:23:19",
"upload_time_iso_8601": "2025-01-18T15:23:19.536464Z",
"url": "https://files.pythonhosted.org/packages/26/a7/68417c0a161ac806ca919e58b1ce52075bbdf34221e6030ecf69d2d556f9/pymunk-6.11.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ce63b24ba6578941caed93c00b64424b9e4225191dd6f590d46b2c835c308a7",
"md5": "722526b5d29333f4836c8cf0247e7dfa",
"sha256": "54180ea60a96549d9ee9d9398a19d44667099e82e6794c0e22d326998bd8b4e3"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "722526b5d29333f4836c8cf0247e7dfa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 315558,
"upload_time": "2025-01-18T15:23:21",
"upload_time_iso_8601": "2025-01-18T15:23:21.227708Z",
"url": "https://files.pythonhosted.org/packages/5c/e6/3b24ba6578941caed93c00b64424b9e4225191dd6f590d46b2c835c308a7/pymunk-6.11.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa9b0a88f4a03692ed20ecb6da372cd880eddde7a748e980da5bcab2ced09a51",
"md5": "cd5dc90e8114c03af9f868afe4e85114",
"sha256": "dc7b0192dd1a8d15be08c91a596ccaf78b9a3d8643ca8374f543bbf90ded7d85"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "cd5dc90e8114c03af9f868afe4e85114",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 366938,
"upload_time": "2025-01-18T15:23:22",
"upload_time_iso_8601": "2025-01-18T15:23:22.974924Z",
"url": "https://files.pythonhosted.org/packages/aa/9b/0a88f4a03692ed20ecb6da372cd880eddde7a748e980da5bcab2ced09a51/pymunk-6.11.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1cea58e88f31e8046f297b2c9bf3af90a565f110381a9d54d15b94c24d09a0b",
"md5": "8c4b7076dcab1af674ae35f38271d029",
"sha256": "463af5777857d42f0dccceae52d18d476d65fb10ebe2a4555de76f556f136460"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "8c4b7076dcab1af674ae35f38271d029",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 364672,
"upload_time": "2025-01-18T15:23:25",
"upload_time_iso_8601": "2025-01-18T15:23:25.568590Z",
"url": "https://files.pythonhosted.org/packages/e1/ce/a58e88f31e8046f297b2c9bf3af90a565f110381a9d54d15b94c24d09a0b/pymunk-6.11.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a30f6ff909363f4274211c4ab82c58b20d76415c3401a2c9d579b0c96c7ee3c7",
"md5": "600c0ac300cde351c5a26f2833f57ac6",
"sha256": "d046d972124a19a215b55f42e611b91e96536800ecc931cfd89cd8f91ee08422"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "600c0ac300cde351c5a26f2833f57ac6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 347320,
"upload_time": "2025-01-18T15:23:27",
"upload_time_iso_8601": "2025-01-18T15:23:27.173080Z",
"url": "https://files.pythonhosted.org/packages/a3/0f/6ff909363f4274211c4ab82c58b20d76415c3401a2c9d579b0c96c7ee3c7/pymunk-6.11.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7d915598b1d5d71eee99bccdb66391118611a6380e221df45f0d9fb160950b3b",
"md5": "d7df287f8312b39e73dd80a08c75e946",
"sha256": "b6ff89fc966123d0696a4ed887f92f64fbcf7302fa77d93c659a12d104d33bd2"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "d7df287f8312b39e73dd80a08c75e946",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1065833,
"upload_time": "2025-01-18T15:23:31",
"upload_time_iso_8601": "2025-01-18T15:23:31.880095Z",
"url": "https://files.pythonhosted.org/packages/7d/91/5598b1d5d71eee99bccdb66391118611a6380e221df45f0d9fb160950b3b/pymunk-6.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50833ab2b545c9bb39559d02f852cf59f4ef59be7137e3f5b74451dff2bf78e7",
"md5": "ad47130ac82de7dbed2e4a6225e8fdb1",
"sha256": "496e78423ed709750a0e5820a5b4158d6f0e204dc90c7124fe9b53e6c663d2f4"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ad47130ac82de7dbed2e4a6225e8fdb1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 989187,
"upload_time": "2025-01-18T15:23:35",
"upload_time_iso_8601": "2025-01-18T15:23:35.470014Z",
"url": "https://files.pythonhosted.org/packages/50/83/3ab2b545c9bb39559d02f852cf59f4ef59be7137e3f5b74451dff2bf78e7/pymunk-6.11.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08988ab44e726221f2ab322652516bcec8ad07be20b27350fa7f91bafcbed0d5",
"md5": "09ba26435cfccac4c125a2c95c8812ac",
"sha256": "57242ec485ea6359b8941013f6a79593cb25a3bc9f97a793762a53bea50e7f29"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "09ba26435cfccac4c125a2c95c8812ac",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 975441,
"upload_time": "2025-01-18T15:23:39",
"upload_time_iso_8601": "2025-01-18T15:23:39.186326Z",
"url": "https://files.pythonhosted.org/packages/08/98/8ab44e726221f2ab322652516bcec8ad07be20b27350fa7f91bafcbed0d5/pymunk-6.11.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "740515b1f1b2e03f7936e1a4dcec8db7669456d6666fdc6f03f7929915789734",
"md5": "9e40bb3fc7f38fdbb2bc250f1da48ce3",
"sha256": "f0ea43eda245aa85ee4dc0225d40346c7f50134372162179841cd2a4808a9c85"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "9e40bb3fc7f38fdbb2bc250f1da48ce3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1037323,
"upload_time": "2025-01-18T15:23:41",
"upload_time_iso_8601": "2025-01-18T15:23:41.470730Z",
"url": "https://files.pythonhosted.org/packages/74/05/15b1f1b2e03f7936e1a4dcec8db7669456d6666fdc6f03f7929915789734/pymunk-6.11.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "549da3e968111ecb3c2c61c6c9d223ef17d57a22aff396fb8b24d61db3fd2ad2",
"md5": "b0a71a76835d96662b1e10c52369690e",
"sha256": "513a6c64059083db5df4710792f308465d6d7d4dba08a4130c656422ded1321b"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "b0a71a76835d96662b1e10c52369690e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 314912,
"upload_time": "2025-01-18T15:23:43",
"upload_time_iso_8601": "2025-01-18T15:23:43.239254Z",
"url": "https://files.pythonhosted.org/packages/54/9d/a3e968111ecb3c2c61c6c9d223ef17d57a22aff396fb8b24d61db3fd2ad2/pymunk-6.11.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "44a774377e5af0d1b58fd81ab0d4cd32abf6756807411774e0684d849ab840d7",
"md5": "0a781e665d1663915a3952d45c58fa5b",
"sha256": "90df332f37fe67351aaf0c0dccec01f9f9d07845e19a6d11feb37b4cf07759c8"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "0a781e665d1663915a3952d45c58fa5b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 366947,
"upload_time": "2025-01-18T15:23:44",
"upload_time_iso_8601": "2025-01-18T15:23:44.858250Z",
"url": "https://files.pythonhosted.org/packages/44/a7/74377e5af0d1b58fd81ab0d4cd32abf6756807411774e0684d849ab840d7/pymunk-6.11.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "06533dd7f84fe3701efd25c581116b10ad16ee8ac652e7fac9286d11ea36124d",
"md5": "807df19009586bb770b699f4fca125b9",
"sha256": "031f56710ca7a2bb5741cb9a1e01c579c88bf1d6cb9a72efc26f7951c6648da5"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "807df19009586bb770b699f4fca125b9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 364674,
"upload_time": "2025-01-18T15:23:46",
"upload_time_iso_8601": "2025-01-18T15:23:46.780702Z",
"url": "https://files.pythonhosted.org/packages/06/53/3dd7f84fe3701efd25c581116b10ad16ee8ac652e7fac9286d11ea36124d/pymunk-6.11.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6ba34c3c14565686a55479442193a08808d901612e530c5211a17fd4c6cf2d79",
"md5": "8d4a47be3c4b6b000f7f427494813558",
"sha256": "9894a5c410567e694237a9e10df297783d358658cee8f648ab3846d7a0cf8b23"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8d4a47be3c4b6b000f7f427494813558",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 347272,
"upload_time": "2025-01-18T15:23:48",
"upload_time_iso_8601": "2025-01-18T15:23:48.375709Z",
"url": "https://files.pythonhosted.org/packages/6b/a3/4c3c14565686a55479442193a08808d901612e530c5211a17fd4c6cf2d79/pymunk-6.11.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae467f09df0874ea24cd54a1676d1c11e06d78dac1ffb57096806a5c1ccfeaec",
"md5": "4f17a92319e2a6cf62f544339ca8cd9b",
"sha256": "6abe61213af2fe9ba2f2b87c90d8dead2066f85f1bd65b86c6d63a99a8ac29e5"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4f17a92319e2a6cf62f544339ca8cd9b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1065566,
"upload_time": "2025-01-18T15:23:50",
"upload_time_iso_8601": "2025-01-18T15:23:50.711660Z",
"url": "https://files.pythonhosted.org/packages/ae/46/7f09df0874ea24cd54a1676d1c11e06d78dac1ffb57096806a5c1ccfeaec/pymunk-6.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07450ad2664a5473d8f19617dbf89ec8f43ba30159af8b7c0ea5b25d257fad73",
"md5": "a5d7fb7c05ab625cc8ee5b2390d8cb6d",
"sha256": "2c266e6228831ea16b469008159d1267584e7635dc334d260b1a1a219bc35a8b"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a5d7fb7c05ab625cc8ee5b2390d8cb6d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 988975,
"upload_time": "2025-01-18T15:23:53",
"upload_time_iso_8601": "2025-01-18T15:23:53.132106Z",
"url": "https://files.pythonhosted.org/packages/07/45/0ad2664a5473d8f19617dbf89ec8f43ba30159af8b7c0ea5b25d257fad73/pymunk-6.11.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": "93bd8fd22e97dda9c0a37cb039a90e941f4f9cb97d490029922c7d81c7845062",
"md5": "d77ba185adcd330baa2b32b2efa669d2",
"sha256": "e76708c8015e5263fc31103b5775eae26020ec5c8f8d9abb9b30621fee06edab"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "d77ba185adcd330baa2b32b2efa669d2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 975250,
"upload_time": "2025-01-18T15:23:56",
"upload_time_iso_8601": "2025-01-18T15:23:56.076173Z",
"url": "https://files.pythonhosted.org/packages/93/bd/8fd22e97dda9c0a37cb039a90e941f4f9cb97d490029922c7d81c7845062/pymunk-6.11.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "612ee10d3ae5027d6b533c381680ba6a5d5e2b43c853f830ee1d1d65d94bcbad",
"md5": "c3d5eb0d64001c706b1ed5baef814ebf",
"sha256": "3e7d40a102099507fc4a5e51b638151d47d0cc4c1c6adfb1fbcf5a856b7cec90"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c3d5eb0d64001c706b1ed5baef814ebf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1037137,
"upload_time": "2025-01-18T15:23:59",
"upload_time_iso_8601": "2025-01-18T15:23:59.145666Z",
"url": "https://files.pythonhosted.org/packages/61/2e/e10d3ae5027d6b533c381680ba6a5d5e2b43c853f830ee1d1d65d94bcbad/pymunk-6.11.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "67507af0518752ee03a69eb275263f004118f1f715ea84c99f71b667177943ab",
"md5": "02ef25cfe47a9c6964a74f5b2d8bc081",
"sha256": "8378bc0ca871e3430346523c72c0259e9499c3794f5f51c89649b7d40e56e44d"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "02ef25cfe47a9c6964a74f5b2d8bc081",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 315555,
"upload_time": "2025-01-18T15:24:00",
"upload_time_iso_8601": "2025-01-18T15:24:00.829787Z",
"url": "https://files.pythonhosted.org/packages/67/50/7af0518752ee03a69eb275263f004118f1f715ea84c99f71b667177943ab/pymunk-6.11.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "30f30f75c64e27f74ba7c58d09aba54320b68bdb616c9cebb0fa694854e81aa8",
"md5": "51a75269027110913367bbaecd793d7d",
"sha256": "d283441141df0be208c5511dd15073c4b7516817962f88526832fac14c906a5e"
},
"downloads": -1,
"filename": "pymunk-6.11.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "51a75269027110913367bbaecd793d7d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 366948,
"upload_time": "2025-01-18T15:24:02",
"upload_time_iso_8601": "2025-01-18T15:24:02.420076Z",
"url": "https://files.pythonhosted.org/packages/30/f3/0f75c64e27f74ba7c58d09aba54320b68bdb616c9cebb0fa694854e81aa8/pymunk-6.11.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8f11be2a7a78fb4099513bfa6cfa39154e3c6fe56332e1f675b2074adbf3b5f8",
"md5": "bf6413d6075fa4bc35d345e60c77af4f",
"sha256": "ef988643eda90bed7cb5e84724c5858a0baf2fb1ef0a9ed913212292d410e7ec"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "bf6413d6075fa4bc35d345e60c77af4f",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 289862,
"upload_time": "2025-01-18T15:24:04",
"upload_time_iso_8601": "2025-01-18T15:24:04.168721Z",
"url": "https://files.pythonhosted.org/packages/8f/11/be2a7a78fb4099513bfa6cfa39154e3c6fe56332e1f675b2074adbf3b5f8/pymunk-6.11.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a445002faebb6aee275893ba1e5800b1b87406bf2b84a7121b1711cf7a95e8f",
"md5": "9977a4a0f295d47ecda0a9a978c834e5",
"sha256": "befe5208ada85750b8b0624c09b6ad2fc472d2bca8a523b623e43eaa264a4713"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9977a4a0f295d47ecda0a9a978c834e5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 281673,
"upload_time": "2025-01-18T15:24:05",
"upload_time_iso_8601": "2025-01-18T15:24:05.678095Z",
"url": "https://files.pythonhosted.org/packages/4a/44/5002faebb6aee275893ba1e5800b1b87406bf2b84a7121b1711cf7a95e8f/pymunk-6.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96d5625aafd7dec264715427727ba70519b2f9ca5ee5803f2248226157587757",
"md5": "4ecc055b482e169c27efea5b4c4c5a87",
"sha256": "af064efe6ac4f56bbdcee99675e3b341a7e9190c24bfbf1c455a4169baa6799d"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4ecc055b482e169c27efea5b4c4c5a87",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 325900,
"upload_time": "2025-01-18T15:24:07",
"upload_time_iso_8601": "2025-01-18T15:24:07.330448Z",
"url": "https://files.pythonhosted.org/packages/96/d5/625aafd7dec264715427727ba70519b2f9ca5ee5803f2248226157587757/pymunk-6.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83fde7d6d0c00d7ac4f01444fe4c1762bce140f9b17f1cf7af80003cc544fe67",
"md5": "6c4e7c6f602a61020c3d5cf50aa856ad",
"sha256": "6dec1b8ddc5ac1574ed2501679df65f451908bfdb8382f45a049fe05bbd77206"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6c4e7c6f602a61020c3d5cf50aa856ad",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 334365,
"upload_time": "2025-01-18T15:24:09",
"upload_time_iso_8601": "2025-01-18T15:24:09.061117Z",
"url": "https://files.pythonhosted.org/packages/83/fd/e7d6d0c00d7ac4f01444fe4c1762bce140f9b17f1cf7af80003cc544fe67/pymunk-6.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9012756cec9c1e15d67b0d1b597bbb1f64be362682e548a9b4a25f6a1ee197f0",
"md5": "f9ba3ff679cf957343a758f8076d68c4",
"sha256": "c3cc233c194b0e7e895c0a990e9b5777145c5a4b59b4efaace7ce5eeb60a0cfa"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "f9ba3ff679cf957343a758f8076d68c4",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 308077,
"upload_time": "2025-01-18T15:24:11",
"upload_time_iso_8601": "2025-01-18T15:24:11.261511Z",
"url": "https://files.pythonhosted.org/packages/90/12/756cec9c1e15d67b0d1b597bbb1f64be362682e548a9b4a25f6a1ee197f0/pymunk-6.11.0-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c84edc1a41e1247d26fb6473ce4e5b98ce9388acdcb174112c3ee56d3258af0",
"md5": "d19e8312b92c381ca6a5477e351fc2be",
"sha256": "10fed53ea5d0cb3c8c75ad3352c48f534bb03b19f262b539704108a3f232e7d2"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"has_sig": false,
"md5_digest": "d19e8312b92c381ca6a5477e351fc2be",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 289862,
"upload_time": "2025-01-18T15:24:13",
"upload_time_iso_8601": "2025-01-18T15:24:13.846699Z",
"url": "https://files.pythonhosted.org/packages/4c/84/edc1a41e1247d26fb6473ce4e5b98ce9388acdcb174112c3ee56d3258af0/pymunk-6.11.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e822b6714e911b475f16535f9efeb565d5ebd13750c28aacb1add50a63ad9163",
"md5": "bb37ad5cfd1e5d45dced989b6211d522",
"sha256": "00c37404fac0167d3a9084f0a5396c973097c47312a7dfc60b3f2a66da53a31d"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "bb37ad5cfd1e5d45dced989b6211d522",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 281668,
"upload_time": "2025-01-18T15:24:15",
"upload_time_iso_8601": "2025-01-18T15:24:15.550776Z",
"url": "https://files.pythonhosted.org/packages/e8/22/b6714e911b475f16535f9efeb565d5ebd13750c28aacb1add50a63ad9163/pymunk-6.11.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0535733d52cab27d29e63783b0af49d222ce194d4c776e32d0eaa2b91a6add04",
"md5": "0ca19ebe7c0e1237ed6989ab4d2f8421",
"sha256": "a02c70bcc11a8829c5ada64befe0a5468c4b6ae964a91fe25573d309c615dd93"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0ca19ebe7c0e1237ed6989ab4d2f8421",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 325897,
"upload_time": "2025-01-18T15:24:18",
"upload_time_iso_8601": "2025-01-18T15:24:18.161770Z",
"url": "https://files.pythonhosted.org/packages/05/35/733d52cab27d29e63783b0af49d222ce194d4c776e32d0eaa2b91a6add04/pymunk-6.11.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37cc8724fda118ec1eae34b139a3db0aa7c111395e64b4deef19cd0ae9aa4883",
"md5": "23b4d41e171968ed047345d11c64396c",
"sha256": "5bedf33acda3ef01b376342ec342a7827dac3432ce6a635741fa752ba172e2ff"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "23b4d41e171968ed047345d11c64396c",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 334360,
"upload_time": "2025-01-18T15:24:20",
"upload_time_iso_8601": "2025-01-18T15:24:20.615703Z",
"url": "https://files.pythonhosted.org/packages/37/cc/8724fda118ec1eae34b139a3db0aa7c111395e64b4deef19cd0ae9aa4883/pymunk-6.11.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2cfdefaeb3b96b07f2d5b054b9218e09d598b0eec707598b765b6e21b3715a4",
"md5": "f1eea0b71c65a75702831c7e22089433",
"sha256": "5734f9e5155780e9b95b1109ebd6ff06f007122ad69b81735dd1d2aea6191006"
},
"downloads": -1,
"filename": "pymunk-6.11.0-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "f1eea0b71c65a75702831c7e22089433",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 308077,
"upload_time": "2025-01-18T15:24:23",
"upload_time_iso_8601": "2025-01-18T15:24:23.271064Z",
"url": "https://files.pythonhosted.org/packages/f2/cf/defaeb3b96b07f2d5b054b9218e09d598b0eec707598b765b6e21b3715a4/pymunk-6.11.0-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af958caf3261ba3b1375d77c35854edf1430a677008dac4fca70275ad1b340c1",
"md5": "e7bc5472353fd32bbf9c88422bba04bf",
"sha256": "3ac6e70b98281ffe8020d7aef950418cf3811b904d3a11c5455cf4d86eccf796"
},
"downloads": -1,
"filename": "pymunk-6.11.0.tar.gz",
"has_sig": false,
"md5_digest": "e7bc5472353fd32bbf9c88422bba04bf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 3362952,
"upload_time": "2025-01-18T15:24:28",
"upload_time_iso_8601": "2025-01-18T15:24:28.033954Z",
"url": "https://files.pythonhosted.org/packages/af/95/8caf3261ba3b1375d77c35854edf1430a677008dac4fca70275ad1b340c1/pymunk-6.11.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-18 15:24:28",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "viblo",
"github_project": "pymunk",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pymunk"
}