The Cython language makes writing C extensions for the Python language as
easy as Python itself. Cython is a source code translator based on Pyrex_,
but supports more cutting edge functionality and optimizations.
The Cython language is a superset of the Python language (almost all Python
code is also valid Cython code), but Cython additionally supports optional
static typing to natively call C functions, operate with C++ classes and
declare fast C types on variables and class attributes. This allows the
compiler to generate very efficient C code from Cython code.
This makes Cython the ideal language for writing glue code for external
C/C++ libraries, and for fast C modules that speed up the execution of
Python code.
The newest Cython release can always be downloaded from https://cython.org/.
Unpack the tarball or zip file, enter the directory, and then run::
pip install .
Note that for one-time builds, e.g. for CI/testing, on platforms that are not
covered by one of the wheel packages provided on PyPI *and* the pure Python wheel
that we provide is not used, it is substantially faster than a full source build
to install an uncompiled (slower) version of Cython with::
NO_CYTHON_COMPILE=true pip install .
.. _Pyrex: https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
3.1.3 (2025-08-13)
==================
Bugs fixed
----------
* Some method calls with 0 or 1 argument failed to use ``PyObject_VectorCallMethod()``.
* Walrus assignments of literal Python integers could generate invalid C code.
(Github issue https://github.com/cython/cython/issues/6989)
* ``cython.pythread_type_lock`` (also used as fallback for ``cython.pymutex``)
could stall on heavily contended locks.
(Github issue https://github.com/cython/cython/issues/6999)
* C string arrays (not pointers) always coerced to the Python default string type,
even on explicit casts to other string types.
(Github issue https://github.com/cython/cython/issues/7020)
* Unterminated ``\N{}`` character escapes in strings could unrail the parser.
(Github issue https://github.com/cython/cython/issues/7056)
* An internal C function was not marked as ``static`` and leaked a linker symbol.
(Github issue https://github.com/cython/cython/issues/6957)
* Some Unicode letters were not recognised as lexically valid name parts.
(Github issue https://github.com/cython/cython/issues/7059)
* Compatibility with PyPy3.8 was lost by accident.
* The Linux binary wheels of 3.1.2 used SSSE3 CPU instructions which are not available on some CPUs.
(Github issue https://github.com/cython/cython/issues/7038)
Raw data
{
"_id": null,
"home_page": "https://cython.org/",
"name": "Cython",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Robert Bradshaw, Stefan Behnel, David Woods, Greg Ewing, et al.",
"author_email": "cython-devel@python.org",
"download_url": "https://files.pythonhosted.org/packages/18/ab/915337fb39ab4f4539a313df38fc69938df3bf14141b90d61dfd5c2919de/cython-3.1.3.tar.gz",
"platform": null,
"description": "The Cython language makes writing C extensions for the Python language as\neasy as Python itself. Cython is a source code translator based on Pyrex_,\nbut supports more cutting edge functionality and optimizations.\n\nThe Cython language is a superset of the Python language (almost all Python\ncode is also valid Cython code), but Cython additionally supports optional\nstatic typing to natively call C functions, operate with C++ classes and\ndeclare fast C types on variables and class attributes. This allows the\ncompiler to generate very efficient C code from Cython code.\n\nThis makes Cython the ideal language for writing glue code for external\nC/C++ libraries, and for fast C modules that speed up the execution of\nPython code.\n\nThe newest Cython release can always be downloaded from https://cython.org/.\nUnpack the tarball or zip file, enter the directory, and then run::\n\n pip install .\n\nNote that for one-time builds, e.g. for CI/testing, on platforms that are not\ncovered by one of the wheel packages provided on PyPI *and* the pure Python wheel\nthat we provide is not used, it is substantially faster than a full source build\nto install an uncompiled (slower) version of Cython with::\n\n NO_CYTHON_COMPILE=true pip install .\n\n.. _Pyrex: https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/\n\n3.1.3 (2025-08-13)\n==================\n\nBugs fixed\n----------\n\n* Some method calls with 0 or 1 argument failed to use ``PyObject_VectorCallMethod()``.\n\n* Walrus assignments of literal Python integers could generate invalid C code.\n (Github issue https://github.com/cython/cython/issues/6989)\n\n* ``cython.pythread_type_lock`` (also used as fallback for ``cython.pymutex``)\n could stall on heavily contended locks.\n (Github issue https://github.com/cython/cython/issues/6999)\n\n* C string arrays (not pointers) always coerced to the Python default string type,\n even on explicit casts to other string types.\n (Github issue https://github.com/cython/cython/issues/7020)\n\n* Unterminated ``\\N{}`` character escapes in strings could unrail the parser.\n (Github issue https://github.com/cython/cython/issues/7056)\n\n* An internal C function was not marked as ``static`` and leaked a linker symbol.\n (Github issue https://github.com/cython/cython/issues/6957)\n\n* Some Unicode letters were not recognised as lexically valid name parts.\n (Github issue https://github.com/cython/cython/issues/7059)\n\n* Compatibility with PyPy3.8 was lost by accident.\n\n* The Linux binary wheels of 3.1.2 used SSSE3 CPU instructions which are not available on some CPUs.\n (Github issue https://github.com/cython/cython/issues/7038)\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "The Cython compiler for writing C extensions in the Python language.",
"version": "3.1.3",
"project_urls": {
"Bug Tracker": "https://github.com/cython/cython/issues/",
"Documentation": "https://cython.readthedocs.io/",
"Donate": "https://cython.readthedocs.io/en/latest/src/donating.html",
"Homepage": "https://cython.org/",
"Source Code": "https://github.com/cython/cython",
"User Group": "https://groups.google.com/g/cython-users"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "0b12ecb00199828b31ded9a2304ade880389f8b682b6c2b73bb2ec6ae409bb9d",
"md5": "793c89e5a4706630640e10d91e36e6cc",
"sha256": "ae7683987eea77890eb3251738b52a775565652730d6a1a6e39c5e1351d7d89b"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "793c89e5a4706630640e10d91e36e6cc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2968274,
"upload_time": "2025-08-13T06:19:25",
"upload_time_iso_8601": "2025-08-13T06:19:25.580766Z",
"url": "https://files.pythonhosted.org/packages/0b/12/ecb00199828b31ded9a2304ade880389f8b682b6c2b73bb2ec6ae409bb9d/cython-3.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22dd2fccd072683f34cbda19543ca1ca38241fc148a2c67ddfc50b34ba55fe0c",
"md5": "2f5e187536d7bd1ce7eb404767a885c3",
"sha256": "38e268eba028760167188ae81091f5380ca40a72d2a9eaff4fc6d41fd73a9254"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2f5e187536d7bd1ce7eb404767a885c3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2832069,
"upload_time": "2025-08-13T06:19:28",
"upload_time_iso_8601": "2025-08-13T06:19:28.640940Z",
"url": "https://files.pythonhosted.org/packages/22/dd/2fccd072683f34cbda19543ca1ca38241fc148a2c67ddfc50b34ba55fe0c/cython-3.1.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f4fb401aa5058a8deac63bfef18d8f7d9ac2584acd1c125c44bc50a78f3cd119",
"md5": "70643af3c67e793fc6a3f67af23bae8d",
"sha256": "16dc5d40712b73f663c3ae19a283b9f2c6228d47eb8369bc87d1d8fc35c2bce8"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "70643af3c67e793fc6a3f67af23bae8d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3510889,
"upload_time": "2025-08-13T06:19:31",
"upload_time_iso_8601": "2025-08-13T06:19:31.243692Z",
"url": "https://files.pythonhosted.org/packages/f4/fb/401aa5058a8deac63bfef18d8f7d9ac2584acd1c125c44bc50a78f3cd119/cython-3.1.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e1619d6d700e89c0c9bca438b3a0b6b791e98723730b0d2020c965be262fb5f",
"md5": "e8e5c2bc2507d11fd48595440f4b2538",
"sha256": "ea4116d35642d2b56d105b82c53480677d6e97bff354977948587512328b14d9"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e8e5c2bc2507d11fd48595440f4b2538",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3265587,
"upload_time": "2025-08-13T06:19:34",
"upload_time_iso_8601": "2025-08-13T06:19:34.066318Z",
"url": "https://files.pythonhosted.org/packages/8e/16/19d6d700e89c0c9bca438b3a0b6b791e98723730b0d2020c965be262fb5f/cython-3.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b5aaab6a9a85bd6126e6bce1c1ec6dd433700b45f3d9659b1451aef85a3c5e5",
"md5": "98472995f51bcb5c4f42c26afb39a8bf",
"sha256": "c366a179d0c1f285c661efddcfe969f40208f76f008d4a5a657a0822ae3dbf96"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "98472995f51bcb5c4f42c26afb39a8bf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3425432,
"upload_time": "2025-08-13T06:19:36",
"upload_time_iso_8601": "2025-08-13T06:19:36.601902Z",
"url": "https://files.pythonhosted.org/packages/0b/5a/aab6a9a85bd6126e6bce1c1ec6dd433700b45f3d9659b1451aef85a3c5e5/cython-3.1.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae8eb706139324143006786e3e1eeb39e919b68be94bb3f9201b7c1166d33fa3",
"md5": "69b35b1179ac47ea84e78824bef2bfe9",
"sha256": "3af75ad4f490708f4254aa143991dd5cb59c1bda328a099ecf056add2aa81209"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "69b35b1179ac47ea84e78824bef2bfe9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3280621,
"upload_time": "2025-08-13T06:19:39",
"upload_time_iso_8601": "2025-08-13T06:19:39.154250Z",
"url": "https://files.pythonhosted.org/packages/ae/8e/b706139324143006786e3e1eeb39e919b68be94bb3f9201b7c1166d33fa3/cython-3.1.3-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f772f22a0aa6bf2b0a971aea848f2025f1755ec6f01980faf66c17da92caa99a",
"md5": "f4dc7ea2f3a82cc6d4aa15e2da77016e",
"sha256": "d03179a36256031be112e4ae0b41cc18fe26eef54ef615b7ee859be9bb30260a"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "f4dc7ea2f3a82cc6d4aa15e2da77016e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3524921,
"upload_time": "2025-08-13T06:19:41",
"upload_time_iso_8601": "2025-08-13T06:19:41.813232Z",
"url": "https://files.pythonhosted.org/packages/f7/72/f22a0aa6bf2b0a971aea848f2025f1755ec6f01980faf66c17da92caa99a/cython-3.1.3-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c49c6f8cb56daf81821e2521b9b07988fdfb03a6c3e5deed0e419a245ef6287",
"md5": "6ad681c267936c7024f2188db2e3c86d",
"sha256": "4680169f2839294d33e8c290e780cee87417b4544ff0bd3f1ca5edbeda608292"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6ad681c267936c7024f2188db2e3c86d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3440433,
"upload_time": "2025-08-13T06:19:43",
"upload_time_iso_8601": "2025-08-13T06:19:43.946585Z",
"url": "https://files.pythonhosted.org/packages/6c/49/c6f8cb56daf81821e2521b9b07988fdfb03a6c3e5deed0e419a245ef6287/cython-3.1.3-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9bf09dbafdbac6086fb172fff747ddf7ea9f2b4baa9b833c32add6b3a41ba038",
"md5": "25bbfeb0159cfbc289075cf1dfe00cd5",
"sha256": "f3897d5763df5ffc78327605c5a62748a04f043458928b33b2032ebefa35ee6d"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "25bbfeb0159cfbc289075cf1dfe00cd5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2482896,
"upload_time": "2025-08-13T06:19:46",
"upload_time_iso_8601": "2025-08-13T06:19:46.295192Z",
"url": "https://files.pythonhosted.org/packages/9b/f0/9dbafdbac6086fb172fff747ddf7ea9f2b4baa9b833c32add6b3a41ba038/cython-3.1.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd47540b7e95acacfd5f98c09207c3786e9ac3c716eb507dae07ccf97d3c9497",
"md5": "bdec70d8bcd3f2d9c8d129e1c1652097",
"sha256": "840755545f61e79b3f75c92af7c0c19ab89f57c5521bf0fb59660412dd50c5c4"
},
"downloads": -1,
"filename": "cython-3.1.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "bdec70d8bcd3f2d9c8d129e1c1652097",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 2707732,
"upload_time": "2025-08-13T06:19:48",
"upload_time_iso_8601": "2025-08-13T06:19:48.270534Z",
"url": "https://files.pythonhosted.org/packages/cd/47/540b7e95acacfd5f98c09207c3786e9ac3c716eb507dae07ccf97d3c9497/cython-3.1.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b55154f5d1bed7b7d003d0584996a030542497aeb05b9241782c217ea71061f5",
"md5": "f0465b725d0ee5dcaed0b93c0a5b92e0",
"sha256": "4b3b2f6587b42efdece2d174a2aa4234da4524cc6673f3955c2e62b60c6d11fd"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f0465b725d0ee5dcaed0b93c0a5b92e0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3002973,
"upload_time": "2025-08-13T06:19:50",
"upload_time_iso_8601": "2025-08-13T06:19:50.777975Z",
"url": "https://files.pythonhosted.org/packages/b5/51/54f5d1bed7b7d003d0584996a030542497aeb05b9241782c217ea71061f5/cython-3.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0507b4043fed60070ee21b0d9ff3a877d2ecdc79231e55119ce852b79b690306",
"md5": "4b14ce16ffed4474c8017185ed7306ac",
"sha256": "963cf640d049fcca1cefd62d1653f859892d6dc8e4d958eb49a5babc491de6a1"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4b14ce16ffed4474c8017185ed7306ac",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2865389,
"upload_time": "2025-08-13T06:19:52",
"upload_time_iso_8601": "2025-08-13T06:19:52.675613Z",
"url": "https://files.pythonhosted.org/packages/05/07/b4043fed60070ee21b0d9ff3a877d2ecdc79231e55119ce852b79b690306/cython-3.1.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b4e367d349b5310a40f281e153e826ca24d9f7ba2997c06800eda781253dccfd",
"md5": "3faa9c8a99cd971dfb9e61a97a88ac68",
"sha256": "2ab05d1bf2d5522ecff35d94ca233b77db2300413597c3ca0b6448377fa4bd7c"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "3faa9c8a99cd971dfb9e61a97a88ac68",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3410316,
"upload_time": "2025-08-13T06:19:55",
"upload_time_iso_8601": "2025-08-13T06:19:55.217920Z",
"url": "https://files.pythonhosted.org/packages/b4/e3/67d349b5310a40f281e153e826ca24d9f7ba2997c06800eda781253dccfd/cython-3.1.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "49c484aae921135174111091547fa726ea5f8bba718cd12b2589a70c2aab8d5c",
"md5": "af31e21602fa6b133e17573ffad11f1b",
"sha256": "cd517e3be052fb49443585b01f02f46080b3408e32c1108a0fdc4cc25b3c9d30"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "af31e21602fa6b133e17573ffad11f1b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3189568,
"upload_time": "2025-08-13T06:19:57",
"upload_time_iso_8601": "2025-08-13T06:19:57.503991Z",
"url": "https://files.pythonhosted.org/packages/49/c4/84aae921135174111091547fa726ea5f8bba718cd12b2589a70c2aab8d5c/cython-3.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2851bf18883f1a1f656ad83a671e54553caedb1ee2f39a3e792a14aa82557a2",
"md5": "c5372f3cc5f6ac7e34fefccfd9c5c135",
"sha256": "a48e2180d74e3c528561d85b48f9a939a429537f9ea8aac7fb16180e7bff47e2"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c5372f3cc5f6ac7e34fefccfd9c5c135",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3312649,
"upload_time": "2025-08-13T06:19:59",
"upload_time_iso_8601": "2025-08-13T06:19:59.894707Z",
"url": "https://files.pythonhosted.org/packages/e2/85/1bf18883f1a1f656ad83a671e54553caedb1ee2f39a3e792a14aa82557a2/cython-3.1.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68dacc1373decc0d14a25f1b434f47de5e27696f3092319aa5e19fcf84157415",
"md5": "72f4d30a11f9d0fd59827b6a425a55e7",
"sha256": "e7c9daa90b15f59aa2a0d638ac1b36777a7e80122099952a0295c71190ce14bc"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "72f4d30a11f9d0fd59827b6a425a55e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3203821,
"upload_time": "2025-08-13T06:20:02",
"upload_time_iso_8601": "2025-08-13T06:20:02.124858Z",
"url": "https://files.pythonhosted.org/packages/68/da/cc1373decc0d14a25f1b434f47de5e27696f3092319aa5e19fcf84157415/cython-3.1.3-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a32e10582d6f7b02ee63607f388dbbd34e329c54559c85961ddc5c655266519",
"md5": "979ba5818212fd36e7412545971ba888",
"sha256": "08ac646ff42781827f23b7a9b61669cdb92055f52724cd8cbe0e1defc56fce2e"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "979ba5818212fd36e7412545971ba888",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3426853,
"upload_time": "2025-08-13T06:20:04",
"upload_time_iso_8601": "2025-08-13T06:20:04.474050Z",
"url": "https://files.pythonhosted.org/packages/0a/32/e10582d6f7b02ee63607f388dbbd34e329c54559c85961ddc5c655266519/cython-3.1.3-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e0da5b0d1b5a4c7622ec812ad9374c9c6b426d69818f13f51e36f4f25ca01c86",
"md5": "dfdcc25d1bdbeeaadd98031b8a865153",
"sha256": "bb0e0e7fceaffa22e4dc9600f7f75998eef5cc6ac5a8c0733b482851ba765ef2"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dfdcc25d1bdbeeaadd98031b8a865153",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3328872,
"upload_time": "2025-08-13T06:20:06",
"upload_time_iso_8601": "2025-08-13T06:20:06.834983Z",
"url": "https://files.pythonhosted.org/packages/e0/da/5b0d1b5a4c7622ec812ad9374c9c6b426d69818f13f51e36f4f25ca01c86/cython-3.1.3-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b05ff102f6c8d27338f0baf094754c67f920828a19612053abc903e66f84506f",
"md5": "efddbe5edb9dfc608e2974434e0e406c",
"sha256": "42b1c3ebe36a52e2a8e939c0651e9ca5d30b81d03f800bbf0499deb0503ab565"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "efddbe5edb9dfc608e2974434e0e406c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2480850,
"upload_time": "2025-08-13T06:20:08",
"upload_time_iso_8601": "2025-08-13T06:20:08.988555Z",
"url": "https://files.pythonhosted.org/packages/b0/5f/f102f6c8d27338f0baf094754c67f920828a19612053abc903e66f84506f/cython-3.1.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b760415d0f0f7c2e227707baec11c968387d33507d2eb7f26a2950a323c705e5",
"md5": "f05530be55ebe7835d1eab394049507e",
"sha256": "34a973844998281951bf54cdd0b6a9946ba03ba94580820738583a00da167d8f"
},
"downloads": -1,
"filename": "cython-3.1.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "f05530be55ebe7835d1eab394049507e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 2712560,
"upload_time": "2025-08-13T06:20:11",
"upload_time_iso_8601": "2025-08-13T06:20:11.877017Z",
"url": "https://files.pythonhosted.org/packages/b7/60/415d0f0f7c2e227707baec11c968387d33507d2eb7f26a2950a323c705e5/cython-3.1.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7926f433fdfd5182b9231819a99acc49a1f856669532306e7a38dce63ba7297e",
"md5": "551e11a7847060cb717aa26c6b752d80",
"sha256": "849ef3d15d4354e5f74cdb6d3c80d80b03209b3bf1f4ff93315890b19da18944"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "551e11a7847060cb717aa26c6b752d80",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3014237,
"upload_time": "2025-08-13T06:20:13",
"upload_time_iso_8601": "2025-08-13T06:20:13.770399Z",
"url": "https://files.pythonhosted.org/packages/79/26/f433fdfd5182b9231819a99acc49a1f856669532306e7a38dce63ba7297e/cython-3.1.3-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e56c1bebf44f5f177f8c750e608f82c08cd699b8f28cc233e799379bfcf2a2c2",
"md5": "1775f415f405edc74e032ded633a490c",
"sha256": "93dd0f62a3f8e93166d8584f8b243180d681ba8fed1f530b55d5f70c348c5797"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "1775f415f405edc74e032ded633a490c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2844261,
"upload_time": "2025-08-13T06:20:15",
"upload_time_iso_8601": "2025-08-13T06:20:15.619997Z",
"url": "https://files.pythonhosted.org/packages/e5/6c/1bebf44f5f177f8c750e608f82c08cd699b8f28cc233e799379bfcf2a2c2/cython-3.1.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c774983005ce5954f6dc8360b105a561e51a60ea619c53296afac98253d1c9d7",
"md5": "88a0033fa5c3e3132f6cda347d1715b9",
"sha256": "ff4a2cb84798faffb3988bd94636c3ad31a95ff44ef017f09121abffc56f84cf"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "88a0033fa5c3e3132f6cda347d1715b9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3388846,
"upload_time": "2025-08-13T06:20:17",
"upload_time_iso_8601": "2025-08-13T06:20:17.679522Z",
"url": "https://files.pythonhosted.org/packages/c7/74/983005ce5954f6dc8360b105a561e51a60ea619c53296afac98253d1c9d7/cython-3.1.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6850dbe7edefe9b652bc72d49da07785173e89197b9a2d64a2ac45da9795eccf",
"md5": "e5d5ae06dc8c7ac27e2d237ff53d0924",
"sha256": "4b05319e36f34d5388deea5cc2bcfd65f9ebf76f4ea050829421a69625dbba4a"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e5d5ae06dc8c7ac27e2d237ff53d0924",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3167022,
"upload_time": "2025-08-13T06:20:19",
"upload_time_iso_8601": "2025-08-13T06:20:19.863505Z",
"url": "https://files.pythonhosted.org/packages/68/50/dbe7edefe9b652bc72d49da07785173e89197b9a2d64a2ac45da9795eccf/cython-3.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4a55b50548b77203e22262002feae23a172f95282b4b8deb5ad104f08e3dc20d",
"md5": "802af2cbbac7b0f0c9fc1a20a8b345b8",
"sha256": "7ac902a17934a6da46f80755f49413bc4c03a569ae3c834f5d66da7288ba7e6c"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "802af2cbbac7b0f0c9fc1a20a8b345b8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3317782,
"upload_time": "2025-08-13T06:20:21",
"upload_time_iso_8601": "2025-08-13T06:20:21.962641Z",
"url": "https://files.pythonhosted.org/packages/4a/55/b50548b77203e22262002feae23a172f95282b4b8deb5ad104f08e3dc20d/cython-3.1.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f61b20a97507d528dc330d67be4fbad6bc767c681d56192bce8f7117a187b2ad",
"md5": "85bdf60cd12baf0695f5add83f5c1325",
"sha256": "7d7a555a864b1b08576f9e8a67f3789796a065837544f9f683ebf3188012fdbd"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "85bdf60cd12baf0695f5add83f5c1325",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3179818,
"upload_time": "2025-08-13T06:20:24",
"upload_time_iso_8601": "2025-08-13T06:20:24.419148Z",
"url": "https://files.pythonhosted.org/packages/f6/1b/20a97507d528dc330d67be4fbad6bc767c681d56192bce8f7117a187b2ad/cython-3.1.3-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43a57b32a19c4c6bb0e2cc7ae52269b6b23a42f67f730e4abd4f8dca63660f7a",
"md5": "7fd4669e6e32e4225334a3ec7366531b",
"sha256": "b827ce7d97ef8624adcf2bdda594b3dcb6c9b4f124d8f72001d8aea27d69dc1c"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7fd4669e6e32e4225334a3ec7366531b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3403206,
"upload_time": "2025-08-13T06:20:26",
"upload_time_iso_8601": "2025-08-13T06:20:26.846181Z",
"url": "https://files.pythonhosted.org/packages/43/a5/7b32a19c4c6bb0e2cc7ae52269b6b23a42f67f730e4abd4f8dca63660f7a/cython-3.1.3-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bae108cfd4c5e99f79e62d4a7b0009bbd906748633270935c8a55eee51fead76",
"md5": "eb39dbd655100e0aeda0c3077b0d2879",
"sha256": "7851107204085f4f02d0eb6b660ddcad2ce4846e8b7a1eaba724a0bd3cd68a6b"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "eb39dbd655100e0aeda0c3077b0d2879",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3327837,
"upload_time": "2025-08-13T06:20:28",
"upload_time_iso_8601": "2025-08-13T06:20:28.946144Z",
"url": "https://files.pythonhosted.org/packages/ba/e1/08cfd4c5e99f79e62d4a7b0009bbd906748633270935c8a55eee51fead76/cython-3.1.3-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "231bf3d384be86fa2a6e110b42f42bf97295a513197aaa5532f451c73bf5b48e",
"md5": "5766c1ffcd56bc147ddff413dedb087d",
"sha256": "ed20f1b45b2da5a4f8e71a80025bca1cdc96ba35820b0b17658a4a025be920b0"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "5766c1ffcd56bc147ddff413dedb087d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2485990,
"upload_time": "2025-08-13T06:20:31",
"upload_time_iso_8601": "2025-08-13T06:20:31.517660Z",
"url": "https://files.pythonhosted.org/packages/23/1b/f3d384be86fa2a6e110b42f42bf97295a513197aaa5532f451c73bf5b48e/cython-3.1.3-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "def017cff75e3c141bda73d770f7412632f53e55778d3bfdadfeec4dd3a7d1d6",
"md5": "db17e5e7cb2ddb4ea702a0c93b672554",
"sha256": "dc4ca0f4dec55124cd79ddcfc555be1cbe0092cc99bcf1403621d17b9c6218bb"
},
"downloads": -1,
"filename": "cython-3.1.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "db17e5e7cb2ddb4ea702a0c93b672554",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 2704002,
"upload_time": "2025-08-13T06:20:33",
"upload_time_iso_8601": "2025-08-13T06:20:33.773437Z",
"url": "https://files.pythonhosted.org/packages/de/f0/17cff75e3c141bda73d770f7412632f53e55778d3bfdadfeec4dd3a7d1d6/cython-3.1.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f930e5dfcc6215a6c2cae509d7e40f8fb197237ba5998c936e9c19692f8eedf",
"md5": "510f5b707b04df494510d76d0ecd13ea",
"sha256": "9458d540ef0853ea4fc65b8a946587bd483ef7244b470b3d93424eb7b04edeb1"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "510f5b707b04df494510d76d0ecd13ea",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2998232,
"upload_time": "2025-08-13T06:20:35",
"upload_time_iso_8601": "2025-08-13T06:20:35.817496Z",
"url": "https://files.pythonhosted.org/packages/7f/93/0e5dfcc6215a6c2cae509d7e40f8fb197237ba5998c936e9c19692f8eedf/cython-3.1.3-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b6c01b22de45e3a9b86fbe4a18cd470146514209448cb4d3d3ba9c72390d45b",
"md5": "4f642f6c407a7bed3eccb3b5f4264992",
"sha256": "32d1b22c3b231326e9f16480a7f508c6841bbf7d0615c2d6f489ebc72dd05205"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "4f642f6c407a7bed3eccb3b5f4264992",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2830052,
"upload_time": "2025-08-13T06:20:37",
"upload_time_iso_8601": "2025-08-13T06:20:37.710939Z",
"url": "https://files.pythonhosted.org/packages/6b/6c/01b22de45e3a9b86fbe4a18cd470146514209448cb4d3d3ba9c72390d45b/cython-3.1.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5208a7d4b91b144b4bd015e932303861061cd43221f737ecdc6e380a438f245f",
"md5": "ef9a414281ea707340dd582e317d58bd",
"sha256": "d4c7e0b8584b02a349952de7d7d47f89c97cbf3fee74962e89e3caa78139ec84"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "ef9a414281ea707340dd582e317d58bd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3359478,
"upload_time": "2025-08-13T06:20:39",
"upload_time_iso_8601": "2025-08-13T06:20:39.811889Z",
"url": "https://files.pythonhosted.org/packages/52/08/a7d4b91b144b4bd015e932303861061cd43221f737ecdc6e380a438f245f/cython-3.1.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f57db44ee735439ee73a88c6532536cfbc5b2f146c5f315effa124e85aadb447",
"md5": "6c0c1e672183c9ac841bb7cbe8519eff",
"sha256": "c9178f0c06f4bc92372dc44e3867e9285bebd556953e47857c26b389aabe2828"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "6c0c1e672183c9ac841bb7cbe8519eff",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3155157,
"upload_time": "2025-08-13T06:20:42",
"upload_time_iso_8601": "2025-08-13T06:20:42.305532Z",
"url": "https://files.pythonhosted.org/packages/f5/7d/b44ee735439ee73a88c6532536cfbc5b2f146c5f315effa124e85aadb447/cython-3.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a8e0ef1a44ba765057b04e99cf34dcc1910706a666ea66fcd2b92175ab645416",
"md5": "d50f674d6fff3c7c7012704f1b580fe0",
"sha256": "d4da2e624d381e9790152672bfc599a5fb4b823b99d82700a10f5db3311851f9"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "d50f674d6fff3c7c7012704f1b580fe0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3305331,
"upload_time": "2025-08-13T06:20:44",
"upload_time_iso_8601": "2025-08-13T06:20:44.423545Z",
"url": "https://files.pythonhosted.org/packages/a8/e0/ef1a44ba765057b04e99cf34dcc1910706a666ea66fcd2b92175ab645416/cython-3.1.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62f18bf3ea5babdef82df3023e72522c71bfc5cc5091e9710828a0dda81bda88",
"md5": "537fdf4818de4a715730aca65af250c5",
"sha256": "680c9168882c5e8031dd31df199b9a5ee897e95136d15f8c6454b62162ede25e"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "537fdf4818de4a715730aca65af250c5",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3171968,
"upload_time": "2025-08-13T06:20:48",
"upload_time_iso_8601": "2025-08-13T06:20:48.962785Z",
"url": "https://files.pythonhosted.org/packages/62/f1/8bf3ea5babdef82df3023e72522c71bfc5cc5091e9710828a0dda81bda88/cython-3.1.3-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b5c3c1383f987d3add9cb8655943f6a0f164bfd06951f28e51b7887d12c8716a",
"md5": "e972cfbe1d389532c9c12f84c3bd200c",
"sha256": "833cd0fdba9210d2f1f29e097579565a296d7ff567fd63e8cf5fde4c14339f4f"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "e972cfbe1d389532c9c12f84c3bd200c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3372840,
"upload_time": "2025-08-13T06:20:51",
"upload_time_iso_8601": "2025-08-13T06:20:51.495707Z",
"url": "https://files.pythonhosted.org/packages/b5/c3/c1383f987d3add9cb8655943f6a0f164bfd06951f28e51b7887d12c8716a/cython-3.1.3-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "71d502fb7454756cb31b0c044050ee563ac172314aa8e74e5a4dd73bf77041d3",
"md5": "114a969210a24d53de3b3bb36a11dcc8",
"sha256": "c04367fa0e6c35b199eb51d64b5e185584b810f6c2b96726ce450300faf99686"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "114a969210a24d53de3b3bb36a11dcc8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 3317912,
"upload_time": "2025-08-13T06:20:53",
"upload_time_iso_8601": "2025-08-13T06:20:53.461978Z",
"url": "https://files.pythonhosted.org/packages/71/d5/02fb7454756cb31b0c044050ee563ac172314aa8e74e5a4dd73bf77041d3/cython-3.1.3-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9162b96227adf45236952f7cf07f869ff4157b82fe25ff7bb5ba9a3037c98993",
"md5": "b49e30ac6ea4340b4e119b74c95f2d8c",
"sha256": "f02ef2bf72a576bf541534c704971b8901616db431bc46d368eed1d6b20aaa1e"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "b49e30ac6ea4340b4e119b74c95f2d8c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2479889,
"upload_time": "2025-08-13T06:20:55",
"upload_time_iso_8601": "2025-08-13T06:20:55.437587Z",
"url": "https://files.pythonhosted.org/packages/91/62/b96227adf45236952f7cf07f869ff4157b82fe25ff7bb5ba9a3037c98993/cython-3.1.3-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7409100c0727d0fc8e4d7134c44c12b8c623e40f309401af56b7f6faf795c4bb",
"md5": "bf81c0ef3e35ba45cb6a4364d05958e7",
"sha256": "00264cafcc451dcefc01eaf29ed5ec150fb73af21d4d21105d97e9d829a53e99"
},
"downloads": -1,
"filename": "cython-3.1.3-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "bf81c0ef3e35ba45cb6a4364d05958e7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 2701550,
"upload_time": "2025-08-13T06:20:57",
"upload_time_iso_8601": "2025-08-13T06:20:57.503024Z",
"url": "https://files.pythonhosted.org/packages/74/09/100c0727d0fc8e4d7134c44c12b8c623e40f309401af56b7f6faf795c4bb/cython-3.1.3-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "230e6e535f2eedf0ddc3c84b087e5d0f04a7b88d8229ec8c27be41a142bcbbfa",
"md5": "a039f1f717021cc960164f91717d257b",
"sha256": "62b0a9514b68391aae9784405b65738bbe19cdead3dd7b90dd9e963281db1ee3"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "a039f1f717021cc960164f91717d257b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2995613,
"upload_time": "2025-08-13T06:20:59",
"upload_time_iso_8601": "2025-08-13T06:20:59.408219Z",
"url": "https://files.pythonhosted.org/packages/23/0e/6e535f2eedf0ddc3c84b087e5d0f04a7b88d8229ec8c27be41a142bcbbfa/cython-3.1.3-cp314-cp314-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "77103c9e2abf315f608bc22f49b6f9ee66859c23e07edbf484522d5f27b61ab7",
"md5": "9a7a5ced1c7f7d636aa3d1b7987c9e80",
"sha256": "976db373c315f342dcb24cd65b5e4c08d2c7b42f9f6ac1b3f677eb2abc9bfb0f"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9a7a5ced1c7f7d636aa3d1b7987c9e80",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2841282,
"upload_time": "2025-08-13T06:21:01",
"upload_time_iso_8601": "2025-08-13T06:21:01.274428Z",
"url": "https://files.pythonhosted.org/packages/77/10/3c9e2abf315f608bc22f49b6f9ee66859c23e07edbf484522d5f27b61ab7/cython-3.1.3-cp314-cp314-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd7704e39af308d5716640bc638e7d90d8be34277ebc642ea5bda5ac09628215",
"md5": "96aa02ade764a38880da96f434419a3d",
"sha256": "e765c12a02dea0bd968cf1e85af77be1dc6d21909c3fbf5bd81815a7cdd4a65e"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "96aa02ade764a38880da96f434419a3d",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 3361624,
"upload_time": "2025-08-13T06:21:03",
"upload_time_iso_8601": "2025-08-13T06:21:03.418396Z",
"url": "https://files.pythonhosted.org/packages/cd/77/04e39af308d5716640bc638e7d90d8be34277ebc642ea5bda5ac09628215/cython-3.1.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "75f4bdbc989ad88401e03ffe17e0bc3a03e3fe5dccbeb9c90e8762d7da4c7a45",
"md5": "d122f9680cd698e5c835c16a4037ac20",
"sha256": "097374fa1370e9967e48442a41a0acbebb94fe9d63976cad31eacd38424847bf"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "d122f9680cd698e5c835c16a4037ac20",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 3194014,
"upload_time": "2025-08-13T06:21:05",
"upload_time_iso_8601": "2025-08-13T06:21:05.719184Z",
"url": "https://files.pythonhosted.org/packages/75/f4/bdbc989ad88401e03ffe17e0bc3a03e3fe5dccbeb9c90e8762d7da4c7a45/cython-3.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2c89f282e5d31280f3912199b638c71557062443608eb3909a562283eda376d",
"md5": "8f8f7bf6d23268545c8ad853cb28413b",
"sha256": "29d8fda4d62b693e62992c665a688e3a220be70958c48eb4c2634093c9998156"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8f8f7bf6d23268545c8ad853cb28413b",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 3309703,
"upload_time": "2025-08-13T06:21:08",
"upload_time_iso_8601": "2025-08-13T06:21:08.026591Z",
"url": "https://files.pythonhosted.org/packages/a2/c8/9f282e5d31280f3912199b638c71557062443608eb3909a562283eda376d/cython-3.1.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a0983416a454a575e3ea7e84ec138f0b6dbfb34de28de4968359d7fdb428028",
"md5": "9802f8670c13839b0d73c253e7cdd2d3",
"sha256": "da23fa5082940ae1eed487ee9b7c1da7015b53f9feffeee661f4ee57f696dcd5"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "9802f8670c13839b0d73c253e7cdd2d3",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 3210317,
"upload_time": "2025-08-13T06:21:10",
"upload_time_iso_8601": "2025-08-13T06:21:10.920842Z",
"url": "https://files.pythonhosted.org/packages/0a/09/83416a454a575e3ea7e84ec138f0b6dbfb34de28de4968359d7fdb428028/cython-3.1.3-cp314-cp314-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8fdc901ed74302d52105588c59a41a239ef6bd01ff708391a15938aba9670b9e",
"md5": "8e594e7943510f4f67883b8598ca6e69",
"sha256": "8880daa7a0ddf971593f24da161c976bc1bea895393fdfebb8e54269321d9d2b"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8e594e7943510f4f67883b8598ca6e69",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 3378211,
"upload_time": "2025-08-13T06:21:13",
"upload_time_iso_8601": "2025-08-13T06:21:13.067859Z",
"url": "https://files.pythonhosted.org/packages/8f/dc/901ed74302d52105588c59a41a239ef6bd01ff708391a15938aba9670b9e/cython-3.1.3-cp314-cp314-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b76d1e077b99a678b69a39bfe96e1888bcf6c868830220e635f862a44c7761b4",
"md5": "14adfcca8cc418db7c6c9ec4bda21aca",
"sha256": "20d6b5a9fc210d3bc2880413011f606e1208e12ee6efc74717445a63f9795af1"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "14adfcca8cc418db7c6c9ec4bda21aca",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 3321051,
"upload_time": "2025-08-13T06:21:17",
"upload_time_iso_8601": "2025-08-13T06:21:17.314093Z",
"url": "https://files.pythonhosted.org/packages/b7/6d/1e077b99a678b69a39bfe96e1888bcf6c868830220e635f862a44c7761b4/cython-3.1.3-cp314-cp314-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "00cd2c442e9e41eafa851d89af1f62720007e03a12e1c01d9a71ed75f550a6c5",
"md5": "31930721401633dae4be62672573f614",
"sha256": "3b2243fed3eeb129dedf2cebbe3be0d9b02fbf3bc75b387aafd54aac3950baa6"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-win32.whl",
"has_sig": false,
"md5_digest": "31930721401633dae4be62672573f614",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2502067,
"upload_time": "2025-08-13T06:21:19",
"upload_time_iso_8601": "2025-08-13T06:21:19.404589Z",
"url": "https://files.pythonhosted.org/packages/00/cd/2c442e9e41eafa851d89af1f62720007e03a12e1c01d9a71ed75f550a6c5/cython-3.1.3-cp314-cp314-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ae637a1f2f06331f7dcf3fd31721fdaa8b60762748b82395631c0324672a4f2b",
"md5": "43fea48e88408167efa0adc896c4307c",
"sha256": "d32792c80b1fa8be9de207ec8844d49c4d1d0d60e5136d20f344729270db6490"
},
"downloads": -1,
"filename": "cython-3.1.3-cp314-cp314-win_amd64.whl",
"has_sig": false,
"md5_digest": "43fea48e88408167efa0adc896c4307c",
"packagetype": "bdist_wheel",
"python_version": "cp314",
"requires_python": ">=3.8",
"size": 2733427,
"upload_time": "2025-08-13T06:21:21",
"upload_time_iso_8601": "2025-08-13T06:21:21.525122Z",
"url": "https://files.pythonhosted.org/packages/ae/63/7a1f2f06331f7dcf3fd31721fdaa8b60762748b82395631c0324672a4f2b/cython-3.1.3-cp314-cp314-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e07dce4b910ed223495416ea2cfa6b218b0cb9f2fa48d53aecc333b751269db3",
"md5": "45341175ac124646f3e01f391b28be11",
"sha256": "9ec6007da0395d6537f3946f5e0ae25a583e4cf652422b14ff65fe8b11467d8d"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "45341175ac124646f3e01f391b28be11",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3089958,
"upload_time": "2025-08-13T06:21:23",
"upload_time_iso_8601": "2025-08-13T06:21:23.745461Z",
"url": "https://files.pythonhosted.org/packages/e0/7d/ce4b910ed223495416ea2cfa6b218b0cb9f2fa48d53aecc333b751269db3/cython-3.1.3-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da85e0ea3455d63bb740a5d7018a44cffcedf66e84525ebc9e6c688670f73e9d",
"md5": "c0e3478ad6920b220c4f5965b1779852",
"sha256": "640f38f1e90bfd8ac1912a1af17574936ba30dc90797da0b11fee913a22f49a2"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c0e3478ad6920b220c4f5965b1779852",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2950333,
"upload_time": "2025-08-13T06:21:26",
"upload_time_iso_8601": "2025-08-13T06:21:26.001791Z",
"url": "https://files.pythonhosted.org/packages/da/85/e0ea3455d63bb740a5d7018a44cffcedf66e84525ebc9e6c688670f73e9d/cython-3.1.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "317d079d05b289141389ce369c1472db6ad994dac1aba7b7d63a324615de0514",
"md5": "af2e27e1fe637c7db07c0e5783a8c4b0",
"sha256": "46957ccbbc1647ba7efd72dabf031ec0eff9be1673de4a8aa99c8c1162d2f50f"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "af2e27e1fe637c7db07c0e5783a8c4b0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3474011,
"upload_time": "2025-08-13T06:21:28",
"upload_time_iso_8601": "2025-08-13T06:21:28.811133Z",
"url": "https://files.pythonhosted.org/packages/31/7d/079d05b289141389ce369c1472db6ad994dac1aba7b7d63a324615de0514/cython-3.1.3-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62410ec586bc3c49a7ed2da4ff3d967af6bc293082656c9c36b6cc4173aab861",
"md5": "241412d678aedd0295d8ae21008841b9",
"sha256": "ee16fb1c999b049b4e6b3438a56acb65e827f834105def8a9eee25ab9b2b18f8"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "241412d678aedd0295d8ae21008841b9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3216640,
"upload_time": "2025-08-13T06:21:30",
"upload_time_iso_8601": "2025-08-13T06:21:30.804898Z",
"url": "https://files.pythonhosted.org/packages/62/41/0ec586bc3c49a7ed2da4ff3d967af6bc293082656c9c36b6cc4173aab861/cython-3.1.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e6a50a8c4e8739b2fffdb67f2cbcda9367ec9cab6a38b21c92e1b48b55127045",
"md5": "04e5bc2d9f2f3be088d487732dac22c0",
"sha256": "1e7fc012991421720620aeb846f01f8acefdac4ff57819388036f6ab1d613b51"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "04e5bc2d9f2f3be088d487732dac22c0",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3365917,
"upload_time": "2025-08-13T06:21:32",
"upload_time_iso_8601": "2025-08-13T06:21:32.875626Z",
"url": "https://files.pythonhosted.org/packages/e6/a5/0a8c4e8739b2fffdb67f2cbcda9367ec9cab6a38b21c92e1b48b55127045/cython-3.1.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fb386dbb53ebe1271800e0104fdd233ff41ebbc8e8714c9c3b3f4eccfa2c08e7",
"md5": "7ebe0fdcdbcb193caf0558a862a3a982",
"sha256": "d5b7648ff5cd160fd6f94955944e2f6826b2ebff1b1d4bcd9dc98625ef1548b7"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7ebe0fdcdbcb193caf0558a862a3a982",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3232901,
"upload_time": "2025-08-13T06:21:35",
"upload_time_iso_8601": "2025-08-13T06:21:35.349678Z",
"url": "https://files.pythonhosted.org/packages/fb/38/6dbb53ebe1271800e0104fdd233ff41ebbc8e8714c9c3b3f4eccfa2c08e7/cython-3.1.3-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "09613f5442aba030decb4542da9184ac302611995ece468b4e741f072b7f2c7e",
"md5": "b142f8fabd97ec49b8f4780e1c32d7dc",
"sha256": "d1fff5b2a9dec9e300dc9430d163783968723faa7266646084ab5bb9fa79f4ce"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b142f8fabd97ec49b8f4780e1c32d7dc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3492944,
"upload_time": "2025-08-13T06:21:37",
"upload_time_iso_8601": "2025-08-13T06:21:37.826232Z",
"url": "https://files.pythonhosted.org/packages/09/61/3f5442aba030decb4542da9184ac302611995ece468b4e741f072b7f2c7e/cython-3.1.3-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6caaf1bd987817ad099a730a72c52c42c24661b3030095c6ca30b4a230531eb1",
"md5": "df9e16ea50c940fb312948437aca7f77",
"sha256": "661f0121bdd9fe1ec6583c41f110c0e24f9cf551b1bfa76fd436de628654f8b2"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "df9e16ea50c940fb312948437aca7f77",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3379957,
"upload_time": "2025-08-13T06:21:40",
"upload_time_iso_8601": "2025-08-13T06:21:40.041963Z",
"url": "https://files.pythonhosted.org/packages/6c/aa/f1bd987817ad099a730a72c52c42c24661b3030095c6ca30b4a230531eb1/cython-3.1.3-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d143d998b00dcc4460abfd6ee3a5c6c7c82652feb296ebff9ede8824fa25b83",
"md5": "ac76f62cdea5299504a6b28a3e5e26a1",
"sha256": "9ec901176efca3628e017603978d931f69ddb078b01e7221dd3b874615fc5b13"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "ac76f62cdea5299504a6b28a3e5e26a1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2513411,
"upload_time": "2025-08-13T06:21:42",
"upload_time_iso_8601": "2025-08-13T06:21:42.466283Z",
"url": "https://files.pythonhosted.org/packages/7d/14/3d998b00dcc4460abfd6ee3a5c6c7c82652feb296ebff9ede8824fa25b83/cython-3.1.3-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "31f03eb39fa3e977e9cf23343271c48f92ee5b40e65fde69b44a8e7a449d849f",
"md5": "76ca57d83f9785f08c680dff97821b45",
"sha256": "3003814be46f67ef997430c9ca5a1f6aa169a79df3faddb277c20fb9f52d1e4b"
},
"downloads": -1,
"filename": "cython-3.1.3-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "76ca57d83f9785f08c680dff97821b45",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 2731393,
"upload_time": "2025-08-13T06:21:44",
"upload_time_iso_8601": "2025-08-13T06:21:44.537667Z",
"url": "https://files.pythonhosted.org/packages/31/f0/3eb39fa3e977e9cf23343271c48f92ee5b40e65fde69b44a8e7a449d849f/cython-3.1.3-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d348d0d857efc0bcaa790f912657db6b8ab86f9f99978720ca1365b7361700d0",
"md5": "74dfb9c308b1225f0e22ca4800955f07",
"sha256": "db6b15c00fcd102bed7af25aa68f52789a81d02766f3ba9b6be57e2c6e7ecb4d"
},
"downloads": -1,
"filename": "cython-3.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "74dfb9c308b1225f0e22ca4800955f07",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2973500,
"upload_time": "2025-08-13T06:21:47",
"upload_time_iso_8601": "2025-08-13T06:21:47.158913Z",
"url": "https://files.pythonhosted.org/packages/d3/48/d0d857efc0bcaa790f912657db6b8ab86f9f99978720ca1365b7361700d0/cython-3.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8338f343630d4d2e7c87bfadc5be99736678f304ef0c3f7a85ca05138f3d6a6",
"md5": "d93d8bb79a43ea3d61a2d227b13c230f",
"sha256": "22473fe11a8dc156b66f5bd9e60b4dd59b9350a1ee70317c1dda9bb71e34b409"
},
"downloads": -1,
"filename": "cython-3.1.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d93d8bb79a43ea3d61a2d227b13c230f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 2836850,
"upload_time": "2025-08-13T06:21:49",
"upload_time_iso_8601": "2025-08-13T06:21:49.232855Z",
"url": "https://files.pythonhosted.org/packages/c8/33/8f343630d4d2e7c87bfadc5be99736678f304ef0c3f7a85ca05138f3d6a6/cython-3.1.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9618f9bc1023e7e85dc31fb494041a607379d2345397da7e82bfb24d267ab197",
"md5": "a90ddca60c24324d8a9cb225b079e4ba",
"sha256": "f63b4e351ffa434b3b07629ab9068c25bfe322edc0c8f6b0310d950598ca5214"
},
"downloads": -1,
"filename": "cython-3.1.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"has_sig": false,
"md5_digest": "a90ddca60c24324d8a9cb225b079e4ba",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3516513,
"upload_time": "2025-08-13T06:21:51",
"upload_time_iso_8601": "2025-08-13T06:21:51.849924Z",
"url": "https://files.pythonhosted.org/packages/96/18/f9bc1023e7e85dc31fb494041a607379d2345397da7e82bfb24d267ab197/cython-3.1.3-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "950793aa66b1bf8ea4270ea62d0bd6ac4ac09c293776b979ee625c9a1ce9d667",
"md5": "2d3aab0fd1b5e139649afcd42e11b066",
"sha256": "fd2de686b64bef9a9efe059f826705b2a885cbcb9eff5eb8d42c290bdc72debd"
},
"downloads": -1,
"filename": "cython-3.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "2d3aab0fd1b5e139649afcd42e11b066",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3271539,
"upload_time": "2025-08-13T06:21:54",
"upload_time_iso_8601": "2025-08-13T06:21:54.425948Z",
"url": "https://files.pythonhosted.org/packages/95/07/93aa66b1bf8ea4270ea62d0bd6ac4ac09c293776b979ee625c9a1ce9d667/cython-3.1.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "983cc387c9aeab9dd2fcd192ced5d955ddfa9ce62298c67e2f1d30c44e5527a3",
"md5": "bfe084d7a551faba47f836ccdabea33e",
"sha256": "40f519fb0757394c892f970ad4c299b27f348c96abe0a7f4882f57d288101fde"
},
"downloads": -1,
"filename": "cython-3.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "bfe084d7a551faba47f836ccdabea33e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3432928,
"upload_time": "2025-08-13T06:21:56",
"upload_time_iso_8601": "2025-08-13T06:21:56.637063Z",
"url": "https://files.pythonhosted.org/packages/98/3c/c387c9aeab9dd2fcd192ced5d955ddfa9ce62298c67e2f1d30c44e5527a3/cython-3.1.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56c846ac27096684f33e27dab749ef43c6b0119c6a0d852971eaefb73256dc4c",
"md5": "02bb2bc12fbe06d8bf5040f0ab67572c",
"sha256": "d13025b34f72f77bf7f65c1cd628914763e6c285f4deb934314c922b91e6be5a"
},
"downloads": -1,
"filename": "cython-3.1.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "02bb2bc12fbe06d8bf5040f0ab67572c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 1225725,
"upload_time": "2025-08-13T06:19:09",
"upload_time_iso_8601": "2025-08-13T06:19:09.593077Z",
"url": "https://files.pythonhosted.org/packages/56/c8/46ac27096684f33e27dab749ef43c6b0119c6a0d852971eaefb73256dc4c/cython-3.1.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18ab915337fb39ab4f4539a313df38fc69938df3bf14141b90d61dfd5c2919de",
"md5": "f508595cc0951a77b70c07100df1b4ff",
"sha256": "10ee785e42328924b78f75a74f66a813cb956b4a9bc91c44816d089d5934c089"
},
"downloads": -1,
"filename": "cython-3.1.3.tar.gz",
"has_sig": false,
"md5_digest": "f508595cc0951a77b70c07100df1b4ff",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 3186689,
"upload_time": "2025-08-13T06:19:13",
"upload_time_iso_8601": "2025-08-13T06:19:13.619652Z",
"url": "https://files.pythonhosted.org/packages/18/ab/915337fb39ab4f4539a313df38fc69938df3bf14141b90d61dfd5c2919de/cython-3.1.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-13 06:19:13",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "cython",
"github_project": "cython",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "cython"
}