Name | cysignals JSON |
Version |
1.12.2
JSON |
| download |
home_page | None |
Summary | Interrupt and signal handling for Cython |
upload_time | 2024-12-19 15:31:40 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
meson-python
build
wheel
Cython
Sphinx
flake8
pytest
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
cysignals: interrupt and signal handling for Cython
===================================================
.. image:: https://travis-ci.org/sagemath/cysignals.svg?branch=master
:target: https://travis-ci.org/sagemath/cysignals
.. image:: https://readthedocs.org/projects/cysignals/badge/?version=latest
:target: http://cysignals.readthedocs.org
Cython and interrupts
---------------------
When writing `Cython <http://cython.org/>`_ code, special care must be
taken to ensure that the code can be interrupted with ``CTRL-C``.
Since Cython optimizes for speed, Cython normally does not check for
interrupts. For example, code like the following cannot be interrupted
in Cython::
while True:
pass
The ``cysignals`` package provides mechanisms to handle interrupts (and other
signals and errors) in Cython code.
Requirements
------------
- Python >= 3.9
- Cython >= 0.28
- Sphinx >= 1.6 (for building the documentation)
Links
-----
* cysignals on the Python package index: https://pypi.org/project/cysignals/
* cysignals code repository and issue tracker on GitHub: https://github.com/sagemath/cysignals
* full cysignals documentation on Read the Docs: http://cysignals.readthedocs.io/
Changelog
---------
1.12.0 (release candidate)
^^^^^^^^^^^^^^^^^^^^^^^^^^
* Remove optional compile-time dependency on PARI/GP. [#166]
1.11.4 (2023-10-07)
^^^^^^^^^^^^^^^^^^^
* Include generated `configure` script in the sdist again.
1.11.3 (2023-10-04)
^^^^^^^^^^^^^^^^^^^
* Add support for Cython 3. [#174, #176, #182, #187]
* Add support for Python 3.12.
* Replace `fprintf` by calls to `write`, which is async-signal-safe according to POSIX. [#162]
* Introduce a general hook to interface with custom signal handling. [#181]
1.11.2 (2021-12-15)
^^^^^^^^^^^^^^^^^^^
* Drop assembly code added after 1.10.3 that is not portable.
1.11.0 (2021-11-26)
^^^^^^^^^^^^^^^^^^^
* Drop Python 2 support; bump minimum Python version to 3.6. [#142]
* Fixed compilation with glib 3.34. [#151]
* Improved testing. [#139, #152, #154]
1.10.3 (2021-03-16)
^^^^^^^^^^^^^^^^^^^
* Improved installation of cysignals with ``pip install -e``. [#130]
* Fixed compilation of OpenMP modules that also use cysignals. [#128]
* Fixed segmentation fault that could occur when ``sig_occurred()`` is
called recursively during garbage collection. [#127]
* Improved error reporting of signals that occurred inside ``sig_on()`` as
opposed to outside them.
* Fixed bug in the ``cysignals_example`` package. [#113]
For changes in previous releases, see the best source available is to
compare git tags: https://github.com/sagemath/cysignals/tags
Raw data
{
"_id": null,
"home_page": null,
"name": "cysignals",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "The Sage Developers <sage-support@googlegroups.com>",
"download_url": "https://files.pythonhosted.org/packages/36/b6/84f0f9fa096ca0580f729d0771b8079459eec8a310ca29a56d357f514008/cysignals-1.12.2.tar.gz",
"platform": null,
"description": "cysignals: interrupt and signal handling for Cython\n===================================================\n\n.. image:: https://travis-ci.org/sagemath/cysignals.svg?branch=master\n :target: https://travis-ci.org/sagemath/cysignals\n\n.. image:: https://readthedocs.org/projects/cysignals/badge/?version=latest\n :target: http://cysignals.readthedocs.org\n\nCython and interrupts\n---------------------\n\nWhen writing `Cython <http://cython.org/>`_ code, special care must be\ntaken to ensure that the code can be interrupted with ``CTRL-C``.\nSince Cython optimizes for speed, Cython normally does not check for\ninterrupts. For example, code like the following cannot be interrupted\nin Cython::\n\n while True:\n pass\n\nThe ``cysignals`` package provides mechanisms to handle interrupts (and other\nsignals and errors) in Cython code.\n\nRequirements\n------------\n\n- Python >= 3.9\n- Cython >= 0.28\n- Sphinx >= 1.6 (for building the documentation)\n\nLinks\n-----\n\n* cysignals on the Python package index: https://pypi.org/project/cysignals/\n* cysignals code repository and issue tracker on GitHub: https://github.com/sagemath/cysignals\n* full cysignals documentation on Read the Docs: http://cysignals.readthedocs.io/\n\nChangelog\n---------\n\n1.12.0 (release candidate)\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n* Remove optional compile-time dependency on PARI/GP. [#166]\n\n\n1.11.4 (2023-10-07)\n^^^^^^^^^^^^^^^^^^^\n\n* Include generated `configure` script in the sdist again.\n\n\n1.11.3 (2023-10-04)\n^^^^^^^^^^^^^^^^^^^\n\n* Add support for Cython 3. [#174, #176, #182, #187]\n* Add support for Python 3.12.\n* Replace `fprintf` by calls to `write`, which is async-signal-safe according to POSIX. [#162]\n* Introduce a general hook to interface with custom signal handling. [#181]\n\n\n1.11.2 (2021-12-15)\n^^^^^^^^^^^^^^^^^^^\n\n* Drop assembly code added after 1.10.3 that is not portable.\n\n\n1.11.0 (2021-11-26)\n^^^^^^^^^^^^^^^^^^^\n\n* Drop Python 2 support; bump minimum Python version to 3.6. [#142]\n* Fixed compilation with glib 3.34. [#151]\n* Improved testing. [#139, #152, #154]\n\n\n1.10.3 (2021-03-16)\n^^^^^^^^^^^^^^^^^^^\n\n* Improved installation of cysignals with ``pip install -e``. [#130]\n\n* Fixed compilation of OpenMP modules that also use cysignals. [#128]\n\n* Fixed segmentation fault that could occur when ``sig_occurred()`` is\n called recursively during garbage collection. [#127]\n\n* Improved error reporting of signals that occurred inside ``sig_on()`` as\n opposed to outside them.\n\n* Fixed bug in the ``cysignals_example`` package. [#113]\n\nFor changes in previous releases, see the best source available is to\ncompare git tags: https://github.com/sagemath/cysignals/tags\n",
"bugtrack_url": null,
"license": "GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, \"this License\" refers to version 3 of the GNU Lesser General Public License, and the \"GNU GPL\" refers to version 3 of the GNU General Public License. \"The Library\" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An \"Application\" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A \"Combined Work\" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the \"Linked Version\". The \"Minimal Corresponding Source\" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The \"Corresponding Application Code\" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License \"or any later version\" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. ",
"summary": "Interrupt and signal handling for Cython",
"version": "1.12.2",
"project_urls": {
"Homepage": "https://github.com/sagemath/cysignals"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "0c284695e17d15778bc3e4102e80fe7c31f24c95e19916d1d5f115316975f2cc",
"md5": "180151f00ff1bec545342dd7d0f17439",
"sha256": "c2758189e4d89315224818426ce5b149acae3ab79845353444b8759f007d1356"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "180151f00ff1bec545342dd7d0f17439",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 219930,
"upload_time": "2024-12-19T15:37:36",
"upload_time_iso_8601": "2024-12-19T15:37:36.091574Z",
"url": "https://files.pythonhosted.org/packages/0c/28/4695e17d15778bc3e4102e80fe7c31f24c95e19916d1d5f115316975f2cc/cysignals-1.12.2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4f563dfaf9ba96aab5ea88f16536e9cbf4311f09eb1027891a23398168bdc68",
"md5": "f56456017bf13d15bc0dc3bd912bd26f",
"sha256": "166ab89e5a19d839adb49bed5b5dba463438ec7860859bc24a4c5ac9044c1167"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f56456017bf13d15bc0dc3bd912bd26f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 213547,
"upload_time": "2024-12-19T15:37:37",
"upload_time_iso_8601": "2024-12-19T15:37:37.406855Z",
"url": "https://files.pythonhosted.org/packages/c4/f5/63dfaf9ba96aab5ea88f16536e9cbf4311f09eb1027891a23398168bdc68/cysignals-1.12.2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "51e17a66becd2a45214ff530c4adaef60d641cac8b64519bfba5b9c4660108fe",
"md5": "89dd74fe8ec17506e669efff6c0463fa",
"sha256": "fe1ef4eb678b9569564fb1e4c3ba4e0e1b8d44abc445340969db7bfd4aaf201c"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "89dd74fe8ec17506e669efff6c0463fa",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 279520,
"upload_time": "2024-12-19T15:37:40",
"upload_time_iso_8601": "2024-12-19T15:37:40.099022Z",
"url": "https://files.pythonhosted.org/packages/51/e1/7a66becd2a45214ff530c4adaef60d641cac8b64519bfba5b9c4660108fe/cysignals-1.12.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e8fa5ac9cd718697f19aca78c19a679f2c24a77547283bf5da846390c0883186",
"md5": "e75b42d72609c3c0b824587c6b56e60d",
"sha256": "ca10a452e8a9c77f239f621b2db15970673bb43fa912ffa961492b1d96399dc6"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e75b42d72609c3c0b824587c6b56e60d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 276904,
"upload_time": "2024-12-19T15:37:41",
"upload_time_iso_8601": "2024-12-19T15:37:41.280054Z",
"url": "https://files.pythonhosted.org/packages/e8/fa/5ac9cd718697f19aca78c19a679f2c24a77547283bf5da846390c0883186/cysignals-1.12.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8709fde5c39cd766dbfd6b7d7c18cabcb5cab23c8a61410d2e1ceb6c6e2efb11",
"md5": "5ae1098d1e9d917eac8c12de1e6d75be",
"sha256": "a176f9a43284fc6a4069680186ce78bdf56cf1451323d617c5ebfa47edd6d429"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5ae1098d1e9d917eac8c12de1e6d75be",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 289683,
"upload_time": "2024-12-19T15:37:42",
"upload_time_iso_8601": "2024-12-19T15:37:42.559436Z",
"url": "https://files.pythonhosted.org/packages/87/09/fde5c39cd766dbfd6b7d7c18cabcb5cab23c8a61410d2e1ceb6c6e2efb11/cysignals-1.12.2-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "74b73abf6eaec4c5f2febb20cea18cad30ed9020b3c3549868b0dabc72110919",
"md5": "c67b8e95cee50ab454f8c3080693b15f",
"sha256": "db52a0f6fc390de03d8efbf7e0d888b49f9f1ea0cea68931dfe5bee6f122a703"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c67b8e95cee50ab454f8c3080693b15f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 283466,
"upload_time": "2024-12-19T15:37:43",
"upload_time_iso_8601": "2024-12-19T15:37:43.961204Z",
"url": "https://files.pythonhosted.org/packages/74/b7/3abf6eaec4c5f2febb20cea18cad30ed9020b3c3549868b0dabc72110919/cysignals-1.12.2-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce96e577f511bc240f79601e88cd5f71ebf80de1d1cd47615225caee729d9680",
"md5": "e888d9d87fbdaeb3779f262f96e2a5d9",
"sha256": "cb87299162a30fa1c954028ceda5aaef838b4b41d20fab41c198d2aecb2cb466"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "e888d9d87fbdaeb3779f262f96e2a5d9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 220842,
"upload_time": "2024-12-19T15:37:46",
"upload_time_iso_8601": "2024-12-19T15:37:46.605052Z",
"url": "https://files.pythonhosted.org/packages/ce/96/e577f511bc240f79601e88cd5f71ebf80de1d1cd47615225caee729d9680/cysignals-1.12.2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d82091bb1b7cb4bc4603a01e6dc43bc62b44de6eb350eadc46cd72acfaca46a4",
"md5": "cf9fe5b6b55e77db853f1d8ffbb6ac01",
"sha256": "7059a09c03b3fb25c754610c89107d5a646fc6b320005654f4c91c6e0d33ccfe"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "cf9fe5b6b55e77db853f1d8ffbb6ac01",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 213891,
"upload_time": "2024-12-19T15:37:47",
"upload_time_iso_8601": "2024-12-19T15:37:47.899521Z",
"url": "https://files.pythonhosted.org/packages/d8/20/91bb1b7cb4bc4603a01e6dc43bc62b44de6eb350eadc46cd72acfaca46a4/cysignals-1.12.2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "75b1d01da863ed0c6d8d360a6ae8a25ff25687a7040d65f3784e047f64c917b5",
"md5": "f5d299c04aa15aa9db2cce7ad933b0c3",
"sha256": "c2391a6e566d067b5c610c41a4fb9057a5c743ecbb76f139858ab6e060048302"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "f5d299c04aa15aa9db2cce7ad933b0c3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 279218,
"upload_time": "2024-12-19T15:37:50",
"upload_time_iso_8601": "2024-12-19T15:37:50.301905Z",
"url": "https://files.pythonhosted.org/packages/75/b1/d01da863ed0c6d8d360a6ae8a25ff25687a7040d65f3784e047f64c917b5/cysignals-1.12.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "070aa8a2c1f3924efaed1023c3561626a9456794a9997f1ada4ab81fb032b0c1",
"md5": "7d00f5a6c2c435c3555c395cd4fe8e85",
"sha256": "f705fedbc4d4ffed1c0b58802709c3e2f92c842b5a2871e3f71df8ae70658ec6"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7d00f5a6c2c435c3555c395cd4fe8e85",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 276803,
"upload_time": "2024-12-19T15:37:51",
"upload_time_iso_8601": "2024-12-19T15:37:51.808588Z",
"url": "https://files.pythonhosted.org/packages/07/0a/a8a2c1f3924efaed1023c3561626a9456794a9997f1ada4ab81fb032b0c1/cysignals-1.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7c7ee4e821060281dff93b950011f93d0df72be2ffc49d0c9796aa68d7c0f4a",
"md5": "7d8c7c78150438daf4193693b76c1c95",
"sha256": "ec4206db721613ee235a9e460b552255d1f3ad9af72821fe44f8ea01c9d76c36"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7d8c7c78150438daf4193693b76c1c95",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 289131,
"upload_time": "2024-12-19T15:37:53",
"upload_time_iso_8601": "2024-12-19T15:37:53.574276Z",
"url": "https://files.pythonhosted.org/packages/a7/c7/ee4e821060281dff93b950011f93d0df72be2ffc49d0c9796aa68d7c0f4a/cysignals-1.12.2-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d50ad08bd33ddbeb47671ed1af3ee06b9a824f66739f1def00af1ce0014246a",
"md5": "01759cbef919df2b64821f8d60935b14",
"sha256": "5f814060f23d236c36644a1898cb9ef13017035e97546730c1693bba820cf5be"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "01759cbef919df2b64821f8d60935b14",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 284964,
"upload_time": "2024-12-19T15:37:54",
"upload_time_iso_8601": "2024-12-19T15:37:54.843991Z",
"url": "https://files.pythonhosted.org/packages/2d/50/ad08bd33ddbeb47671ed1af3ee06b9a824f66739f1def00af1ce0014246a/cysignals-1.12.2-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0a08535b843d086573d24f3a39e58ade811bdf0a036bd6f7ab21b72be87a230",
"md5": "31e1c9270e904dfefc59b1432523e997",
"sha256": "8ae0370e806d80207ea0ff89bd420887ec1e5af1def1878e23e754dbc8c80815"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp312-cp312-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "31e1c9270e904dfefc59b1432523e997",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 222286,
"upload_time": "2024-12-19T15:37:57",
"upload_time_iso_8601": "2024-12-19T15:37:57.349102Z",
"url": "https://files.pythonhosted.org/packages/a0/a0/8535b843d086573d24f3a39e58ade811bdf0a036bd6f7ab21b72be87a230/cysignals-1.12.2-cp312-cp312-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b9e229eb4d844e333d9409faf0ab50838f93fa7446404f1046001fd73156dde",
"md5": "29f8807378fff1ac195ef2546598f23f",
"sha256": "4fca568dc98cf2bcf84e0eaba7a2838e2c2e21591a81c4c1f1a2c724f7c30c43"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "29f8807378fff1ac195ef2546598f23f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 215045,
"upload_time": "2024-12-19T15:37:59",
"upload_time_iso_8601": "2024-12-19T15:37:59.788438Z",
"url": "https://files.pythonhosted.org/packages/9b/9e/229eb4d844e333d9409faf0ab50838f93fa7446404f1046001fd73156dde/cysignals-1.12.2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d54454ddc9ad27f0633310bdc6eb262909b5e5ef79eeafa2f93d4f19983b49a9",
"md5": "75a5b46f1e1e55147ab479afac37e6a6",
"sha256": "6d1d170e094817e3701562ac18f1acb03cb948278bb33541c28797f58ff8873c"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "75a5b46f1e1e55147ab479afac37e6a6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 277511,
"upload_time": "2024-12-19T15:38:00",
"upload_time_iso_8601": "2024-12-19T15:38:00.941858Z",
"url": "https://files.pythonhosted.org/packages/d5/44/54ddc9ad27f0633310bdc6eb262909b5e5ef79eeafa2f93d4f19983b49a9/cysignals-1.12.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f1565d215d1b9a6d83eb55089c854a3c4e1f17488c60b23e565b509c99edbb91",
"md5": "c4f52a656911f66e2537b44f7ba11a83",
"sha256": "a5c60352ac58dc1636a42665a06e7bf99bacb590db3185030119f474f0778507"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c4f52a656911f66e2537b44f7ba11a83",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 274139,
"upload_time": "2024-12-19T15:38:02",
"upload_time_iso_8601": "2024-12-19T15:38:02.173280Z",
"url": "https://files.pythonhosted.org/packages/f1/56/5d215d1b9a6d83eb55089c854a3c4e1f17488c60b23e565b509c99edbb91/cysignals-1.12.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8dd7daba61b6d6cfbd08050b6fc8eee45dfae78c0eeaad82f6b8774560ce2989",
"md5": "ab500efee95544528e51ad8aeb0038fa",
"sha256": "0eed9a6271b66fe78c9930e09d2d1e6d6656005c73be729d3223b5ef1c5a591b"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ab500efee95544528e51ad8aeb0038fa",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 287382,
"upload_time": "2024-12-19T15:38:03",
"upload_time_iso_8601": "2024-12-19T15:38:03.402185Z",
"url": "https://files.pythonhosted.org/packages/8d/d7/daba61b6d6cfbd08050b6fc8eee45dfae78c0eeaad82f6b8774560ce2989/cysignals-1.12.2-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4ad2ced3944955982243f3719df5eb5d3ea3628fb087144072b2d78a6bf81709",
"md5": "32f22afbf91c670befacc14f00a8f8b6",
"sha256": "f3204436ad71aac93f8e4ca7ea13ba863c76a8564333239bcf8d39c84a5fdb6f"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "32f22afbf91c670befacc14f00a8f8b6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 283521,
"upload_time": "2024-12-19T15:38:06",
"upload_time_iso_8601": "2024-12-19T15:38:06.058150Z",
"url": "https://files.pythonhosted.org/packages/4a/d2/ced3944955982243f3719df5eb5d3ea3628fb087144072b2d78a6bf81709/cysignals-1.12.2-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f660a95988155a07dfb88897b38d2cd02e5ddbd6470120af064145ebecf0152c",
"md5": "949e5ca4bd6b9c7bd88e2da9ada0ea96",
"sha256": "5471fa2525e8e485725809b4e8a7a22dc6d488e33d3dd16955bb5d85b31a9a61"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "949e5ca4bd6b9c7bd88e2da9ada0ea96",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 221422,
"upload_time": "2024-12-19T15:38:07",
"upload_time_iso_8601": "2024-12-19T15:38:07.315219Z",
"url": "https://files.pythonhosted.org/packages/f6/60/a95988155a07dfb88897b38d2cd02e5ddbd6470120af064145ebecf0152c/cysignals-1.12.2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df9e18b631eaf145aefb38faae27fc689f6f3d80b2289b10376ce7cbc22ba4b8",
"md5": "547dbca94b3f58e9333b4b69dfed9bfe",
"sha256": "9b7d0162dfc7ad8c61c7db4068a5fb1e6f8deae2c46bfb408ca8f711b5f1f399"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "547dbca94b3f58e9333b4b69dfed9bfe",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 214913,
"upload_time": "2024-12-19T15:38:09",
"upload_time_iso_8601": "2024-12-19T15:38:09.283579Z",
"url": "https://files.pythonhosted.org/packages/df/9e/18b631eaf145aefb38faae27fc689f6f3d80b2289b10376ce7cbc22ba4b8/cysignals-1.12.2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da89c0e57ae03437268eb188f4cbbffa13e38435b52b2ade0138a5eeeb3a8211",
"md5": "8d04e15b2532d97a9177b6404e1dad17",
"sha256": "f821126ad0ad4307ff49111863a8c308f7200ebca514cc14c06ec67b04807633"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8d04e15b2532d97a9177b6404e1dad17",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 281394,
"upload_time": "2024-12-19T15:38:10",
"upload_time_iso_8601": "2024-12-19T15:38:10.746517Z",
"url": "https://files.pythonhosted.org/packages/da/89/c0e57ae03437268eb188f4cbbffa13e38435b52b2ade0138a5eeeb3a8211/cysignals-1.12.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1bd800dc27de56de39d245eed722c9fb190812520d7d4cf401bc4186b5cfa5a7",
"md5": "cad70f8089ad3246731ff3967aa96af4",
"sha256": "c1298b9a5ddba3bfcf81208a3623a9703ca7fe80cdbeda537cd8335cd7e543df"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "cad70f8089ad3246731ff3967aa96af4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 278467,
"upload_time": "2024-12-19T15:38:13",
"upload_time_iso_8601": "2024-12-19T15:38:13.237223Z",
"url": "https://files.pythonhosted.org/packages/1b/d8/00dc27de56de39d245eed722c9fb190812520d7d4cf401bc4186b5cfa5a7/cysignals-1.12.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f81dc3f5727c5a8137223e20ce3f3f1a55ba8c87573c50aba08a0fbc4f0d95f2",
"md5": "b6e43d0f24b1a93a447ee1fbf29bcb5d",
"sha256": "80d59f4088f94ddadd7631d32df60968d929227ffe78812240b9ee58978c0be9"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b6e43d0f24b1a93a447ee1fbf29bcb5d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 290732,
"upload_time": "2024-12-19T15:38:14",
"upload_time_iso_8601": "2024-12-19T15:38:14.559716Z",
"url": "https://files.pythonhosted.org/packages/f8/1d/c3f5727c5a8137223e20ce3f3f1a55ba8c87573c50aba08a0fbc4f0d95f2/cysignals-1.12.2-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7216b3a3a34dba65894fab4d77ce267683bccfaf604e6e332f3799214240b77",
"md5": "44eb031536ec01931c4cd0a8b4aedc0d",
"sha256": "206ebf798e9b34b47a1c1fe331d2f41e6b40af186240a40e10fbd6415ed80994"
},
"downloads": -1,
"filename": "cysignals-1.12.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "44eb031536ec01931c4cd0a8b4aedc0d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 284942,
"upload_time": "2024-12-19T15:38:15",
"upload_time_iso_8601": "2024-12-19T15:38:15.819622Z",
"url": "https://files.pythonhosted.org/packages/f7/21/6b3a3a34dba65894fab4d77ce267683bccfaf604e6e332f3799214240b77/cysignals-1.12.2-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c9056bca8c800684576615d4bfeed572a9cb9efea88d090d58301ca1202fdfa",
"md5": "93f133b49ae18fe92eaac116ecfc63ba",
"sha256": "979429f3158640504eba796dc770ed9bb4f17b2750509718a374d58ed8de2111"
},
"downloads": -1,
"filename": "cysignals-1.12.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "93f133b49ae18fe92eaac116ecfc63ba",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 193096,
"upload_time": "2024-12-19T15:38:17",
"upload_time_iso_8601": "2024-12-19T15:38:17.333581Z",
"url": "https://files.pythonhosted.org/packages/2c/90/56bca8c800684576615d4bfeed572a9cb9efea88d090d58301ca1202fdfa/cysignals-1.12.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b9caae3a8368b5ecd49aeca2a5db695cdd4ea2f2beb60fbbeb40cfe4ddaf9886",
"md5": "d6fa37a09f40c0d8317a24edeea5e010",
"sha256": "0ebbea3d28b0b90dc65bb670317a89900530c9e4c8c3f92bf13b62b1c9949981"
},
"downloads": -1,
"filename": "cysignals-1.12.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d6fa37a09f40c0d8317a24edeea5e010",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 193258,
"upload_time": "2024-12-19T15:38:19",
"upload_time_iso_8601": "2024-12-19T15:38:19.713617Z",
"url": "https://files.pythonhosted.org/packages/b9/ca/ae3a8368b5ecd49aeca2a5db695cdd4ea2f2beb60fbbeb40cfe4ddaf9886/cysignals-1.12.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb9991abbf7f2a7f2364c27fe0cc0dc8d43cccf1ea0ae41199af812c6d599464",
"md5": "8adcc737997edae02d680d688b2b9c3a",
"sha256": "d43a0dfa3c293c3ff20cb7325dea703942477b0dd1b53ccf5226c95c7154dbdd"
},
"downloads": -1,
"filename": "cysignals-1.12.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "8adcc737997edae02d680d688b2b9c3a",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 244084,
"upload_time": "2024-12-19T15:38:21",
"upload_time_iso_8601": "2024-12-19T15:38:21.013760Z",
"url": "https://files.pythonhosted.org/packages/cb/99/91abbf7f2a7f2364c27fe0cc0dc8d43cccf1ea0ae41199af812c6d599464/cysignals-1.12.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a589ea281df005a444b658a24039eaa960136b6e8e1aa5dce9b866d9ec6ad7c",
"md5": "3fc189ebcad0fb44e222c2bc70218b3e",
"sha256": "73b6f0f2d1ff8887e1f32e17abf18f7eb9ed76d4475c9d1ff6a41fb1140b5b45"
},
"downloads": -1,
"filename": "cysignals-1.12.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "3fc189ebcad0fb44e222c2bc70218b3e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.9",
"size": 241266,
"upload_time": "2024-12-19T15:38:22",
"upload_time_iso_8601": "2024-12-19T15:38:22.311618Z",
"url": "https://files.pythonhosted.org/packages/5a/58/9ea281df005a444b658a24039eaa960136b6e8e1aa5dce9b866d9ec6ad7c/cysignals-1.12.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "36b684f0f9fa096ca0580f729d0771b8079459eec8a310ca29a56d357f514008",
"md5": "726fe5a9eb9dc43aff0de90ad80a19a2",
"sha256": "407db178fb18a91118ca742ede62000b2bee62b617eb49d26fcdad7e9ba2771a"
},
"downloads": -1,
"filename": "cysignals-1.12.2.tar.gz",
"has_sig": false,
"md5_digest": "726fe5a9eb9dc43aff0de90ad80a19a2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 65828,
"upload_time": "2024-12-19T15:31:40",
"upload_time_iso_8601": "2024-12-19T15:31:40.722843Z",
"url": "https://files.pythonhosted.org/packages/36/b6/84f0f9fa096ca0580f729d0771b8079459eec8a310ca29a56d357f514008/cysignals-1.12.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-19 15:31:40",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "sagemath",
"github_project": "cysignals",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "meson-python",
"specs": []
},
{
"name": "build",
"specs": []
},
{
"name": "wheel",
"specs": []
},
{
"name": "Cython",
"specs": []
},
{
"name": "Sphinx",
"specs": []
},
{
"name": "flake8",
"specs": []
},
{
"name": "pytest",
"specs": [
[
">=",
"8.0.0"
]
]
}
],
"lcname": "cysignals"
}