The Cython compiler for writing C extensions in the Python language.
Project description
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 .
3.1.0 (2025-05-08)
Features added
3.1.0 rc 2 (2025-05-07):
Declarations for C++ std::stop_token were added as libcpp.stop_token to provide additional low-level synchronisation primitives also in the light of free-threading Python. (Github issue https://github.com/cython/cython/issues/6820)
The generation of the shared module now happens automatically from cythonize() in a setuptools build if a corresponding Extension has been configured. This avoids an additional step outside of the setup.py or pip wheel run. (Github issue https://github.com/cython/cython/issues/6842)
3.1.0 rc 1 (2025-05-01):
cython.pymutex provides a fast mutex by wrapping the new PyMutex feature of recent CPython versions (including free-threading) and falls back to PyThread locks in older Pythons. (Github issue https://github.com/cython/cython/issues/6579)
A new directive subinterpreters_compatible=shared_gil/own_gil was added to allow modules to declare support for subinterpreters. (Github issue https://github.com/cython/cython/issues/6513)
divmod() is also optimised for C floating point types and can be called on C number types without holding the GIL. (Github issue https://github.com/cython/cython/issues/6801)
New C++ declarations were added. (Github issues https://github.com/cython/cython/issues/6625, https://github.com/cython/cython/issues/6731)
embedsignature now works for special methods (if they have a docstring). (Github issue https://github.com/cython/cython/issues/1577)
3.1.0 beta 1 (2025-04-03):
Global cdef const … variables are supported. (Github issue https://github.com/cython/cython/issues/6542)
A new context manager / function decorator cython.critical_section was added wrapping Python’s critical section C-API feature. (Github issues https://github.com/cython/cython/issues/6516, https://github.com/cython/cython/issues/6577)
Some common Cython-internal code (currently only memoryview related) can now be extracted into a shared extension module to reduce the installed overall size of a package with many Cython compiled modules. (Github issue https://github.com/cython/cython/issues/2356)
The type of prange loop targets is now inferred. (Github issue https://github.com/cython/cython/issues/6585)
Extracting keyword arguments is faster in some cases. (Github issue https://github.com/cython/cython/issues/6683)
Calling divmod() on any C integer types is efficient. (Github issue https://github.com/cython/cython/issues/6717)
Some async/coroutine/vectorcall code has improved fast-paths. (Github issues https://github.com/cython/cython/issues/6732, https://github.com/cython/cython/issues/6735, https://github.com/cython/cython/issues/6736, https://github.com/cython/cython/issues/6738, https://github.com/cython/cython/issues/6742, https://github.com/cython/cython/issues/6771)
Calls to Python builtins and extension types use the vectorcall protocol. (Github issue https://github.com/cython/cython/issues/6744)
Method calls use PyObject_VectorcallMethod() where possible. (Github issue https://github.com/cython/cython/issues/6747)
Some C-API shortcuts were (re-)added. (Github issue https://github.com/cython/cython/issues/6761)
Cython can avoid normalising exceptions in an except clause if it knows that they are unused. (Github issue https://github.com/cython/cython/issues/6601)
The cython command has a new option --cache to cache generated files. (Github issue https://github.com/cython/cython/issues/6091)
The cythonize command has a new option --timeit to benchmark Cython code snippets. (Github issue https://github.com/cython/cython/issues/6697)
The argument parsing cygdb command was improved based on argparse. Patch by William Ayd. (Github issue https://github.com/cython/cython/issues/5499)
The PyWeakref_GetRef declaration was added to cpython.weakref and backported. Patch by Lysandros Nikolaou. (Github issue https://github.com/cython/cython/issues/6478)
std::span declarations were added to libcpp. Patch by Alexander Condello. (Github issue https://github.com/cython/cython/issues/6539)
std::string_view declarations were added to libcpp. Patch by Antoine Pitrou. (Github issue https://github.com/cython/cython/issues/6539)
Mutex declarations for libc and libcpp were added. (Github issue https://github.com/cython/cython/issues/6610)
Several C++ declarations were improved and extended. Patches by Yury V. Zaytsev. (Github issues https://github.com/cython/cython/issues/488, https://github.com/cython/cython/issues/489)
Bazel build rules were updated for better interoperability. Patch by maleo. (Github issue https://github.com/cython/cython/issues/6478)
The Demos/benchmarks/ directory include a new benchmark runner that can run selected benchmarks against different Cython git revisions.
3.1.0 alpha 1 (2024-11-08):
Support for freethreading builds of CPython 3.13 was added. It comes with a new directive freethreading_compatible=True to mark modules as free-threading compatible (Py_mod_gil).
https://github.com/cython/cython/issues?q=label%3A%22nogil+CPython%22
Patches by Lysandros Nikolaou and Nathan Goldbaum. (Github issue https://github.com/cython/cython/issues/6162)
Support for monitoring Cython modules via sys.monitoring in CPython 3.13+ was added. For coverage reporting, this needs to be disabled with -DCYTHON_USE_SYS_MONITORING=0 as long as coverage.py does not support sys.monitoring for coverage plugins. (Github issue https://github.com/cython/cython/issues/6144)
Many issues with the Limited C-API were resolved. It is now sufficient to define the macro Py_LIMITED_API to activate the support.
https://github.com/cython/cython/issues?q=label%3A%22limited+api%22
Support for GraalPython was improved (but is still incomplete).
Several issues with the gdb support were resolved. Patches by Kent Slaney. (Github issues https://github.com/cython/cython/issues/5955, https://github.com/cython/cython/issues/5948)
typing.Union[SomeType, None] and SomeType | None are now understood and mean the same as typing.Optional[SomeType], allowing None in type checks. (Github issue https://github.com/cython/cython/issues/6254)
cython.const[] and cython.volatile[] are now available as type modifiers in Python code. (Github issue https://github.com/cython/cython/issues/5728)
cython.pointer[SomeCType] can now be used to define pointer types in Python type annotations. (Github issue https://github.com/cython/cython/issues/5071)
Several improvements were made to reduce the size of the resulting extension modules. (Github issue https://github.com/cython/cython/issues/4425)
Function calls now use the PEP-590 Vectorcall protocol, even when passing keyword arguments. (Github issues https://github.com/cython/cython/issues/5804)
Coroutines now use the am_send slot function instead of going through a Python .send() call. This has been backported for Python 3.7 - 3.9. (Github issues https://github.com/cython/cython/issues/4585)
__set_name__ is called when assigning to class attributes. (Github issue https://github.com/cython/cython/issues/6179)
Most builtin methods now provide their return type for type inference. (Github issues https://github.com/cython/cython/issues/4829, https://github.com/cython/cython/issues/5865, https://github.com/cython/cython/issues/6412)
Method calls on builtin literal values are evaluated at compile time, if applicable. (Github issue https://github.com/cython/cython/issues/6383)
The Python int type now maps directly to PyLong and is inferred accordingly. (Github issue https://github.com/cython/cython/issues/4237)
Integer operations on known int types are faster. (Github issue https://github.com/cython/cython/issues/5785)
f-strings are faster in some cases. (Github issues https://github.com/cython/cython/issues/5866, https://github.com/cython/cython/issues/6342, https://github.com/cython/cython/issues/6383)
divmod() is faster on C int. Patch by Tong He. (Github issue https://github.com/cython/cython/issues/6073)
dict.pop() is faster in some cases. (Github issue https://github.com/cython/cython/issues/5911)
.isprintable() is optimised for Unicode characters. (Github issue https://github.com/cython/cython/issues/3277)
x in () and similar tests against empty constant sequences (e.g. in generated code) are now discarded if they have no side-effects. (Github issue https://github.com/cython/cython/issues/6288)
Constant (non-GC) Python objects are no longer traversed with Py_VISIT() during GC runs. (Github issue https://github.com/cython/cython/issues/6277)
C++ classes implemented in Cython can now use method overloading. Patch by samaingw. (Github issue https://github.com/cython/cython/issues/3235)
Assigning a Python container to a C++ vector now makes use of __length_hint__ to avoid reallocations. Patch by Denis Lukianov. (Github issue https://github.com/cython/cython/issues/6077)
The C++11 emplace* methods were added to libcpp.deque. Patch by Somin An. (Github issue https://github.com/cython/cython/issues/6159)
cpython.time was updated and extended for Python 3.13. (Github issue https://github.com/cython/cython/issues/6187)
Dataclasses support the match_args option. (Github issue https://github.com/cython/cython/issues/5381)
Threading in parallel sections can now be disabled with a new use_threads_if condition. (Github issue https://github.com/cython/cython/issues/5919)
New options warn.deprecated.DEF and warn.deprecated.IF can silence the deprecation warnings. Patch by Eric Larson. (Github issue https://github.com/cython/cython/issues/6243)
cygdb shows more helpful output for some objects. Patch by Kent Slaney. (Github issue https://github.com/cython/cython/issues/5958)
Bazel build support for improved. Patch by mering. (Github issue https://github.com/cython/cython/issues/6452)
The parser was updated for Unicode 15.1 (as provided by CPython 3.13b4).
Bugs fixed
3.1.0 rc 2 (2025-05-07):
Variables typed as builtin Python exception types now accept subtypes instead of rejecting them. This specifically impacted types like BaseException, Exception or OSError, which almost always intend to reference subtypes. (Github issue https://github.com/cython/cython/issues/6828)
Functions with more than 10 constant default argument values could generate invalid C code. (Github issue https://github.com/cython/cython/issues/6843)
The call_once() function argument in libc.threads (new in 3.1) was changed to require a nogil declaration, as semantically implied. Code that used it with a callback function expecting to hold the GIL must change the callback code to use with gil.
Calling cimported C functions with their fully qualified package name could crash Cython. (Github issue https://github.com/cython/cython/issues/6551)
Naming a variable after its inferred type (e.g. str += “”) could trigger an infinite loop in Cython. (Github issue https://github.com/cython/cython/issues/6835)
Cython is more relaxed about the exact C++ constructor name when it calls new() on ctypedefs. (Github issue https://github.com/cython/cython/issues/6821)
Using cpp_locals in nogil sections could crash. (Github issue https://github.com/cython/cython/issues/6838)
const struct declarations could lead to invalid assignments to const temp variables. (Github issue https://github.com/cython/cython/issues/6804)
A refcounting error was fixed in the method class cell support code. (Github issue https://github.com/cython/cython/issues/6839)
3.1.0 rc 1 (2025-05-01):
Iterating over literal sequences in generator expressions could generate invalid C code. (Github issue https://github.com/cython/cython/issues/6725)
Tracing could generate invalid C code. (Github issue https://github.com/cython/cython/issues/6781)
Non-ASCII function argument names could generate invalid C code. (Github issue https://github.com/cython/cython/issues/6813)
Optimised divmod() calls could produce incorrect results in beta-1 due to incorrect C type usage. (Github issue https://github.com/cython/cython/issues/6786)
Raising UnboundLocalError could fail for non-ascii variable names. (Github issue https://github.com/cython/cython/issues/6800)
The signature of PyByteArray_Resize() in cpython.bytearray failed to propagate exceptions. Patch by Kirill Smelkov. (Github issue https://github.com/cython/cython/issues/6787)
Some more issues with the Limited C-API and free-threading Python were resolved.
https://github.com/cython/cython/issues?q=label%3A%22limited+api%22
https://github.com/cython/cython/issues?q=label%3A%22nogil+CPython%22
The signature of cythonize_one() accidentally changed in 3.1.0b1. (Github issue https://github.com/cython/cython/issues/6815)
3.1.0 beta 1 (2025-04-03):
Many issues with the Limited C-API and free-threading Python were resolved. This includes better thread-safety of Cython-internal types like functions and generators.
https://github.com/cython/cython/issues?q=label%3A%22limited+api%22
https://github.com/cython/cython/issues?q=label%3A%22nogil+CPython%22
for-in loops could generate invalid code for C++ containers. Patch by Taras Kozlov. (Github issue https://github.com/cython/cython/issues/6578)
PyDict_GetItemRef() and PyList_GetItemRef() were not always used correctly. Patch by Lisandro Dalcin. (Github issue https://github.com/cython/cython/issues/6647)
Inlined calls to local functions could crash with binding=False. (Github issue https://github.com/cython/cython/issues/6556)
Calling sorted() could crash in 3.1.0a1. (Github issue https://github.com/cython/cython/issues/6496)
Calling 0-arg methods was unnecessarily slow in 3.1.0a1. (Github issue https://github.com/cython/cython/issues/6730)
A crash when reading the interpreter ID was fixed.
Crashes while tracing C function returns were resolved. (Github issue https://github.com/cython/cython/issues/6503)
A compiler crash on complex/complex was resolved. (Github issue https://github.com/cython/cython/issues/6552)
A compiler crash when using the cpp_locals directive was resolved. (Github issue https://github.com/cython/cython/issues/6370)
Name mangling did not work correctly for attributes of extension types that have reserved C names. (Github issue https://github.com/cython/cython/issues/6678)
Declaring a @staticmethod in a pxd file and overriding it in a subclass could trigger incorrect “declared but not defined” errors. Patch by Aditya Pillai. (Github issue https://github.com/cython/cython/issues/6714)
Cython’s fake code objects are now compatible with GraalPython. (Github issue https://github.com/cython/cython/issues/6409)
Stepping through foreign code with cygdb could fail with an IndexError. Patch by clayote. (Github issue https://github.com/cython/cython/issues/6552)
Some PyPy incompatibilities were resolved. Patches by Matti Picus. (Github issue https://github.com/cython/cython/issues/6592, https://github.com/cython/cython/issues/6640)
Interoperability with recent Pythran releases was fixed. (Github issue https://github.com/cython/cython/issues/6494)
The gdb compatibility of cygdb was improved. Patch by Kent Slaney. (Github issue https://github.com/cython/cython/issues/6681)
Some redundant exception normalisation work was removed in Python 3.12+. (Github issue https://github.com/cython/cython/issues/6599)
A compiler hang introduced in 3.1a1 when overriding methods was resolved. Patch by Aditya Pillai. (Github issue https://github.com/cython/cython/issues/6704)
A compiler crash was resolved when trying to issue a warning. Patch by Gabriele N. Tornetta. (Github issue https://github.com/cython/cython/issues/6711)
Some incomplete import time “safety checks” from 3.1.0a1 were removed again. (Github issue https://github.com/cython/cython/issues/6671)
Using the common_utility_include_dir option in parallel builds on Windows could fail.
Some “unused” warnings from the C compiler were resolved. Patches by Lisandro Dalcin. (Github issue https://github.com/cython/cython/issues/6726)
3.1.0 alpha 1 (2024-11-08):
C functions used different start lines and columns for error reporting and tracing than Python functions. They now use the line and column of their first decorator or (if none) their definition line, as in Python. (Github issue https://github.com/cython/cython/issues/6366)
Dataclasses did not handle default fields without init value correctly. (Github issue https://github.com/cython/cython/issues/5858)
Implementing a special method based on another could lead to infinite recursion. (Github issue https://github.com/cython/cython/issues/5863)
The __class__ cell variable in methods was not always working as in Python. Initial patch by Tom Keefe. (Github issue https://github.com/cython/cython/issues/2912)
Lambda functions had no code objects. Their signature can now be introspected. (Github issue https://github.com/cython/cython/issues/2983)
Subtyping complex as extension type could fail. (Github issue https://github.com/cython/cython/issues/6346)
hasattr() now propagates exceptions that occur during lookup. (Github issue https://github.com/cython/cython/issues/6269)
The base type of extension heap types is now traversed during GC runs in Py3.9+. (Github issue https://github.com/cython/cython/issues/4193)
The Python & operator could touch invalid memory with certain 0 values in Python <= 3.10. Patch by Michael J. Sullivan. (Github issue https://github.com/cython/cython/issues/4193)
Exception values were not always recognised as equal at compile time. (Github issue https://github.com/cython/cython/issues/5709)
Running Cython in different Python versions could generate slightly different C code due to differences in the builtins. (Github issue https://github.com/cython/cython/issues/5591)
The common_include_dir feature used different file paths in the C code on Windows and Posix. It now uses forward slashes as directory separator consistently. (Github issue https://github.com/cython/cython/issues/6355)
File paths in the C code are now relative to the build directory. Patch by Oscar Benjamin. (Github issue https://github.com/cython/cython/issues/6341)
depfiles now use relative paths whenever possible. Patch by Loïc Estève. (Github issue https://github.com/cython/cython/issues/6345)
The -a option in the IPython magic no longer copies the complete HTML document into the notebook but only a more reasonable content snippet. Patch by Min RK. (Github issue https://github.com/cython/cython/issues/5760)
Uselessly referring to C enums (not enum values) as Python objects is now rejected. Patch by Vyas Ramasubramani. (Github issue https://github.com/cython/cython/issues/5638)
Cython no longer acquires the GIL during in-place assignments to C attributes in nogil sections. Patch by Mads Ynddal. (Github issue https://github.com/cython/cython/issues/6407)
Several C++ warnings about char* casts were resolved. (Github issues https://github.com/cython/cython/issues/5515, https://github.com/cython/cython/issues/5847)
C++ undefined behaviour was fixed in an error handling case. (Github issue https://github.com/cython/cython/issues/5278)
Dict assignments to struct members with reserved C/C++ names could generate invalid C code.
The PEP-479 implementation could raise a visible RuntimeError without a trace of the original StopIteration. (Github issue https://github.com/cython/cython/issues/5953)
A crash was fixed when assigning a zero-length slice to a memoryview. Patch by Michael Man. (Github issue https://github.com/cython/cython/issues/6227)
Conditionally assigning to variables with the walrus operator could crash. (Github issue https://github.com/cython/cython/issues/6094)
Unterminated string literals could lock up the build in an infinite loop. (Github issue https://github.com/cython/cython/issues/5977)
Exporting C functions uses better platform compatible code. (Github issue https://github.com/cython/cython/issues/4683)
The shebang in libpython.py was incorrect. Patch by Luke Hamburg. (Github issue https://github.com/cython/cython/issues/6439)
Cython now uses SHA-256 instead of SHA-1 for caching etc. as the latter may not be available on all Python installations. (Github issue https://github.com/cython/cython/issues/6354)
3.0.12 (2025-02-11):
Release 3.0.11 introduced some incorrect noexcept warnings. (Github issue https://github.com/cython/cython/issues/6335)
Conditional assignments to variables using the walrus operator could crash. (Github issue https://github.com/cython/cython/issues/6094)
Dict assignments to struct members with reserved C names could generate invalid C code.
Fused ctuples with the same entry types but different sizes could fail to compile. (Github issue https://github.com/cython/cython/issues/6328)
In Py3, pyximport was not searching sys.path when looking for importable source files. (Github issue https://github.com/cython/cython/issues/5615)
Using & 0 on integers produced with int.from_bytes() could read invalid memory on Python 3.10. (Github issue https://github.com/cython/cython/issues/6480)
Modules could fail to compile in PyPy 3.11 due to missing CPython specific header files. Patch by Matti Picus. (Github issue https://github.com/cython/cython/issues/6482)
Minor fix in C++ partial_sum() declaration.
3.0.11 (2024-08-05):
The exception check value of functions declared in pxd files was not always applied in 3.0.10. (Github issue https://github.com/cython/cython/issues/6122)
A crash on exception deallocations was fixed. (Github issue https://github.com/cython/cython/issues/6022)
A crash was fixed when assigning a zero-length slice to a memoryview. Patch by Michael Man. (Github issue https://github.com/cython/cython/issues/6227)
libcpp.optional.value() could crash if it raised a C++ exception. Patch by Alexander Condello. (Github issue https://github.com/cython/cython/issues/6190)
The return type of str() was mishandled, leading to crashes with language_level=3. (Github issue https://github.com/cython/cython/issues/6166)
bytes.startswith/endswith() failed for non-bytes substrings (e.g. bytearray). (Github issue https://github.com/cython/cython/issues/6168)
Fused ctuples crashed Cython. (Github issue https://github.com/cython/cython/issues/6068)
A compiler crash was fixed when using extension types in fused types. (Github issue https://github.com/cython/cython/issues/6204)
The module cleanup code was incorrect for globally defined memory view slices. (Github issue https://github.com/cython/cython/issues/6276)
Some adaptations were made to enable compilation in Python 3.13. (Github issues https://github.com/cython/cython/issues/5997, https://github.com/cython/cython/issues/6182, https://github.com/cython/cython/issues/6251)
Other changes
3.1.0 rc 1 (2025-05-01):
Named cpdef enums no longer copy their item names into the global module namespace. This was considered unhelpful for named enums which already live in their own class namespace. In cases where the old behaviour was desired, users can add the following backwards compatible command after their enum class definition: globals().update(TheUserEnumClass.__members__). Anonymous enums still produce global item names, as before. (Github issue https://github.com/cython/cython/issues/4571)
3.1.0 beta 1 (2025-04-03):
All Cython-internal types (functions, coroutines, …) are now heap types and use type specs. (Github issue https://github.com/cython/cython/issues/6633)
Tracing/monitoring is now disabled in parallel/prange sections. (Github issue https://github.com/cython/cython/issues/6709)
The numpy.math cimport module has been deprecated. Usages should be replaced by libc.math. (Github issue https://github.com/cython/cython/issues/6743)
Includes all fixes as of Cython 3.0.12.
3.1.0 alpha 1 (2024-11-08):
Support for Python 2.7 - 3.7 was removed, along with large chunks of legacy code. (Github issue https://github.com/cython/cython/issues/2800)
The pxd files cpython.int, cpython.cobject, cpython.oldbuffer and cpython.string were removed as they refer to C-API declarations that are only in Python 2.x. (Github issue https://github.com/cython/cython/issues/5870)
The generated C code now requires a C99 compatible C compiler.
language_level=3 is now the default. language_level=3str has become a legacy alias. (Github issue https://github.com/cython/cython/issues/5827)
The Py2 types unicode and basestring are now deprecated and have become aliases of the str type. (Github issue https://github.com/cython/cython/issues/6374)
Docstrings now strip their leading whitespace according to PEP-257. Patch by Lawrence Mitchell. (Github issue https://github.com/cython/cython/issues/6241)
Type checkers should have it easier to find and validate Cython types in .py files. (Github issue https://github.com/cython/cython/issues/4327)
The previously shipped NumPy C-API declarations (cimport numpy) were removed. NumPy has been providing version specific declarations for several versions now. (Github issue https://github.com/cython/cython/issues/5842)
Usages of the outdated WITH_THREAD macro guard were removed. (Github issue https://github.com/cython/cython/issues/5812)
The options for showing the C code line in Python exception stack traces were cleaned up. Previously, disabling the option with the CYTHON_CLINE_IN_TRACEBACK macro did not reduce the code overhead of the feature, and the c_line_in_traceback compile option was partly redundant with the C macro switches and lead to warnings about unused code. Since this is considered mostly a debug feature, the new default is that it is _disabled_ to avoid code and runtime overhead. It can be enabled by setting the C macro to 1, and a new macro CYTHON_CLINE_IN_TRACEBACK_RUNTIME was added that controls the runtime configurable setting if the feature is enabled, which was previously only available through the compile option. The compile option is now deprecated (but still available), and users should migrate to using the two C macros only. (Github issue https://github.com/cython/cython/issues/6036)
Includes all fixes as of Cython 3.0.11 (but generates C99 code in some places).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file cython-3.1.0.tar.gz
.
File metadata
- Download URL: cython-3.1.0.tar.gz
- Upload date:
- Size: 3.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1097dd60d43ad0fff614a57524bfd531b35c13a907d13bee2cc2ec152e6bf4a1 |
|
MD5 | 715cd0754bfa6516021f9ee2a7679255 |
|
BLAKE2b-256 | cff7db37a613aec5abcd51c8000a386a701ac32e94659aa03fa69c3e5c19b149 |
File details
Details for the file cython-3.1.0-py3-none-any.whl
.
File metadata
- Download URL: cython-3.1.0-py3-none-any.whl
- Upload date:
- Size: 1.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e460bdf1d8742ddf4914959842f2f23ca4934df97f864be799ddf1912acd0ab |
|
MD5 | 45df2b2a8e7d4b9a8b497f6bace45d20 |
|
BLAKE2b-256 | 9fcc221af506254978b119a2f6769b81b16bcfe09e0fb3fc5ab66e53e536d933 |
File details
Details for the file cython-3.1.0-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d6c88e8c86f2c582a2f9b460174ef86d9e01c8bfb12b8f7c44d697242285551 |
|
MD5 | d98280575192393d0eafd9ea46e21f55 |
|
BLAKE2b-256 | a2bf322e89d5fbf692fb1581ec2cb95f8286b45dbfe738af6459ca085e40c071 |
File details
Details for the file cython-3.1.0-cp313-cp313-win32.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6854c89d6c1ff472861376822a9df7a0c62b2be362147d313cf7f10bf230c69 |
|
MD5 | 86617c46561984a65ef124296f9552d7 |
|
BLAKE2b-256 | b8c410baec2a2e214cd0b74debfe6cca0adda7753dd1a3f41b2a3943227c0db4 |
File details
Details for the file cython-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 856950b7c4282a713bcf4794aaae8f18d4a1ae177d3b63739604c91019ac4117 |
|
MD5 | 6555b364e663a990eb8d96a6f0112afc |
|
BLAKE2b-256 | 9ff9f862904d1e7949b94f103d2dd97e82f56a94afecfd3d475fe4ca7a6ca063 |
File details
Details for the file cython-3.1.0-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0605d364a2cc632c9269990777c2b266611724d1fccaa614fde335c2209b82da |
|
MD5 | fae64146f9a8b3a909799057c488fa30 |
|
BLAKE2b-256 | be0c52bc291109dbedc1e054ead71d8f1f4ade060f69e0d69e0675e0e13a2238 |
File details
Details for the file cython-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e03b3280c7ff99fae7b47327a4e2de7e117b069ce9183dc53774069c3e73d1c8 |
|
MD5 | 56c0bc50bc70ac07a7e4f8256360acfb |
|
BLAKE2b-256 | 425447779d9dd2ff253b81fa2eb77a064a8290c0a74b42cf155a5527eb5bc3fc |
File details
Details for the file cython-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c088ac33f4fa04b3589c4e5cfb8a81e9d9a990405409f9c8bfab0f5a9e8b724f |
|
MD5 | c7a44db5557b7b6951568dd53a43731a |
|
BLAKE2b-256 | 8f143676fcf2936c3a01538c01069f649440d3948d77ac117934896ed20f724b |
File details
Details for the file cython-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4551f9ab91019b6b63cf8b16bf1abb519db67627c31162f604e370e596b8c60c |
|
MD5 | ff91743d5563597bf5986dc03cebe027 |
|
BLAKE2b-256 | 8feb0870813d86e1cfdeaeecb548192ac6c1fe8d1195b5cf60401aac62b3d139 |
File details
Details for the file cython-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8926651830ada313a04284e711c2cf11e4e800ca080e83012418208edd4334a2 |
|
MD5 | 15f7351fc86513044444dfa4b675d0b5 |
|
BLAKE2b-256 | e65dac817171129ebea07dde321301a3d54740765c8600133b9b3a790d5e932a |
File details
Details for the file cython-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd0003171ad84d4812fdb1eb9a4f678ed027e75fbc2b7bef5db482621b72137a |
|
MD5 | b37c8b21f6ad51bbc1f488de98bb893f |
|
BLAKE2b-256 | f35a6eee7f38a77b7d533f59f3978af90b4a0958ff63a6191f9ae34e94bee982 |
File details
Details for the file cython-3.1.0-cp313-cp313-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 539828d14fbd95eff135e8dc9e93012f5b018657868f15a69cb475b8784efb9a |
|
MD5 | 92b7550dcf2cd7c60660a1f77f4de943 |
|
BLAKE2b-256 | 2a8f47cdebf325a026963fe0e4f1a6e0b02304e1797863186c552e242be78861 |
File details
Details for the file cython-3.1.0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61eb67401bd6c977084fc789812bd40f96be500049adb2bab99921d696ae0c87 |
|
MD5 | 77c932caa8d5b040b4d88b5e1b43ff49 |
|
BLAKE2b-256 | 4aa174009b116dbec7d6c721ac268a4aa2c0c0069c99c138586f27c8fb77cae3 |
File details
Details for the file cython-3.1.0-cp312-cp312-win32.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d41d17d7cfcfbddf3b7dc0ceddb6361b8e749b0b3c5f8efa40c31c249127fa15 |
|
MD5 | cbd8b7efc017388b4c2ca1b8ddc86c7e |
|
BLAKE2b-256 | be6105b58fc96248b2d6e487f1f8d20217d3ce6d4ba5b621fb315b23c87d077c |
File details
Details for the file cython-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe3320d13cde70fa8b1936e633b9e0fa68720cc61f97aa371d56d0f84fba3e02 |
|
MD5 | e4c5fe91d0a71c0ef49d340ee34a799f |
|
BLAKE2b-256 | fa67b707c2548cc2f790c60bb634b996f93e748ad081681c28fe7a22591e663e |
File details
Details for the file cython-3.1.0-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdde5f25fdb8a5d50dbe5d418fe5bfb2260b1acdbd45b788e77b247e9adf2f56 |
|
MD5 | 63467364206ac84a8f66f7fe33a4218b |
|
BLAKE2b-256 | 6322ecb9301ee1efbb0b3a6be371fd01be87d45113ed2fe804897d399da8af6f |
File details
Details for the file cython-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c96908b302e87e99915b3b66481a976e32b864e95bf054dcd2cb859dffd8cb10 |
|
MD5 | b8f85a6a271de6d7846f0265fb5fdebc |
|
BLAKE2b-256 | fb9877c50a153f4acdf7b48d055c5387edbcd3de1e0d17affca5181cb009f702 |
File details
Details for the file cython-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8818446612461aca3978ebe8e3def817a120d91f85022540843ebe4f24818cd6 |
|
MD5 | a2df7eeaf551857ebce59e3a55268c69 |
|
BLAKE2b-256 | c97a5d5507f1fafd3215ea7d01e1c78809ca71dddd88b4ce75dba3ca53ab2b3b |
File details
Details for the file cython-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a46b34defa672268474fbb5541f6297f45df9e4ecc4def6edd6fe1c44bfdb795 |
|
MD5 | baef78429245ec4ed836bdde24f0496f |
|
BLAKE2b-256 | 6aebaeb62d32049ab55555e679b7d0cdb2f8c16f6a9d1189a56a96a0c1e86083 |
File details
Details for the file cython-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe401e825b0fbeec75f8cc758c8cf32345c673bdb0edaf9585cd43b9d2798824 |
|
MD5 | d85151e0216cee8fd4df8104bedefd99 |
|
BLAKE2b-256 | f89734dd0112d042ec85736273acb2caced7e576681fbf003bcefd007bbd36d2 |
File details
Details for the file cython-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db8e15c8eeee529468eab08528c9bf714a94354b34375be6c0c110f6012a4768 |
|
MD5 | 365cc899a251004a016f6ee7f8bac470 |
|
BLAKE2b-256 | cce6c8fe5e71b4272a1b5683a006bfe4bfeb5e2691c6603b44d18eb57772f626 |
File details
Details for the file cython-3.1.0-cp312-cp312-macosx_10_13_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f8c4753f6b926046c0cdf6037ba8560f6677730bf0ab9c1db4e0163b4bb30f9 |
|
MD5 | ade5e6ada1818b046c62065ee1842e51 |
|
BLAKE2b-256 | e964ae1d8848550ec3975634fcf189ccc85e73c3b9f76369dd85c484f2f8f1c3 |
File details
Details for the file cython-3.1.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dde3726aa5acbe879f849a09606b886491f950cfa993b435e50e9561fdf731c6 |
|
MD5 | e91632dc8fa3b99c0f19e621682f3214 |
|
BLAKE2b-256 | 536e3ea341450bc40f3c0c3da9ae05c22eeb59930531accba78a4b3eebaf342c |
File details
Details for the file cython-3.1.0-cp311-cp311-win32.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f6417d378bd11ca55f16e3c1c7c3bf6d7f0a0cc326c46e309fcba46c54ba4f1 |
|
MD5 | 0d10b7232abdd85c1685527fc1bdd4bd |
|
BLAKE2b-256 | 62520670d10b563b2f345477a158bd133399ddb9e7f6ff16e397e77932c07026 |
File details
Details for the file cython-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe8c1db9ec03d9ef83e33c842c108e892577ade4c5f530c9435beced048e4698 |
|
MD5 | 01a51fcdb7122f91ead1b013e0b13889 |
|
BLAKE2b-256 | 61ab2966d2786f4e6a7903d23b019a810675334960e8d88686a985286bd8f53d |
File details
Details for the file cython-3.1.0-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bea0b6bfde7493acb0529fc603abd4b3b13c3bb2fff7a889ae5a8d3ea7dc5a84 |
|
MD5 | 24e723abcc6a4c41a09238c0dc8b7691 |
|
BLAKE2b-256 | 0e52297ce50c21647ae3741856e57f04ba69b1819e5658756823a3a1efd05e8e |
File details
Details for the file cython-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37d62b8b8919126c75769e5470b288d76c83a1645e73c7aca4b7d7aecb3c1234 |
|
MD5 | c9d09b5ef517cb70b4e2a61fc1fe78d3 |
|
BLAKE2b-256 | 914999148b55ad1c036fb1cb69bf3729d2beecc4246f7c5f487006f16ec1f394 |
File details
Details for the file cython-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 462ad6142057e81715ada74e2d24b9a07bf36ae3da72bf973478b5c3e809c26d |
|
MD5 | daf4ac5d9c24c5acb9097325c70430ee |
|
BLAKE2b-256 | 58e74fe8304d1caccff52a4c042274b42bf23574a380e64a86daaf4c695be510 |
File details
Details for the file cython-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 522d4dae1fea71eee5c944fb7a8530de8bdd6df0ccb2bd001d0f75be228eac6c |
|
MD5 | bf9a1cb6212bb57f559845e2b5b99425 |
|
BLAKE2b-256 | 6eb39778e21b317c10e9a1028270eb87eda91202cd37ee1e0c09630a600629ef |
File details
Details for the file cython-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8f00cdeb14f004ebeacf946e06bad2e3ed5776af96f5af95f92d822c4ba275f |
|
MD5 | eb7893b0f3c441506ee614710077f186 |
|
BLAKE2b-256 | 0a889d3d7a1cb8ce3e93acbabac6f2275cfaa1021c2ddf93d2c0999bb2ee4d43 |
File details
Details for the file cython-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1215d3adb4e8691d03e712aed31206d21f387a8003d8de6a574ee75fe6d2e07c |
|
MD5 | e80984fd3ebb5c8f05ac53a3bf292f35 |
|
BLAKE2b-256 | 596f2f4e1382e365006055ec7b803372283065c4cef6f5bab88f8ed2ab350452 |
File details
Details for the file cython-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c736405078dc376502617eb41c39e223ae176ebd1a4ddc18179d2517bc8c8658 |
|
MD5 | aa077c288af4825a2626cbb610b2501f |
|
BLAKE2b-256 | 1bbdeb20821704e0bac5051ae552db574cf5022ba658006a0c187d85d50cfd69 |
File details
Details for the file cython-3.1.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8dbefee67f3c9219cc9d2311e4ebf9f7b930e1db4b6eec2863df0c436e3c78d0 |
|
MD5 | 864fc609d186d2dc6fe26c4b019f0dc1 |
|
BLAKE2b-256 | dc68f7a75c7b1b1c355e7fcca44bc0578c67106c486e9b735bfa2cb1388b1a7b |
File details
Details for the file cython-3.1.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8029dffafa9ec5e83b6cc28f8b061f158132f2b1e800673716f7b9d9f85f2335 |
|
MD5 | 9801d2bf3570576b5d588fd709214493 |
|
BLAKE2b-256 | e8ddab671996ea70e89f6757d25ee8566435105f4bdb46f3be8f6ed15e44e3b7 |
File details
Details for the file cython-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 678e204230ece3205c17285383727b9e99097e7a80330fabb75cdd80d1f4c2ee |
|
MD5 | 906fc1996a7d6c9715168155381ffb22 |
|
BLAKE2b-256 | a172454497a5fd7f47e9fcf72e06eebfd0736d64cc8c09faac794ce9507e490a |
File details
Details for the file cython-3.1.0-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d78774a25c221fbda3855acbccb249989a04d334fb4ac8112ab5ffe4f1bcc65e |
|
MD5 | 6c283f27cef6006dc5b64ee2171d5927 |
|
BLAKE2b-256 | d5ef6b44c99713b440bcf024824ec7871a1ef7c7f0d420ef9b03a3a26bfecebb |
File details
Details for the file cython-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c063146c711751701ad662eefbdf5b396098d646f1239a2f5a6caea2d6707c5d |
|
MD5 | c26bf73db441f2ea9613420bffe39216 |
|
BLAKE2b-256 | fa9644dc42407a5b60c59dbafea4d42aafed7a6e2ea664f9d12b63b9fde40fc0 |
File details
Details for the file cython-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d722d311fee9f0dc80b17b8f9d1f46311be63b631b7aeed8530bf5f5e8849507 |
|
MD5 | 32ec80c4ce267dee5569aa61f7affc5d |
|
BLAKE2b-256 | 43ca57723154d0a28bd75419f58479629a08b3a2dd5ed5dd21259a7c4c1e4d9f |
File details
Details for the file cython-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 136c938f3c0fe91bea3eab32751b860ab7587285c5225436b76a98fe933c599a |
|
MD5 | 6c05143a6cce7c7fd0aa627f13e7edba |
|
BLAKE2b-256 | 061322a7228dbd58ea265a5ca060e9b5b6efb6cc578e2cce4873e6d32911da22 |
File details
Details for the file cython-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95eb189635a4542f1f8471bcf9756bffdac5294c41d4a4de935c77852d54e992 |
|
MD5 | b6f9701a14b18aa99146154d29ffff19 |
|
BLAKE2b-256 | dc9bb8fdd4c390363a5e3e37f4ce704c1b010d1f7de9f7440a37eb90f24ad782 |
File details
Details for the file cython-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9389b7941e333a1cc11074556adbf6a9f97ed3de141c1b45cc9f957cd7f7fa2 |
|
MD5 | 6041ceae01c684f7004c15af2cd186ef |
|
BLAKE2b-256 | a1db1eaf36412f5fc0a8fe3b0f50f82f3ca73ffc4aa86c4dfe9bcb324e5b1dde |
File details
Details for the file cython-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 335982ac0b71a75720b99b980570b9a8416fafd1989ccf4292c0f2e0e1902eac |
|
MD5 | ca6862528f0679675e85fb18aa83f6b8 |
|
BLAKE2b-256 | 2cd00fa0e74e575951be0b13719331bcb7aa9c3ced53da085a7cdad195fa781e |
File details
Details for the file cython-3.1.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 286371835ca5f51e84d450243d5e341ca00513a04b2dc22333da34c0cdd375e5 |
|
MD5 | 49a0716603c2d21d518480f8c8145d72 |
|
BLAKE2b-256 | 8982a720443585c10a7a9e214ee073510d53efa75731c51b0b75600b17935394 |
File details
Details for the file cython-3.1.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9851900eace8794d5225b7910d7929a25817f078b0e4dba064313f8a1ed2326 |
|
MD5 | 5dd81f492593fe02914d2e3b02c6cf4e |
|
BLAKE2b-256 | 9aaecff41ecf1ea28670284f19b033a79cff714388bdd945a49c34ecc3f76572 |
File details
Details for the file cython-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 752b34334a75a8f8bb10e23cac8d397bf3cc8dcb3bd95b40156b914299c5e25f |
|
MD5 | cb06ab80cba599130d3f2fa6b2acabc3 |
|
BLAKE2b-256 | cb603c2d4c872820a81cf90aa2f6a0d5b3ee74f66215d527591eb2e18fa7d1c7 |
File details
Details for the file cython-3.1.0-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e162a2bd810ae9c9bb548beec8abe00ef80494b7705867363d92988696a09b9c |
|
MD5 | f62c2d0d96beed44c78d0a69f65417a9 |
|
BLAKE2b-256 | 65818ad9d6a573a40519fd3fdde9edc54c23b74c00905120ba069a4365d5adeb |
File details
Details for the file cython-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88020b0a427fcdbea0fd1ffd51877f06dec8d810ff123e301fe0ceca62562714 |
|
MD5 | 673a100cf4933acc5aa7c463edfaecff |
|
BLAKE2b-256 | 3f4030c65d40c61e560c055e586f368a75d4b244f882bb6b7a6aa949c8a9de1f |
File details
Details for the file cython-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab3b461f4b18ccc2b692b512c8c35c92a2d2a1bcaed41cb0864108109782cc4a |
|
MD5 | 0a49cfc1edee7d2e331ae3ae2f48cf7c |
|
BLAKE2b-256 | de3a42d15d96473d47fd25acf843f5f99b6fb003f2a2516f898a3b6ebbd26ea5 |
File details
Details for the file cython-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5903c4c474548c66865dd616254d09f7db1ea4c43c1d0bcf927166de5ea9b0c9 |
|
MD5 | 8146a26a467a8b303d32a3294600c1fd |
|
BLAKE2b-256 | a1cc2386c755f0505ddf8705b62f94265b47442c13d67490224810b704d29623 |
File details
Details for the file cython-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9511b32f2a77b5ead0690c9a051038e0d30c25334bd6915c3fe657d5852399c1 |
|
MD5 | fd7054d101ea9e6614ffca65ccb45056 |
|
BLAKE2b-256 | 7fd070fb8cc0ed1544e44cb4f3f8df70db17621f635d9886b2bd91e9e748c9b2 |
File details
Details for the file cython-3.1.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 012d424d313c28c5ef63cce23e23e39dc8ea2825c8697de145549b99125c8966 |
|
MD5 | 44a70f4b9b5d89d7c3ad2a4b98a6e07e |
|
BLAKE2b-256 | c3fdb627e09a6dc3d0723de37451c6ef7517c5cab3e1808cd4f65d320d90b9ea |
File details
Details for the file cython-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0bf339b064b0e67807937a2d6cb370c41b8b0d5f7fbcbdc3b97550536261b6cf |
|
MD5 | 656e1b81d0431fd527a7a630f0d69127 |
|
BLAKE2b-256 | c0f1ec06f1a3e6926ba903dbe5cd4940c599f2a32cf6dc8b1690da433b0f24f7 |
File details
Details for the file cython-3.1.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f0469e82b70b7a9e74dda3c96ea56a04bcd545b9213ccbdb8bdaf7ca8b43989 |
|
MD5 | 9ba762d1ed5895fc8e147e4537882bd5 |
|
BLAKE2b-256 | 105708c3bf52ae98f690d8b85c7a1f123f24b34b1f31c69791d429a7473f7734 |
File details
Details for the file cython-3.1.0-cp38-cp38-win32.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-win32.whl
- Upload date:
- Size: 2.5 MB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5d3d11a2c8679f49a237993138b253d7a4ee1363d1d557d6e637d593adf14fb |
|
MD5 | 21d6f131b0a6a3d07b94ff0f51793a5e |
|
BLAKE2b-256 | 50083758a8028d4f5f14c4825da787e4dd58d87234b7a1fae9e50f06c7f4acdf |
File details
Details for the file cython-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 588634346814b91ab8e119980337118b83916dccd49d2eea7ce326a754fd7d5c |
|
MD5 | 07f14a7bb8d5579dc31f2809b3abf39e |
|
BLAKE2b-256 | 9cc70f5386ebdd518e4dc390864a1deef624ced124e3b39a09f84a3ae19f4025 |
File details
Details for the file cython-3.1.0-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f2d60a9055db796e488656732d2b1d9c73869c720c97d996bcada3c0a8ecff6 |
|
MD5 | 85d2ab4c893c6e7cf5fb154680226d0f |
|
BLAKE2b-256 | 4f4de11c6012a596f8a3da1956a70b0b13023a42b1c2c81fe62259785f913ab5 |
File details
Details for the file cython-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83c43fc0bac24942da6c3cc9c30e8664319c1758c2197a7649f5849257fa3e75 |
|
MD5 | a08c2c14c288a1b3bb0d22b25b119d31 |
|
BLAKE2b-256 | 5ffad429c2c596fe851add29d8ca50c0f12f85db5e2bb502bcb3644337439b90 |
File details
Details for the file cython-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4893a9eca2d60e1e38d82e43db10546734f512f7934a0872fb49f6b79b33fe2 |
|
MD5 | eddc75ffd72e4628edd696ce32a0c793 |
|
BLAKE2b-256 | 730894828f7e4f29f370fbb6f91427e95ef4e9f54a4457b2e3992b896c875f67 |
File details
Details for the file cython-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73c64f40d52a7c1d1e0bc37ed71298a1446f2a21297a9b45e6e423b7d9e835bd |
|
MD5 | 7897a021c353bdfa992edb275801c9f7 |
|
BLAKE2b-256 | 560ba6564167c0dce8bd396cc299b057beabab5dae47572dc9c567f15419ec2f |
File details
Details for the file cython-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fad170f110fdf574e90f5595fc5e4f32e1b3a098845f5de46cf3fd40bdb91e4 |
|
MD5 | 5943ffc8125a68ce6d1a5596802e7abb |
|
BLAKE2b-256 | 18e9b9dcdf5421a1373306891685efd508bdb3aa3e5604f52885d43742856b5e |
File details
Details for the file cython-3.1.0-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d82c904e2cb0406dc5b77a7f2715fd352ad55d276e12a9955b8ecd39ca703b9 |
|
MD5 | 8a9cb1a79dac7c9adecaf5698ca3c6d9 |
|
BLAKE2b-256 | 3fbb41853beb842bd428f0ac3eefefda32a0d36e1fc3cefdf62bf63c2cfc45f4 |
File details
Details for the file cython-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: cython-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8513e706300acd6b2b0eab6c33fcca87127b43aea2ad838060a17c2fc5e2784a |
|
MD5 | 8cc08be174eb59ebb47eec9813a71b86 |
|
BLAKE2b-256 | a63bccfb5daddcbc69ba59bd058d6aa05eb6fc8dff9d56a5ef33c8419796be55 |