This release is a pre-release and may not be stable for production use.
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.0b1 (2026-08-14)
Features added
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)
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)
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)
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)
C property setters can now explicitly propagate exceptions, instead of always triggering a call to PyErr_Occurred() by returning void. (Github issue https://github.com/cython/cython/issues/7791)
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)
The typed tuple syntax tuple[atype, ...] for homogeneous tuples is supported. (Github issue https://github.com/cython/cython/issues/7798)
The return type inference for calls to builtin methods was improved, including dict views. (Github issues https://github.com/cython/cython/issues/7887, https://github.com/cython/cython/issues/7888)
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)
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)
Formatting C floating point values in f-strings is faster. 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)
Single character in-tests on str, bytes and bytearray are optimised. (Github issue https://github.com/cython/cython/issues/3888)
assert conditions are constant-folded. (Github issue https://github.com/cython/cython/issues/7797)
Async generator objects are slightly smaller. (Github issue https://github.com/cython/cython/issues/7776)
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)
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)
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)
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)
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)
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 arbitrary C compile or runtime issues. (Github issue https://github.com/cython/cython/issues/7185)
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)
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)
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)
Subscripting frozendicts with integer keys could fail in 3.3.0a1.
When calling builtin types to create an instance, type inference could incorrectly assume type as the type of the result rather the concrete builtin type in 3.3.0a1. (Github issue https://github.com/cython/cython/issues/7848)
The return type of some builtin methods were not correctly inferred in chained calls in 3.3.0a1. (Github issue https://github.com/cython/cython/issues/7664)
Iterating over a container with an incorrectly declared item type could generate incorrect C code in 3.3.0a1. (Github issues https://github.com/cython/cython/issues/7775, https://github.com/cython/cython/issues/7889)
NULL pointer comparisons could fail to compile with C++ in 3.3.0a1. Patch by Vyas Ramasubramani. (Github issue https://github.com/cython/cython/issues/7766)
A C helper function for mapping function arguments could be missing in 3.3.0a1. (Github issue https://github.com/cython/cython/issues/7785)
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)
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)
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)
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
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)
Cython wheels now use a shared utility code module to reduce their size. (Github issue https://github.com/cython/cython/issues/7865)
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.0b1.tar.gz.
File metadata
- Download URL: cython-3.3.0b1.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 |
ba9c9b8ad3ddb6fb3592297b9bce2219e22c24710924b4f64fad9e32a436b20e
|
|
| MD5 |
64c4449630b11921407967f607511817
|
|
| BLAKE2b-256 |
781d39023ecbfd09ba481398886e0e879226918b3e5a4b7ac1a19a0852285a47
|
File details
Details for the file cython-3.3.0b1-py3-none-any.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
3a8034da5dc66728ebfe2811008d614b09863825ce61bad8d2975df0b23a8828
|
|
| MD5 |
26d1c39a195c1a91786bafbf89c94ac9
|
|
| BLAKE2b-256 |
e7d7341c9daa013196ac80952650af44a53bce8bb450f1b174f67bf96478a8c5
|
File details
Details for the file cython-3.3.0b1-cp315-cp315-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
252061bf45b76c177ebcbb233348bf193ddd787938acc706c5534090979499d7
|
|
| MD5 |
6aebec2e7e50bf9bb7d7a826adf652e5
|
|
| BLAKE2b-256 |
e23d40babfca93dba3fcca7751bd8ff5725169d2eb162e40c2ffed20552185b9
|
File details
Details for the file cython-3.3.0b1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
6f244d082fc8d706f90520c5edce9f2b7941d0bafa0cb4a208f65e1a9809e100
|
|
| MD5 |
203b31555be1b46b02c8fcb2f1fa7d2e
|
|
| BLAKE2b-256 |
3287aa3bbc81bdaed7893f1541e448d6a432165fb94a4ffd06166d5a6d24e23d
|
File details
Details for the file cython-3.3.0b1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
accec63843475e19e4612ed7719036f27ce273331df63786649ae20c14ff3bd7
|
|
| MD5 |
5ba880070785712d18658b0615c28b5b
|
|
| BLAKE2b-256 |
b881869e9e2d1aeca30f35d0329ac7d839408f93670d324e0c35eec9fd02c90f
|
File details
Details for the file cython-3.3.0b1-cp315-cp315-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
7acb898ede0937873b8385722f66ecd3fd1285340600d640154f80abc71414ff
|
|
| MD5 |
b027d4f523c71405921b2a3c0428b19d
|
|
| BLAKE2b-256 |
1b7403f905fb919d992535489e4968321c47da6f2203cf461e6879de6529bfa0
|
File details
Details for the file cython-3.3.0b1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
7509d0dca03bb0a6de92412c07127ae8c4902937124de1a05f7ebe6761fcdf82
|
|
| MD5 |
f5dde94c127d59e32a6ea35b5b29c2f5
|
|
| BLAKE2b-256 |
cbefa1ab42a0f93b6aebe6882a50151d3bd804445665092d9de0fa3dbee12f91
|
File details
Details for the file cython-3.3.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
d076e25c09504079fce42a0c2a950070eff1045bd6475b8dc7cf9492127a46dd
|
|
| MD5 |
e2fd6727ca67f807acae390453ae0298
|
|
| BLAKE2b-256 |
4918b9fb260b86040bd745f52449a467a354c7aeeae344fddfb2eefb718313ef
|
File details
Details for the file cython-3.3.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
4ca093cbe6eae16e559c836cf320f9661184c50d4ec8dd50300903009be85f91
|
|
| MD5 |
7d682667a8aa5e1d0b507be7722d6afe
|
|
| BLAKE2b-256 |
1aa02441f5f324a48ba90d7d015379044aeadaf487bffbfc9f7688fdac7cfe5e
|
File details
Details for the file cython-3.3.0b1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
fab84af4882e1f93e4b57f25e664c03a582a4b58dcadddf6f008d694c0b33106
|
|
| MD5 |
e6fcbaa02bc57df4793aca8c6a26d8f5
|
|
| BLAKE2b-256 |
96868724a85fa1d2b720678864d0fdf54750aafb6717dd9369133724c7fa885f
|
File details
Details for the file cython-3.3.0b1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
8e8cba9bf9f9328bd6fbef633899cd8fc6429caccb0576c1608a4a66763b0edd
|
|
| MD5 |
812dd65b6292c79f395c517b81100bd5
|
|
| BLAKE2b-256 |
d3f0dbf2a3a6d345e7cc5ea0a1fa640fd215286c1eb816fdc54cae218f582420
|
File details
Details for the file cython-3.3.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
03f51f3d683df5275737e2e5ae6123c79b20abc296a4853329f30a2a156153eb
|
|
| MD5 |
720100ffadd3365d679ff50202677313
|
|
| BLAKE2b-256 |
e1f3459f8be8c4740b6ad55a98dcadedb0856e20815176f038f58c5767215832
|
File details
Details for the file cython-3.3.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.2 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 |
1ea4e7b8f6bd0ee8ecf1ef9536fe0e2b99acc46e610b80db44a18952accfc87f
|
|
| MD5 |
d89a9389731b872114eac9ae420c6017
|
|
| BLAKE2b-256 |
74959e815d90260f11cee8507d297f3fd6146a89abbf6c748b492c39f771a3ac
|
File details
Details for the file cython-3.3.0b1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
29d2f5cf50edc8b826f0fac4ce3c8829870eb16c23934d772c8bbb17861ee2d6
|
|
| MD5 |
f51b448ba4434cc50b03cb6a18612570
|
|
| BLAKE2b-256 |
8dd472143f2b6e7998a0feb703962f6e4f9a7b4d642ca9deb02fac9a2678995d
|
File details
Details for the file cython-3.3.0b1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
16a0435e8ac1b092441f7e1eb7b1cd90f415bee11cfb8af2a2fd902eeb790698
|
|
| MD5 |
3b99252463951a5414408c03653cb8ca
|
|
| BLAKE2b-256 |
c7240e66142f0b4653c51bfb410125800cdd9fd2a1e96e98635f84d1acd48daf
|
File details
Details for the file cython-3.3.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
452f4cb7ba9b9f21a903a879baf12e3164d98ac2469e59dc784a59118720a161
|
|
| MD5 |
836983fe052b94ff7c273ba648496c2c
|
|
| BLAKE2b-256 |
6b935526644a575322590a3421a464d0634bd885ff69eed13d479e671f309a05
|
File details
Details for the file cython-3.3.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
848c76256046ec0be5ed041135ef01b942b8fb2354ddfd68cf4a26540cf601e6
|
|
| MD5 |
19cfad5d3369a4ad8b39f0bc6ad56d42
|
|
| BLAKE2b-256 |
40656c1f14b7391ad338d8c93efb7b6c0db32e853ca54eb6f9fe33df5936af35
|
File details
Details for the file cython-3.3.0b1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
548a7e5b4f3234aed800fd866901abadfc8a709394d404edadc8098e2ebca5f4
|
|
| MD5 |
7041cf8012ebde8477514510f507b95e
|
|
| BLAKE2b-256 |
feca8c2894ec63028cc1570b159b9b1f0340d245f036dcecde364e0440b07983
|
File details
Details for the file cython-3.3.0b1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
9bcffc2497876f8125be791930e6827f0d40a9a76e0fe878df068df53a60c32c
|
|
| MD5 |
fb51fb822be1dee5546f1ac55f27f6e7
|
|
| BLAKE2b-256 |
d7cc47b04a1022db458aa3374fc40847ceb41acb34a976ef922b00f4df3a19cb
|
File details
Details for the file cython-3.3.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
1c15364759baea77c5d87f4449105038e4080a9755d2130c98dbc9e63c3a9c25
|
|
| MD5 |
e0030c0c98562f6e5f983ae8ed9ba46f
|
|
| BLAKE2b-256 |
f14bf34d5a4315d4c39c7c5e5d7e587a9e7dd915df289f8448535a3a9931e3bc
|
File details
Details for the file cython-3.3.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
47bf61f6acbe01e0498223a180a2b252389a11b205cda43c3aa5842a0a00a3be
|
|
| MD5 |
1373b83d20b4ef1042f458abbb1c9a1f
|
|
| BLAKE2b-256 |
145ea10f8543eaca82ee64930f3158de46c62fd6ee6df03a8fefd3a8904b5513
|
File details
Details for the file cython-3.3.0b1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
f2411287aa72eff94b5d02dfdfb45e4968ab3a75e066660ca14d369e605b31c4
|
|
| MD5 |
0fa9a535f346704f0de638af8348f95e
|
|
| BLAKE2b-256 |
6d224872862fb31fbfa8cde8835ac624597385af97bfcb0b7f84187b20cc6b14
|
File details
Details for the file cython-3.3.0b1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
b2fb1419123970f8c14e3451ef29f8fe1742ca57c86bdabe91fa15edfdc954b7
|
|
| MD5 |
e5fc8faded0e4b6a6e663e7b96ea70fb
|
|
| BLAKE2b-256 |
dcf9660b76c25c7be4c7db64e2457af6aa15b7371815d94e505c65af0c51df5a
|
File details
Details for the file cython-3.3.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
841a0351eae34d02772d1f17cf99d60b3f21ea19664b970de81964bf8275109c
|
|
| MD5 |
cf5dab9b9092104f2048d2b8080da15e
|
|
| BLAKE2b-256 |
0c00b301de81712688740300297d3a3843491ecd3a419909acb6c946bbc5fff2
|
File details
Details for the file cython-3.3.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
0cb34a901e77495a4df3312af508802843862fd95f9fccdee2372711a33b1da7
|
|
| MD5 |
777fe97e906ccb68a4402a7d64c71a7c
|
|
| BLAKE2b-256 |
98e990ec258418ffd9c017281369d7d3963b49f7c8ea9ea2552beaf8c55a613b
|
File details
Details for the file cython-3.3.0b1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
d7197fc732dd00a04c8d2e1ec6799da84ec8843f204d48de3a09e2a67e3015e2
|
|
| MD5 |
3df4d0d4352563c53033f6788519abc9
|
|
| BLAKE2b-256 |
797bf70031ca6eb24f29e9d5187828394032dd908eef63e6a2071c4f20aea25d
|
File details
Details for the file cython-3.3.0b1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
ce5aecbdd90f068fb28eb49e5d44559de5b0c220b463b525992b61c050acd0eb
|
|
| MD5 |
0e006b72f43017003b228b8e5fcd0d19
|
|
| BLAKE2b-256 |
1236305c43254a2dbe34e47bb6d50a35464af0aecce4e79ff87dbb0135d3f566
|
File details
Details for the file cython-3.3.0b1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
9ad0d88f4dac6b852a5adcceebd69b621392ae1a9c9912be2ee2325f56bd4d89
|
|
| MD5 |
b1781d72bdadc08e581757f2cf144517
|
|
| BLAKE2b-256 |
e4bed031ffeb5442036fb91926227baed98d643351bd9aa52d0448364161c8c9
|
File details
Details for the file cython-3.3.0b1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
7217ad85cecbd6b6f5efc4b2805038d9a31c66101f7a8ebb5ae438bd7e0db7a1
|
|
| MD5 |
4e7183170e63064c7d8bbaa30fa6c31e
|
|
| BLAKE2b-256 |
7506286048de1166f33fcc88d5f4a9923e4f32b2ee00d9637e69274b42804eb2
|
File details
Details for the file cython-3.3.0b1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
22a04d61c3e99e9179705a617bc76abf2174fac8028937ec15f4cca84883a801
|
|
| MD5 |
4e46efda9df9776cb39105c11cc351c1
|
|
| BLAKE2b-256 |
b443bab2a85453db74ca5af873f53ecc606972cf7eed81cfa40726060114faa0
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-win_arm64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
21875de603c24bb43dd901b41d90f33a2d48f5dcb5c7e5b820bdb077ea6734fa
|
|
| MD5 |
42d86f746ed30b67c3107ef8aa5d775d
|
|
| BLAKE2b-256 |
a972dbd7803fa5ec402c6d1d3bceee309652ecd380362bdcd79b10923004f566
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-win32.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
6fce7f5e5014341f5af283c6e7ac12778eed2ac24fefefb6020738fd73d4d175
|
|
| MD5 |
c8e87a4fb26649c36d87c1251cc1d070
|
|
| BLAKE2b-256 |
7ee2d184aa054dbc3f6aa738db4409f41557de221fcc1aeb3e986dc66ba71060
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
d335b5e0e95ead1abaa91bda4968625e2cd2d86e794e683d2b5a1e200f41907e
|
|
| MD5 |
4b50a322095b3c9cdf49a700c444ffc7
|
|
| BLAKE2b-256 |
a1cf63acad90d1210ebb4c0a04aec5028a93ebf77d8eb555c7f98894158c6dfb
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-musllinux_1_2_i686.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
566011f057ce9a91b3d19b3b89725d23547da00b0b86c2a4969643386bd72d4a
|
|
| MD5 |
285e71ddaf417d89208483e2f8c89e84
|
|
| BLAKE2b-256 |
90ff0f08882c378d1fad1b78468ad46d342fe912ecec02b2e7d61717635847bb
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
6b6ba45f8bd91025bd38d7d128096727b6ba73bb7c9e62cc30fe9e4ac0126a08
|
|
| MD5 |
2e1c9d05710403beadae8c0303ac1b4c
|
|
| BLAKE2b-256 |
bac97b70f4760306ffee97f00ee7b9849040f55de91fae6ecd40598cd223faa1
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
a974fb4b4d188836c5872efc1146a6209abfe50ae0e29869232134694a0e69b9
|
|
| MD5 |
01c8dec02a2f7ed7a8de122efef3bcc1
|
|
| BLAKE2b-256 |
d54a5fe9cb2e9f09c94fb2dec9a9216e7a9542f92683e40bd4886b47512519b8
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
96b0fdc44bbdef5d69fb64e64c445729c4d9cd6303a1c90a2c88577b6c9ce1da
|
|
| MD5 |
3718463fbe66f40f011e8361c6417aa5
|
|
| BLAKE2b-256 |
ee9a771b67796f32239420cdc1923c9d890fd80d09f7fcddf977e297827c1501
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
6cc52aae80d4b1e057e371f3b777d8c8a8bb7df84f72a1791bc716bedfcacf3c
|
|
| MD5 |
7e4ddb4befba02f1aa03cd671ae0bb18
|
|
| BLAKE2b-256 |
44afa45a7c423108853b1fb4c1bc1d591913914ff75e58f79b2eafd968de8906
|
File details
Details for the file cython-3.3.0b1-cp39-abi3-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cython-3.3.0b1-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 |
3c5f07ef9e25a659dce1c54ad11dc6c75f9c5ecfff58a36001e0f841a28ddc83
|
|
| MD5 |
d59267eede8d780dd63651f23a3f586a
|
|
| BLAKE2b-256 |
7223725232f144756e3e0f1ac01be1a20a7fb7cd001d6632214fd9b648ec2cf6
|