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.3.0 (2026-08-22)
Features added
PEP-634 Pattern Matching is implemented. (Github issue https://github.com/cython/cython/issues/4029)
except * (PEP-654 exception groups) is implemented for Python 3.11 and later. (Github issue https://github.com/cython/cython/issues/4993)
Unpacking in comprehensions (PEP-798) is implemented for list/set/dict comprehensions. It is not yet available for generator expressions. Original patch by Morax. (Github issue https://github.com/cython/cython/issues/7898)
Changes were made to adapt to Python 3.15 and its Limited API. This does not yet cover abi3t. (Github issues https://github.com/cython/cython/issues/6405, https://github.com/cython/cython/issues/7190, https://github.com/cython/cython/issues/7347, https://github.com/cython/cython/issues/7348, https://github.com/cython/cython/issues/7358)
Cython now uses a new export/import naming scheme for fused C functions that increases the resilience against seemingly compatible user code changes. The original names are kept for backwards compatibility. (Github issue https://github.com/cython/cython/issues/7656)
Declared container item types (e.g. list[float] or tuple[atype, ...]) are now used by the type system. (Github issues https://github.com/cython/cython/issues/7288, https://github.com/cython/cython/issues/7798)
Type inference was improved for builtin Python types and their methods. (Github issues https://github.com/cython/cython/issues/7536, https://github.com/cython/cython/issues/7644, https://github.com/cython/cython/issues/7887, https://github.com/cython/cython/issues/7888)
Exception base types are inferred for the target variable of multi-exception except clauses and for collections of exceptions. Properties like .args and .context use direct C access in CPython. (Github issue https://github.com/cython/cython/issues/7783)
Annotations on global variables are now used by type inference. (Github issue https://github.com/cython/cython/issues/7877)
The feature set of the shared module can be selected at build time by listing named features to include or exclude. This is an experimental configuration, subject to further improvements. Failures to include used features will currently result in import failures. (Github issue https://github.com/cython/cython/issues/7759)
To control the generation of the shared module, the cython command gained a sub-command cython generate-shared pkg/modulename.c with additional options --only and --exclude. Patch by Raza Khan. (Github issue https://github.com/cython/cython/issues/7842)
Conditions in strongly predictable if-clauses or if-else expressions can be wrapped in cython.likely(condition) or cython.unlikely(condition) to help the C compiler optimise the branch. Note that Cython automatically detects raise and assert statements as terminators already and marks if-clauses that directly lead to them as unlikely(), without user interaction. (Github issue https://github.com/cython/cython/issues/7667)
Extension types can declare themselves explicitly as sequence or mapping with @cython.collection_type("sequence") or @cython.collection_type("mapping"). This has an effect on their behaviour in pattern matching and subscripting. (Github issue https://github.com/cython/cython/issues/5027)
Sequence types marked as @cython.collection_type("sequence") that use C integers in the subscript special methods now implement only the sequence and not the mapping protocol. This allows subscripting code to avoid creating Python index objects when the index is already available as C integer. (Github issue https://github.com/cython/cython/issues/7435)
Sequence types that have their Py_TPFLAGS_SEQUENCE type flag set can benefit from faster subscripting via the sequence protocol as Cython now bypasses the mapping protocol for them if both protocols are implemented. (Github issue https://github.com/cython/cython/issues/7432)
The Py3.15 frozendict builtin type is supported and has been backported as an alias for dict in older Python versions. Patches to adapt existing dict optimisations were contributed by Omkar Kabde. (Github issues https://github.com/cython/cython/issues/7545, https://github.com/cython/cython/issues/7647)
The Py3.15 sentinel builtin is supported and its C-API declarations are available in cpython.sentinel.
cython.py_int (and the same for py_float, py_complex and py_bool) can be used to refer to Python’s builtin types in a C type context, e.g. after cdef, where they are normally shadowed by the C types of the same name. (Github issue https://github.com/cython/cython/issues/7844)
The builtin Python types int, float, str, bytes and bytearray are special cased in comparisons to speed them up. (Github issues https://github.com/cython/cython/issues/7452, https://github.com/cython/cython/issues/7474)
The builtin Python types int and float are special cased in +, - and * operations with (compile-time) unknown Python types in order to speed them up. The bit operations ^, | and & are additionally special cased for int. (Github issues https://github.com/cython/cython/issues/7485, https://github.com/cython/cython/issues/7541)
<bool> casts can be used to convert C values to Python True / False. (Github issue https://github.com/cython/cython/issues/7513)
cdef property methods support setters. (Github issues https://github.com/cython/cython/issues/7505, https://github.com/cython/cython/issues/7791)
The C restrict modifier can be used in declarations. (Github issue https://github.com/cython/cython/issues/7617)
C arrays may now be declared with (extern or internal) enum values as their size. (Github issues https://github.com/cython/cython/issues/7401, https://github.com/cython/cython/issues/7406)
prange(num_threads=0) automatically selects the maximum number of OpenMP threads. (Github issue https://github.com/cython/cython/issues/7586)
prange() and parallel() sections can be used without releasing the GIL, which helps in freethreading builds. When releasing the GIL as part of the section declaration, re-acquiring it immediately inside is now faster, e.g. to do per-thread Python initialisations. (Github issue https://github.com/cython/cython/issues/6562)
cython.pymutex and cython.pythread_type_lock now support a .locked() method to check if the lock is currently held without blocking. The method works on all Python versions using atomic reads on Python 3.13+ and a try-acquire approach on older versions. (Github issue https://github.com/cython/cython/issues/7275)
A simpler mechanism was added for implementing C++ exception handlers in Cython code. (Github issues https://github.com/cython/cython/issues/7388, https://github.com/cython/cython/issues/7390)
Repeated memoryview slicing inside of loops now avoids redundant reference counting, making it substantially faster. (Github issue https://github.com/cython/cython/issues/5507)
Indexing into Cython memoryview objects from Python is faster. (Github issue https://github.com/cython/cython/issues/7529)
Some internal call overhead in the memoryview code was removed. (Github issue https://github.com/cython/cython/issues/7609)
Extension types use the vectorcall interface for their instantiation in many cases. This can be configured with a new C feature macro CYTHON_VECTORCALL_TPNEW. (Github issue https://github.com/cython/cython/issues/7698)
Coroutine methods use the faster vectorcall interface. (Github issue https://github.com/cython/cython/issues/7678)
Vectorcalls with literal keyword arguments use cached constant keyword name tuples. (Github issue https://github.com/cython/cython/issues/7713)
List comprehensions that generate new objects avoid refcounting overhead for appending. (Github issue https://github.com/cython/cython/issues/7748)
Method calls in older Limited API versions are slightly faster. (Github issue https://github.com/cython/cython/issues/7707)
Constant frozenset objects are deduplicated and cached at module init time (similar to constant tuple and slice objects). Original Patch by Zhenbo Li. (Github issue https://github.com/cython/cython/issues/2741)
C arrays are substituted for sequence iteration in more cases, also inside of generators. Ad-hoc C array storage on the stack and in closures was reworked along the way. (Github issues https://github.com/cython/cython/issues/7323, https://github.com/cython/cython/issues/7339)
Single character in-tests on str, bytes and bytearray are optimised. (Github issue https://github.com/cython/cython/issues/3888)
Unicode string comparisons to single character literals are faster. (Github issue https://github.com/cython/cython/issues/7418)
F-strings are a little faster in some cases. (Github issues https://github.com/cython/cython/issues/7495, https://github.com/cython/cython/issues/7526)
Formatting C floating point values in f-strings avoids creating Python floats in some cases. Patch by Vladimir Saraikin. (Github issue https://github.com/cython/cython/issues/7797)
bytearray.extend(bytes) is faster. (Github issue https://github.com/cython/cython/issues/7797)
assert conditions are constant-folded. (Github issue https://github.com/cython/cython/issues/7809)
PyPy and GraalPython use the vectorcall protocol to enable faster Python calls in future releases. (Github issue https://github.com/cython/cython/issues/7614)
The runtime conversion from a Python mapping to a C struct/union uses less code. (Github issue https://github.com/cython/cython/issues/7343)
The error handling of memoryviews uses less code. (Github issue https://github.com/cython/cython/issues/7525)
The runtime dispatch code of fused types uses less code. (Github issue https://github.com/cython/cython/issues/7501)
More code is extracted to the shared utility code module. (Github issues https://github.com/cython/cython/issues/7556, https://github.com/cython/cython/issues/7570)
Async generator objects are slightly smaller. (Github issue https://github.com/cython/cython/issues/7776)
Cython compiled functions have a more efficient memory layout in the Limited API. (Github issue https://github.com/cython/cython/issues/7519)
Module string content is now compressed with LZSS by default, which reduces the footprint of the decompressor code compared to the 3.2.x default zlib. This also avoids a runtime dependency on the zlib module since the tiny LZSS decompressor can be embedded in the module. (Github issue https://github.com/cython/cython/issues/7577)
The Py2 print statement is now implemented in Cython instead of C to make it thread-safe and uses a vectorcall into Python. (Github issue https://github.com/cython/cython/issues/7642)
Several C++ exception declarations were added to libcpp.exceptions. (Github issue https://github.com/cython/cython/issues/7389)
Missing Python type flag declarations were added to cpython.object. (Github issue https://github.com/cython/cython/issues/7441)
Declarations for PyType_GetSlot() and the corresponding type slot IDs were added to cpython.type.
Declarations for specialised byte-conversion functions were added to cpython.long and cpython.float. Patch by Valentin Valls. (Github issue https://github.com/cython/cython/issues/7738)
Error detection when assigning to const variables was improved. (Github issue https://github.com/cython/cython/issues/7359)
Some cases of likely misuse of critical_section now generate warnings. (Github issue https://github.com/cython/cython/issues/6766)
Programmatic use of Cython has become easier by avoiding the need to manually set up the error reporting. (Github issue https://github.com/cython/cython/issues/7235)
Autoscaling in cymeit is a little faster.
TreeFragment.parse_from_strings() now supports full modules and .pxd files. Patch by Itamar Turner-Trauring. (Github issue https://github.com/cython/cython/issues/7827)
Unicode 17.0.0 is used to parse identifiers.
Bugs fixed
Several issues with .close() or .throw() of Async generator asend/athrow objects were resolved, following fixes in CPython. (Github issue https://github.com/cython/cython/issues/7777)
The __class__ method cell misbehaved when used together with class decorators and passed the decorated class (and thus an arbitrary object) into super() instead of the class object. (Github issue https://github.com/cython/cython/issues/7721)
A return value from within a prange() loop could silently return the default value of the return type instead of the user provided value. (Github issue https://github.com/cython/cython/issues/7587)
Assigning a Python 3.14+ .__annotate__ function to a Cython compiled function no longer evaluates annotations eagerly. (Github issue https://github.com/cython/cython/issues/7767)
Generated Cython language features like properties, auto-pickle or dataclasses now use a critical section (on the object itself) as guard for concurrent access. (Github issue https://github.com/cython/cython/issues/6621)
The star-import implementation needlessly rejected several names in internal use. They are now allowed and become regular Python module attributes. (Github issue https://github.com/cython/cython/issues/4931)
Mixing function signature declarations in Python modules and their .pxd modules could fail. (Github issues https://github.com/cython/cython/issues/5970, https://github.com/cython/cython/issues/4388)
C array declarations with type and size could fail with an exception in pure Python code. (Github issue https://github.com/cython/cython/issues/7372)
A const modifier in C++ template type arguments could be mapped incorrectly. (Github issue https://github.com/cython/cython/issues/6294)
C++ typeid() failed to compile on more complex expressions. (Github issue https://github.com/cython/cython/issues/7069)
Optimised Python int and float operations did not remember their result type, leading to less optimised code in longer expressions. (Github issues https://github.com/cython/cython/issues/7363, https://github.com/cython/cython/issues/7502)
Slices as dictionary keys confused the type inference of item access. (Github issue https://github.com/cython/cython/issues/7702)
A race condition when return``ing from a ``cython.parallel.parallel section was fixed. (Github issue https://github.com/cython/cython/issues/6521)
Cython still used (type, exc, traceback) for saving and restoring exception state, even though modern CPython versions only store the exception object itself internally. This is now modernised in many places to reduce overhead. (Github issue https://github.com/cython/cython/issues/7481)
Exceptions originating from the Py_UNICODE_IS*() character classification macros and the corresponding str.is*() methods, which they alias, were not handled but ignored in the Limited API. (Github issue https://github.com/cython/cython/issues/7602)
In the Limited API, import time failures to create code objects for compiled functions, e.g. due to future Python API changes, are no longer fatal but generate a warning. (Github issue https://github.com/cython/cython/issues/5718)
Several internal cases where exceptions are caught and discarded now propagate the BaseException errors and only discard the expected exceptions. (Github issue https://github.com/cython/cython/issues/7600)
Error handling was improved when setting up the table of cdef methods for extension types and unexpected errors are propagated. (Github issue https://github.com/cython/cython/issues/7613)
Exceptions while setting up the automatic pickle support are now propagated. (Github issue https://github.com/cython/cython/issues/7613)
Exceptions thrown into async generators could leave the generator in an unclosed state. (Github issue https://github.com/cython/cython/issues/7618)
In the Limited API, failures while formatting type names in exceptions are now uniformly handled. (Github issue https://github.com/cython/cython/issues/7680)
A cpdef enum with negative values changed to non-negative in Python 3.15. It now uses a dedicated enum implementation class to allow this. (Github issue https://github.com/cython/cython/issues/7185)
cpdef fused functions generated redundant code. (Github issue https://github.com/cython/cython/issues/7778)
Automatic C++ STL conversions in different compiler directive contexts could generate invalid code duplications in C++ code. Original Patch by bjodah. (Github issue https://github.com/cython/cython/issues/6981)
The global module state struct now lives in an anonymous namespace in C++ mode to allow linking multiple modules together in one shared library file. (Github issue https://github.com/cython/cython/issues/7159)
Cached methods of builtin types were not GC-traversed and cleaned up as part of the module state. Patch by Maxwell Bernstein. (Github issue https://github.com/cython/cython/issues/7468)
Dict iteration generates safer code in PyPy/GraalPy/free-threading. (Github issue https://github.com/cython/cython/issues/7637)
The floating point parsing code relied on C implementation specific “pointer compare after free” behaviour. Patch by stratakis. (Github issue https://github.com/cython/cython/issues/7463)
When non-heap types were used as base classes of extension heap types, the heap types were not correctly reference counted by their instances. (Github issue https://github.com/cython/cython/issues/7483)
The .__signatures__ dict of fused functions is no longer writable. (Github issue https://github.com/cython/cython/issues/7386)
A minimal implementation of .__annotate__ was added to Cython compiled functions to make @functools.wraps work in Python 3.14+. (Github issue https://github.com/cython/cython/issues/7675)
The --embed-positions option no longer includes absolute file paths in the C code. (Github issue https://github.com/cython/cython/issues/6755)
Casting to an unresolved typeof() type (e.g. cython.cast(cython.typeof(x), ...) where the type could not be inferred) crashed the compiler instead of reporting an error. Patch by Vladimir Saraikin. (Github issue https://github.com/cython/cython/issues/7683)
Error reporting on missing braces in f-strings was misleading. (Github issue https://github.com/cython/cython/issues/7436)
Declaring a __dict__ attribute in a class as public or readonly generated incorrect code. It is now detected as an error. Patch by Anthony Donlon. (Github issue https://github.com/cython/cython/issues/7823)
None default values for function arguments declared as not None are now rejected at compile time rather than leading to errors at runtime. Patch by Vyas Ramasubramani. (Github issue https://github.com/cython/cython/issues/7762)
Cython did not reject code with multiple contradicting type annotations on the same variable. (Github issue https://github.com/cython/cython/issues/7246)
Cython no longer warns if @profile or @linetrace is applied to a function without changing the global/outer setting. This avoids annoyance when users leave such redundant decorators in the code for occasional use.
The virtualenv activation inside of cygdb when it is run from a virtualenv works in more cases. Original patch by Pierrick Koch and Ashutosh Varma. (Github issues https://github.com/cython/cython/issues/1961, https://github.com/cython/cython/issues/3629)
Modules with non-ASCII names could end up with UTF-8 characters in their C code. (Github issue https://github.com/cython/cython/issues/7588)
MSVC could silently truncate long C string literals (including internal ones) at a 64k bytes border. This is now worked around using C char arrays. (Github issue https://github.com/cython/cython/issues/7824)
Several C compiler warnings related to mixed signed/unsigned C integer usage were resolved.
Some compiler directives failed to apply to Cython’s build, which lead to unintentionally (slightly) increased wheel sizes. (Github issue https://github.com/cython/cython/issues/7801)
A regression in 3.3.0b1 that generated invalid C code for exception type checks was fixed. (Github issue https://github.com/cython/cython/issues/7902)
Includes all fixes as of Cython 3.2.9.
3.2.9 (2026-07-24):
Indexing into freshly created lists with an out-of-bounds index could crash. (Github issue https://github.com/cython/cython/issues/7793)
Function arguments with default values could end up uninitialised in closures, leading to crashes. Patch by Anthony Donlon. (Github issue https://github.com/cython/cython/issues/7782)
bytearray.append(None) could crash. The optimised code was also lacking concurrency guards. (Github issue https://github.com/cython/cython/issues/7796)
Some rare corner cases when concatenating text strings were resolved. (Github issue https://github.com/cython/cython/issues/7799)
Assignments of builtin string types to typedefs of object could erroneously be rejected. (Github issue https://github.com/cython/cython/issues/7789)
Subscripting type failed with a TypeError. (Github issue https://github.com/cython/cython/issues/5563)
Manually disabling CYTHON_VECTORCALL in CPython could lead to invalid C code. Patch by Florent Gallaire. (Github issue https://github.com/cython/cython/issues/7807)
Some internal Limited API version checks for Py3.12 were corrected. (Github issue https://github.com/cython/cython/issues/7845)
3.2.6 (2026-06-24):
@functools.wraps() was broken in Py3.14+ for Cython compiled functions. (Github issue https://github.com/cython/cython/issues/7675)
A double-free in the t-string code was fixed. (Github issue https://github.com/cython/cython/issues/7712)
The - operator declarations for iterators in libcpp.vector we corrected. Patch by Vadim Markovtsev. (Github issue https://github.com/cython/cython/issues/7717)
The shared utility code module no longer uses a temporary file path that changed the C code on each generation. (Github issue https://github.com/cython/cython/issues/7723)
On 32 bit platforms, cached constants are no longer made immortal during module import. (Github issue https://github.com/cython/cython/issues/7744)
Other changes
Support for Python 3.8 has been removed. As a side-effekt, support for StacklessPython and Pyston (last release was 3.8) was also removed. Python 3.9 is planned to remain supported for several years due to its use in LTS Linux distributions. (Github issue https://github.com/cython/cython/issues/7271)
The vectorcall feature macros were unified to make CYTHON_VECTORCALL the only way to disable this feature (if need arises). Previously the option macros CYTHON_METH_FASTCALL, CYTHON_FAST_PYCALL and CYTHON_VECTORCALL all controlled different aspects of the implementation. (Github issue https://github.com/cython/cython/issues/7616)
Setting the Limited API version macro Py_LIMITED_API in PyPy or GraalPython now enables the Limited API usage in these runtimes. This will currently fail due to lack of support in the runtimes, but is intended for initial testing and future improvements. (Github issue https://github.com/cython/cython/issues/7831)
Setting Py_LIMITED_API to a newer API version x.y than the current runtime (and its header files) is now detected and will explicitly fail to compile, rather than running into less obvious C compile or runtime issues. (Github issue https://github.com/cython/cython/issues/7185)
Coroutines no longer provide the legacy _is_coroutine property. (Github issue https://github.com/cython/cython/issues/7709)
Two more Cython modules are compiled in the binary wheels, which should improve the translation speed for modules with many strings. (Github issue https://github.com/cython/cython/issues/7795)
The distributed Cython binary wheels now use a shared utility code module to reduce their size. (Github issue https://github.com/cython/cython/issues/7865)
Cython/Shadow.pyi has been merged into Cython/Shadow.py. (Github issue https://github.com/cython/cython/issues/7376)
The documentation now uses the “Clarity” Sphinx theme. Patch by Libor Jelínek. (Github issue https://github.com/cython/cython/issues/7564)
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cython-3.3.0.tar.gz.
File metadata
- Download URL: cython-3.3.0.tar.gz
- Upload date:
- Size: 3.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eed0d93fbca7087f143b42c34b05a825849bdf17f101572c2105acfa49aa88b8
|
|
| MD5 |
df8ac911bb3c6af48fb0158160e5b029
|
|
| BLAKE2b-256 |
a9d84981ef716ad0e3ff0d3ef383aefc6b03c4a88dee33b272bf8e0d833001ca
|
File details
Details for the file cython-3.3.0-py3-none-any.whl.
File metadata
- Download URL: cython-3.3.0-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b24b5c8cd536946b62086fcafee6d5509d3f549f72d553d2336af87ffbe0da1
|
|
| MD5 |
1f41e647a0b2b11d278f6255ccba6758
|
|
| BLAKE2b-256 |
bf7767b0b24e45073a699610e50f00c18474ff9b09ea29ecc95083bdf5e60acd
|
File details
Details for the file cython-3.3.0-cp315-cp315-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0-cp315-cp315-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.15, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b55c72e8eccdd508c8de3cf3bbc543aafbb3bf6a518e1ee20358d3241cd780ef
|
|
| MD5 |
2b2cecb8765e5d15f5213f6beb9fb223
|
|
| BLAKE2b-256 |
44bb3e2631122f96300723d6fc42b9cf65550bdcda570a6ad5c4e0226e2e787c
|
File details
Details for the file cython-3.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b447f6906e0555f05dc4742ef1f99091b1e5d9aa9f16616e772fbf9ff6271616
|
|
| MD5 |
3efa33533ea3af5f0b40620d03322439
|
|
| BLAKE2b-256 |
c9aa4c0b6773ecf6bc1ec6cda7db8312a566611b330fb6dae87d740e44a47822
|
File details
Details for the file cython-3.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a36c34d1950845b8ac148653b07cdc62421a4b0d9abfcc849e69f1c4ff9919d
|
|
| MD5 |
17029998dbca595479804984c9c1441b
|
|
| BLAKE2b-256 |
6e5dafb6866ab10236bb208dff0f172ea4b397c9693c5250280c4d9d26057218
|
File details
Details for the file cython-3.3.0-cp315-cp315-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0-cp315-cp315-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.15, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
596e8df019372a2cd417805015022d42cb8ee4e1803ccdc11ed00e451625fb66
|
|
| MD5 |
e386d861aa52c5e7e93f884889b0a228
|
|
| BLAKE2b-256 |
ea457f6988070013e16918e39b1b3dab9c5f2c8e404253a7fd10ee685bbd6902
|
File details
Details for the file cython-3.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51999fb834365721b6c7f689cf6e2ec7c8667aae783df9eb5e589c290a414d9c
|
|
| MD5 |
602e594c7d469453ecad1ad54f1582c7
|
|
| BLAKE2b-256 |
734e26e0a584d06c5b3f345df491d2546479606c89217627ee163f1aa55e899f
|
File details
Details for the file cython-3.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82f94565b6001bab8e31bf52a0911672910b5735910612a2c0f772c719670006
|
|
| MD5 |
a339f6510f352c1d3dc3a6d51416bd70
|
|
| BLAKE2b-256 |
9f576d620ebee4fc24d89340427702f6ceaf7b956511d1f2222a88c92c1a72b7
|
File details
Details for the file cython-3.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46072c0d404616b5e652a63882c79cc3f8a1d62635a8692f56ed0e416a4dfed8
|
|
| MD5 |
d25757ffdfd7f6b0d94261c2e63263a0
|
|
| BLAKE2b-256 |
0e6b4a623ab6e4a5b9814b22849665cb212273f9735399a7ebca4f3e8c254f1a
|
File details
Details for the file cython-3.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0deedc2e9a5a664e1adfa4c2d310aa7b54903e1a647c274b6c9213f77a02d637
|
|
| MD5 |
e7cad2cda2106d133f7170b3a40d3f23
|
|
| BLAKE2b-256 |
8a7fe409f76bb955ecdcb746b80350b945fbb808846d797346d647a37e1790ca
|
File details
Details for the file cython-3.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab24d1a4fb6aaf0b5b6fcd75a6d70255fbd3130fa78884c26991f8d5502616b5
|
|
| MD5 |
6a2007978e6563bc2e0959b63d9d62cf
|
|
| BLAKE2b-256 |
d8d7376572ff69ef39a9bdcd727124f6c38aa066300e97734a4902a3ae0d2af0
|
File details
Details for the file cython-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23942b0662642927a55676e4b26e6840fb166dd7d76436384685227e7e8619a4
|
|
| MD5 |
4ac1102b3c8776307cf301a8ec2efc81
|
|
| BLAKE2b-256 |
bcb8fc595c60a7b6f5f08b4f6ad65e60688e8c61f76064ebe847eaf85d0c59fa
|
File details
Details for the file cython-3.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc2f2a6b65a991666cfd35a35bab0cd88ffba4df2f601edb6e76cc8116de24b9
|
|
| MD5 |
1d9c8a0fe763d2c8bc2ee694040af903
|
|
| BLAKE2b-256 |
a3605367e7c80776a185ac11e0ea738fdaf18b9d0bc21d2c2bafc4d87eb19964
|
File details
Details for the file cython-3.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03056533fe4fdbc4f1d34a39178f9a4937ff35196f8bcdde2a67b5b5809c61fe
|
|
| MD5 |
295a5bf72e15e9d51180d2e743798425
|
|
| BLAKE2b-256 |
2fccabc977cf683140e372714acea42164ecfc5cd3d3984ed025860e6d830ee4
|
File details
Details for the file cython-3.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
333449cc0350baedee5a6af27929eac8a71eac4ec59333c45ff476b33c6c660d
|
|
| MD5 |
49faeabd791b34fd8ea9111a2ed7d0ea
|
|
| BLAKE2b-256 |
f49bcd724d91c500116769bdb853450a2197ba3d640dbbe3b02fc54ebdfdbd1b
|
File details
Details for the file cython-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
428fafed98ea26927000a287b4dfc9ef07339f56656a5329a34eaa593f79a4f8
|
|
| MD5 |
bfee087aac7c4834f970e7124e2c7557
|
|
| BLAKE2b-256 |
6a4e6b1c5a4e6bbe1726104de007aa2fdf01a3e2e386b4ec93c7be5f5085d53f
|
File details
Details for the file cython-3.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e321ae700995a16dc3055ada06ffb8d61e1a7434e5d0e811547a45ac1015ebd
|
|
| MD5 |
8bfaccd95ebe7b41a0aba4a304653b40
|
|
| BLAKE2b-256 |
918b53d4a84de853b39940a0e35a6a2a9ed5f54cb05468daee95bc0fd1c2a178
|
File details
Details for the file cython-3.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03bc5333932f5dda3ba9315298ecdd21daa1b58410bb1f8ce04c78ec8337130a
|
|
| MD5 |
5cd63cef892f5557280864d03f5969b6
|
|
| BLAKE2b-256 |
da0f95bad838a80ac52c9e982dad00bd9a0b2bad57fb4c688e5f53ac3ef65ff0
|
File details
Details for the file cython-3.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8566ea804cfc265f5e9dda71d1b716aa24ee4c3423a5da4b28a248a78c33e3f9
|
|
| MD5 |
36ae75450cda5d513d1af42f08ba2743
|
|
| BLAKE2b-256 |
43557408773fdadb2b3434501109696533555ba89f233366519c661372c69098
|
File details
Details for the file cython-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6035b5231a9316edc19d6415f4296fd1d0370e2a165a714b3edc167b9ca00e1
|
|
| MD5 |
13fdbb29e40b298bf6fbc5968d7d9486
|
|
| BLAKE2b-256 |
3f9bdd726d11b2aff24f0c3fa68ce9e3934097a058aca471a8cc9888aeae5471
|
File details
Details for the file cython-3.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11e437f086affee8051cec4bb531be3edb646ab66e325154aa6849377f365033
|
|
| MD5 |
bbd46de29dab45a5801c46b7ca059307
|
|
| BLAKE2b-256 |
6af29dc6a3bad9c9d11bf31903321553820a661ce00319a57c4181bf0dcb87f4
|
File details
Details for the file cython-3.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec09dbf73ff4f7be2b339b995fadae9c4bb517bbbed7ec11d6fe99c2092b48fd
|
|
| MD5 |
e060b56b23fbd20f04773d71e5cd09e5
|
|
| BLAKE2b-256 |
af67dffaf12b7203f7e936d98b967e065c50a7883f152c51ded44ed8762128f4
|
File details
Details for the file cython-3.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf411da3ef1af8763781c219108860f7de33f1100038da35d6bf1b4d83fcb2c0
|
|
| MD5 |
30d15f6c9ed9b1a350f65df63c109993
|
|
| BLAKE2b-256 |
037335b0a13ed2e0519ee1cd8f3b3f2160fe30b96016d6b7d7ce74b8df99df72
|
File details
Details for the file cython-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eda47eb7731c3b41180b58bb83de423f43aa58a677677e3390e8d332b003859e
|
|
| MD5 |
79edbf3d95baa800b45dbb5dd11aeb30
|
|
| BLAKE2b-256 |
e59774d1f6464e7c0fbadde6ed1f2cbd036f1f0a5a59da7adb3af3e08d34cdf7
|
File details
Details for the file cython-3.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de883ec6764b61547c1e7674c0d8a8a875d398bd6bb684e46b93d83e4f13b260
|
|
| MD5 |
f01dd5e3856952280580dace10562d9d
|
|
| BLAKE2b-256 |
bd4fd59848f24076f7dd30d2cf05aa62ed321ec5f54bf695da8ddb3971bf1fdc
|
File details
Details for the file cython-3.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0507d9caf7dc35f1212627145d5d13dbc5dd7128529a6608ab72690472fa688e
|
|
| MD5 |
83ad6eaab0ec5f07fe652f8aff07f86b
|
|
| BLAKE2b-256 |
f362eae58684ab7a46e877f3193f393244a4de6fd5e700cca4265a7d33664f38
|
File details
Details for the file cython-3.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66d86b6a1548ae64851b211e3c3504535814b8c8e6c46ddcaf01062bf8d5fad2
|
|
| MD5 |
5c8c5c0821c42874ab175cc0b622eba8
|
|
| BLAKE2b-256 |
f74c33608af38fbc85b106406267bac183ac19afc2583552abfebe2ee1f24ec2
|
File details
Details for the file cython-3.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26a5e536fc68e85a9de091a0b51c42c5ac834f8d00aaa43f227cbc3efa797ae5
|
|
| MD5 |
20f3d59a8760537eee2beceaaabf057e
|
|
| BLAKE2b-256 |
9c97a70bf170da3f5a42a5b61d03fa2973a19023d594414b620b9373b57b83fb
|
File details
Details for the file cython-3.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
843d7134e784e7b320ef387512e89f1b29af80c641e176dfa8eabd52aab61c3c
|
|
| MD5 |
10c1b7c865db10e8d180dbe0b58519f2
|
|
| BLAKE2b-256 |
4ea0087c0fb503504aea3010cc62c7bfd693b2683fed4bac818b71d43c73bf26
|
File details
Details for the file cython-3.3.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14e825253455e943ca765a95096b355745558436b0c46c24856de9269cc4dbd9
|
|
| MD5 |
251b406b5d23fee55e807494ce8eb37d
|
|
| BLAKE2b-256 |
31a5c2149c437400de0217a1327be863d4a4d976c51c5bb4304ccc14e377e9d2
|
File details
Details for the file cython-3.3.0-cp39-abi3-win_arm64.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-win_arm64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dce56c26d388f00a19426371b6926bf2f77c5c03b71d5273e4556c68be98c2dd
|
|
| MD5 |
039734750f91fbd102fb8f40cfe2b711
|
|
| BLAKE2b-256 |
19a25f4d305cbd4489d21570e5491ad5c483c478cdab032853e2125c280e3bd5
|
File details
Details for the file cython-3.3.0-cp39-abi3-win32.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-win32.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90869072e50b7c8904fe1dd7810321ae901fd5637a6eec6646ed9c57f9eb1081
|
|
| MD5 |
5365661e372ba4c2d5d05c5e6f3eccd9
|
|
| BLAKE2b-256 |
9c6637892a8999d6bbd3f92d691a9701cb720c8ddd6171e16f5148eee6e8cb7f
|
File details
Details for the file cython-3.3.0-cp39-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
311a016369adfd1e0015c4f9819168fc0e518451d7efb4435c30d65a3a26d52b
|
|
| MD5 |
07ad757b911106f7038c13149c0e99cf
|
|
| BLAKE2b-256 |
e0e8aa7b4f3a28d6e8117c76e2cf78a0df7a503486cdf7243c5b53200c9533a1
|
File details
Details for the file cython-3.3.0-cp39-abi3-musllinux_1_2_i686.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4558ba85849ab65dc57e10fd0efb13fabd9d3c09981a2566e18dec7cf47586a
|
|
| MD5 |
80d66fdd108803fb55b0fa4d9a774b64
|
|
| BLAKE2b-256 |
b09ed735c26ed907563d3365534006acb263651c2d3b87fee804f7a483dd1714
|
File details
Details for the file cython-3.3.0-cp39-abi3-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b94fb5613b9fe34c27d13ec9972dc0dcd2a2155db2902e93921cadc162610a38
|
|
| MD5 |
ef93781a5531dbe89009cf9fb9a9a556
|
|
| BLAKE2b-256 |
3144c60b601fc43f0b08e9d6f14b94e0dd02eb0ca8d60f46e242ace7191ac1be
|
File details
Details for the file cython-3.3.0-cp39-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75c4ae8a6d3a5ccf3cdaba8ab32e6a8d0cd38e3a476aa7ac12df8f8171a8d570
|
|
| MD5 |
791587872eedf8119157ab70e4f12257
|
|
| BLAKE2b-256 |
19a7ae5ec3e34d43da846ed4c425734752d83aae0dae49feb929f09c90fc9afa
|
File details
Details for the file cython-3.3.0-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l, manylinux: glibc 2.31+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29f38ebafdf23e3da2516f40c4d065da38bfe002181bf93e2b8cf1262449aba6
|
|
| MD5 |
37017a7f3a842f6b20ebca5408e9f5ea
|
|
| BLAKE2b-256 |
9c7cddaf197bc65b581e1891657940bc4f7cb1f740e822115e828920b3a119ce
|
File details
Details for the file cython-3.3.0-cp39-abi3-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9+, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
169e56fd411f4cd5bba51c82f8239421d547a846099db2b261e4aed48ba9f51f
|
|
| MD5 |
b3b119494f86d5821e47e6cb05cfbe60
|
|
| BLAKE2b-256 |
ba6d542e32908fb421d88354f327ed6450e14240f9825d25393065bc65f4723f
|
File details
Details for the file cython-3.3.0-cp39-abi3-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cython-3.3.0-cp39-abi3-macosx_10_9_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9+, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0d2713d2b292c826bc21dc8732bd9e47628103aa3764180c881e04b3fef95dc
|
|
| MD5 |
f8fee4882a805f45f04d94ec5528ffcf
|
|
| BLAKE2b-256 |
1459bc1a84b434cb5bebb0cd6f50da8f239d35a5c141b20fdeafc2817fd87778
|