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.2.0b1 (2025-10-22)
Features added
Builtin exception types are now inferred. (Github issue https://github.com/cython/cython/issues/6908)
The list of known, inferred and optimised Python builtins was updated. range is now considered a type. ascii, bin, format, hex, oct were added as functions. (Github issue https://github.com/cython/cython/issues/6931)
The f-string syntax was extended according to PEP-701. (Github issue https://github.com/cython/cython/issues/5452)
t-strings are implemented according to PEP-750. The implementation backports the template classes but prefers existing backports if installed separately. (Github issue https://github.com/cython/cython/issues/6811)
Unknown return type annotations with -> are no longer rejected but produce warnings. This allows better integration with Python type hints that are not always usable for Cython. -> None is also allowed now. Patch by jpe. (Github issue https://github.com/cython/cython/issues/6946)
The runtime Python dispatch for fused functions is substantially faster. (Github issues https://github.com/cython/cython/issues/1385, https://github.com/cython/cython/issues/6996)
Freelists (via cdef class decorator and for internally used types such as async) are now also used in the Limited API and with extension type specs enabled. (Github issue https://github.com/cython/cython/issues/7151)
Module imports now quickly check for an already imported module to speed up reimports. Patch by Lysandros Nikolaou. (Github issue https://github.com/cython/cython/issues/7035)
Type checks on PEP-604 union types (int | None) are optimised into separate checks. (Github issue https://github.com/cython/cython/issues/6935)
Assignments to the PEP-604 union type float | None allow any suitable Python number as input and convert it to a Python float automatically. (Github issue https://github.com/cython/cython/issues/5750)
Item type inference was improved for looping over literals. (Github issue https://github.com/cython/cython/issues/6912)
Looping over literal sequences and strings now uses efficient C array looping if possible. (Github issue https://github.com/cython/cython/issues/6926)
Releasing the GIL from an unknown lock state is more efficient. (Github issue https://github.com/cython/cython/issues/6847)
cython.critical_section(PyMutex) now works, as with Python objects. (Github issue https://github.com/cython/cython/issues/6847)
bool(c_int/float/ptr) avoid passing through Python objects. (Github issue https://github.com/cython/cython/issues/7015)
Variables assigned inside of prange loops can now be initialised outside of the loop. (Github issue https://github.com/cython/cython/issues/7178)
Unused exceptions in except clauses are detected in some more cases to avoid their normalisation. (Github issue https://github.com/cython/cython/issues/7021)
Mixed operations on C integers with Python ints use less code and are more streamlined for Py3.12+. (Github issue https://github.com/cython/cython/issues/7244)
Some object constants are now marked as immortal to speed up their reference counting in recent CPython versions. This can be configured with the CYTHON_IMMORTAL_CONSTANTS C macro. (Github issue https://github.com/cython/cython/issues/7118)
Further improvements were made to reduce the size of the resulting extension modules. (Github issue https://github.com/cython/cython/issues/6983, https://github.com/cython/cython/issues/7199, https://github.com/cython/cython/issues/7220, https://github.com/cython/cython/issues/7238)
Several improvements were made in freethreaded Python code. (Github issues https://github.com/cython/cython/issues/6936, https://github.com/cython/cython/issues/6939, https://github.com/cython/cython/issues/6949, https://github.com/cython/cython/issues/6984, https://github.com/cython/cython/issues/7011, https://github.com/cython/cython/issues/7066, https://github.com/cython/cython/issues/7114, https://github.com/cython/cython/issues/7200)
Several improvements were made for the Limited API. (Github issues https://github.com/cython/cython/issues/6959, https://github.com/cython/cython/issues/6991)
Several improvements were made for the GraalPython support. Patch by Michael Šimáček. (Github issue https://github.com/cython/cython/issues/7074)
Some GIL-safe C-API wrappers were added to the libc/libcpp declarations. (Github issue https://github.com/cython/cython/issues/6829, https://github.com/cython/cython/issues/6993)
String and number constants use less storage space in the module. (Github issues https://github.com/cython/cython/issues/6971, https://github.com/cython/cython/issues/6978, https://github.com/cython/cython/issues/6986)
The managed dict/weakref support in CPython 3.12+ is used for internal types to benefit from future CPython optimisations here. (Github issue https://github.com/cython/cython/issues/6891)
Using NaN as exception return value is supported. (Github issues https://github.com/cython/cython/issues/6900, https://github.com/cython/cython/issues/6903)
Declarations for C++ condition variables were added. (Github issue https://github.com/cython/cython/issues/6836)
The annotated source HTML page shows alternating +/− markers to open/close lines. Patch by Kamil Monicz. (Github issue https://github.com/cython/cython/issues/7099)
cython --embed gained a new option --embed-modules=… to list further extension modules that will be statically linked into the generated extension module, to get them initialised on application start. (Github issue https://github.com/cython/cython/issues/2849)
The setup.py script of Cython now allows passing the desired Limited API version like --cython-limited-api=3.11. (Github issue https://github.com/cython/cython/issues/7228)
Unicode 16.0.0 is used to parse identifiers. (Github issue https://github.com/cython/cython/issues/6836)
Bugs fixed
Special float exception values could generate invalid C code. (Github issues https://github.com/cython/cython/issues/6900, https://github.com/cython/cython/issues/6903)
References to the Python bool type could generate invalid C code. (Github issue https://github.com/cython/cython/issues/6902)
Unicode characters formatted from C integers with f"{value:c}" could result in invalid Python string objects since Cython 3.1.0. (Github issue https://github.com/cython/cython/issues/7240)
Vectorcalls could use needless temp assignments for self. (Github issue https://github.com/cython/cython/issues/6909)
Iterating over temporary memoryviews could crash Cython. (Github issue https://github.com/cython/cython/issues/7005)
Type casts on constants as part of numeric expressions could crash Cython. (Github issue https://github.com/cython/cython/issues/6779)
Long code bodies in with statements could crash Cython. (Github issue https://github.com/cython/cython/issues/7122)
Indexing bytes failed to optimise in some cases. (Github issue https://github.com/cython/cython/issues/6997)
Optimised C integer formatting in f-strings failed to apply to typedef types. (Github issue https://github.com/cython/cython/issues/7170)
In auto-pickling, trying to unpickle an object that has no __dict__ from object pickle data that includes instance dict state is now an error. (Github issue https://github.com/cython/cython/issues/7222)
The type objects of heap types were not always correctly decrefed on deallocation. (Github issue https://github.com/cython/cython/issues/7145)
Pure mode type aliases like p_int or ulong leaked into some C type contexts, risking to conflict with user declarations. (Github issues https://github.com/cython/cython/issues/6922, https://github.com/cython/cython/issues/6339)
Boolean (emptyness) tests on builtin containers could fail to handle (unlikely) errors. (Github issue https://github.com/cython/cython/issues/7090)
The return type of bytes.join() was sometimes inferred as plain object. (Github issue https://github.com/cython/cython/issues/6987)
Type inference could fail to understand prange() arguments. (Github issue https://github.com/cython/cython/issues/6974)
embedsignatures failed if lambda was used in function default arguments. (Github issue https://github.com/cython/cython/issues/6880)
An internal C function was not marked as static and leaked a linker symbol. (Github issue https://github.com/cython/cython/issues/6957)
PyType_FromModuleAndSpec was incorrectly used in Limited API code before Py3.10. (Github issue https://github.com/cython/cython/issues/7181)
Conversion code for memoryview dtypes from and to Python objects generated C warnings about incorrect const / non-const casting code. (Github issue https://github.com/cython/cython/issues/7219)
cythonize (program and function) now uses concurrent.futures.ProcessPoolExecutor instead of multiprocessing.Pool to fix a hang on build failures in parallel builds. A possible work-around is to disable parallel builds. Patch by Sviatoslav Sydorenko. (Github issue https://github.com/cython/cython/issues/7183)
Cython’s tools and frontend scripts now use python3 instead of just python in their shebang line. Patch by Matti Picus. (Github issue https://github.com/cython/cython/issues/7053)
The setup.py script in the Demos/ subdirectory failed to build. (Github issue https://github.com/cython/cython/issues/7228)
Includes all fixes as of Cython 3.1.5.
3.1.5 (2025-10-20):
Conversion from C++ strings longer than PY_SSIZE_T_MAX did not validate the length.
Some non-Limited API code was incorrectly used in generated header files. (Github issue https://github.com/cython/cython/issues/7157)
Optimised unpacking of Python integers in expressions uses a slightly safer scheme. (Github issue https://github.com/cython/cython/issues/7134)
Empty return statements were not always reported when tracing. (Github issue https://github.com/cython/cython/issues/7022)
Value conversion errors when tracing C return statements no longer fail the trace but fall back to reporting None returns instead. (Github issue https://github.com/cython/cython/issues/6503)
Other changes
Usages of Py_TPFLAGS_HAVE_FINALIZE were removed. The constant remains available as cimport from cpython.object for legacy reasons. (Github issue https://github.com/cython/cython/issues/6423)
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.2.0b1.tar.gz.
File metadata
- Download URL: cython-3.2.0b1.tar.gz
- Upload date:
- Size: 3.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79962fa8127b4eddbfe3e97052745eca738700963b32d048952da8499fbc10ba
|
|
| MD5 |
d89bc494c2d7251c6ea2595333320088
|
|
| BLAKE2b-256 |
0163aea324c16e93678a6dcbc61dd69e24020ca53072ef6efc85cf4902737773
|
File details
Details for the file cython-3.2.0b1-py3-none-any.whl.
File metadata
- Download URL: cython-3.2.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 |
a9f6c76114d730061a80a06b347e9e90e98c0626735145509fc532f6afd30be7
|
|
| MD5 |
51de27989567d166e4f63dedb2324408
|
|
| BLAKE2b-256 |
a0e7f0488bbac9f7eb6665f70eed5b0530831f32784a8c152b8277a9f3f23874
|
File details
Details for the file cython-3.2.0b1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 2.8 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 |
81a8211cf93103a03c2d43e16e814275dd65e947f78d9c7a901a6ca1ffb8bfcd
|
|
| MD5 |
6d01a02d3866c806f3e6443d1b8e7444
|
|
| BLAKE2b-256 |
2dae2c148ddce655f85bd6938db16c143ddae079bad6e47425dae4931e61b862
|
File details
Details for the file cython-3.2.0b1-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.14, 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 |
479ef4ff1758cb90a3310450a0e1b335662e0d765556abe439d778e4ee409450
|
|
| MD5 |
2870237446e001ff1b1ddbe2add7879a
|
|
| BLAKE2b-256 |
7a96a186f23c584041f2d0d38c6b1ea3d54fef0fdde9a21f5c7fad7566446123
|
File details
Details for the file cython-3.2.0b1-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14, 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 |
f69efcde9223f9fba830b362b73efff7c380b43d3614ba563e9187b109e86d48
|
|
| MD5 |
36fdb6d5c55b6c4e0ab9f349da98976e
|
|
| BLAKE2b-256 |
56fdae48337bcd98499aed28230cd1b5c5b9013f3a56cc09c8c8b86743dc7b3d
|
File details
Details for the file cython-3.2.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.4 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 |
5c0c8d53dda1afeea67beb4acedcabd624540d1c44539d0d4333c7bcdfbfbc32
|
|
| MD5 |
771f2887b98ecfa75e4b9833132843e5
|
|
| BLAKE2b-256 |
5c083aeccca38419580b0e3f29b5ad69596c9c0d7be9968b4ab5933d2ccbba10
|
File details
Details for the file cython-3.2.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.2 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 |
8b1cb417be3263ad6241c301e9cd6cf6edb99444b6139b94fa4831470e358677
|
|
| MD5 |
71b935284e1c9c6c7fbf4ed58ff39849
|
|
| BLAKE2b-256 |
5639aa4f069ecef87dd1e9e6b78fb4841a1c7acfb4f428e0cef0b9857468a73d
|
File details
Details for the file cython-3.2.0b1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 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 |
529ebc36348b9765e129fc97849b211d774309fb784d5409bb9c24256dea3936
|
|
| MD5 |
d6ae530d086f780d17b511302820fca3
|
|
| BLAKE2b-256 |
d76f6c0023350cd7c5dc07f79c315a0be782e0b366d84d61af057823a5785403
|
File details
Details for the file cython-3.2.0b1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cython-3.2.0b1-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.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16f5428231145122dc7161628442509ab3f7740b59e23c5c003f8614ef05db86
|
|
| MD5 |
b83a5d2e3bf9b4bd3e2d600154c84a91
|
|
| BLAKE2b-256 |
2990a78fb635babd45cd1609586bdf99a88dacd8f7caa02aa0175550bd8b46c1
|
File details
Details for the file cython-3.2.0b1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.13, 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 |
c112285715d1ff17048bbd968192e628a4e6f4792bce16e9fc93b0da8cd1c61e
|
|
| MD5 |
cfd8d74ff8651c9416b29da1b512573d
|
|
| BLAKE2b-256 |
402ed06723fd8a58d7ae956492d15da8254b574c71539a6da467ce510986140c
|
File details
Details for the file cython-3.2.0b1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, 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 |
d7780d1c9abbb9cca2e79ff9a583ceaee6b4744c6ee63321c1b0eee94d5c1954
|
|
| MD5 |
f6e1fa06857756e7735ba0c80acf8e7e
|
|
| BLAKE2b-256 |
bba986f9b2770a090a8aef5795f471115a070ed1fbfcd83a8bce051e519e72be
|
File details
Details for the file cython-3.2.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.2.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 |
e440abe8eb34bf76f6157aad18e649ca660737af70234daa1f77b2f4d82bbd77
|
|
| MD5 |
15186d186a6d2feead2ee12548beb7d0
|
|
| BLAKE2b-256 |
ad06c4661d84fcd4935a96632546a4e48171264b21ad7b7e2f220cd0c6ebfc4c
|
File details
Details for the file cython-3.2.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.2.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 |
fbf00065b84c73ef70df2f065f247b4a90e12c3c8ab3409601a9b39546f556ed
|
|
| MD5 |
997fc194a1eef81f60f99a8849096552
|
|
| BLAKE2b-256 |
949ab941349d847fe0903b7834cdd26b82a817f242c81f1f766315a8381567d1
|
File details
Details for the file cython-3.2.0b1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.9 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 |
f095a49a8512bac17f744c73e14add81b5eda257f48825906e21d18520a22701
|
|
| MD5 |
7106ae7e8ddffaaf72b18aa4b331882f
|
|
| BLAKE2b-256 |
ee18d7707629d8754c055fcf904573c9bb3d9e2a10918ffdfaf251f671230376
|
File details
Details for the file cython-3.2.0b1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.8 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 |
842406932dddff98d5fb85c538aaf98f9502102f7d1eb264bc53914fe5563a7c
|
|
| MD5 |
25a271ca3e4b3fcba0ac9a66aa095414
|
|
| BLAKE2b-256 |
e48da7267946a266cca3fcd7e94f0b653bd754cc040d89eb68088c6ac969a761
|
File details
Details for the file cython-3.2.0b1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.12, 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 |
fdd18aac577717f1791ede76604a427f4fdcd256356503772ab4e637e4ac7e1d
|
|
| MD5 |
97b30a38a646cfa935f8c188141db490
|
|
| BLAKE2b-256 |
4d1041aee7d3c73896d749d5661f37ef38c2ef492f58b32917b2ba21a3038a7f
|
File details
Details for the file cython-3.2.0b1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, 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 |
869493670f05c1800a3b0d0f5596f9fb07a3359a9ad73ff5652b4bc0ad89829b
|
|
| MD5 |
81637c96ce8f18820cbaa08ee17e7093
|
|
| BLAKE2b-256 |
211c14dd109fe01276590ae005f63c489c52d1f8593d1e07a79e2b2d58803b52
|
File details
Details for the file cython-3.2.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.2.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 |
4c7fb67a90af2aff92254f7c3da9199599f19b675d790b270e34a52a473645bd
|
|
| MD5 |
0692d1b1e5ccec91d232a3d1e7b2c320
|
|
| BLAKE2b-256 |
773c43e52c8ec8b9096623d7435eaaa8979178da5f1a7ef7057e0d17d25fbb2f
|
File details
Details for the file cython-3.2.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.2 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 |
f22c116e8320818c85a3b8587e62c0c2d14d12487274f4dad5d75005fac53254
|
|
| MD5 |
fdad51c8d3e4f18d857d4f9124b7ff7f
|
|
| BLAKE2b-256 |
42884d65576d5fa1c4f9c1f0276e69e9e727987abaea1b14061ca9a84586d827
|
File details
Details for the file cython-3.2.0b1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 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 |
98dfd335aa4c38dbb7e109f2c65cd7d5d97c23b33bc99c98ef7cf8cafa9440ce
|
|
| MD5 |
c730e03a4618635e6171820c49b8bd19
|
|
| BLAKE2b-256 |
fff2367d6d05e798107953e1a57ca16fc49f6602790fdfd601789cd38e20b4df
|
File details
Details for the file cython-3.2.0b1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.8 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 |
8b024e47e1780291b5f15d9eb57aafd055ef0ddd7dad166947b62ecaf274569f
|
|
| MD5 |
3487672be67ad72e34481b4a694b8db6
|
|
| BLAKE2b-256 |
a03672a0f8025b075acc819defc3b7181f657232a7860da246293c60102dee89
|
File details
Details for the file cython-3.2.0b1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.11, 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 |
df50d52bfe80148a29f739214e2cff0a4af3b30c198b18deb8098f488bee6b78
|
|
| MD5 |
8c4256ca250e7f93d5868b138026360a
|
|
| BLAKE2b-256 |
e53fe6ebec0063e6cff423663f11eb5409225a2b50f05dc121697998f44725a3
|
File details
Details for the file cython-3.2.0b1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-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.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2e8fa56274c388992411cf9b84362775786767fb3fc52e331346d23848099c2
|
|
| MD5 |
2c73e521334a5a9462f554139b0edfcf
|
|
| BLAKE2b-256 |
0ab85e14f9823bc2abd65a5a2e89694ddcb60d15d915f145eaaba10c349681fb
|
File details
Details for the file cython-3.2.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.4 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 |
41361c5319f5ddb630ff14936ed908575248fab9621b3d3c031a381aa6ff86fe
|
|
| MD5 |
233e3d94c18354f9ad36a8d978d20ebd
|
|
| BLAKE2b-256 |
ff8dd76756e5574f69e5a1da7e538b9f3165f59c5f1b90eb9566bb81ffb6d395
|
File details
Details for the file cython-3.2.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.2 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 |
34aa641ac008fdd5de5e3ff98ead00f3e665e7f6de609d0c4dadbbf164125f6e
|
|
| MD5 |
d3c8ab04a234adf1eb9bd2cb50fb1ee2
|
|
| BLAKE2b-256 |
8bdc24beb8358f6001b011cf7f7c8862d34add72d328c45bb13f71410f5c3f20
|
File details
Details for the file cython-3.2.0b1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.2.0b1-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.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e70d3a715b0a0e6046625c7be913768928a2f44942bbb881282ef86818d34f90
|
|
| MD5 |
fef73f0b091e94c76f9602832be122a5
|
|
| BLAKE2b-256 |
42c64fd336542060a51614425f50b5ab36491ca61206fd97a4dcc0a96a21a942
|
File details
Details for the file cython-3.2.0b1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.8 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 |
bcf64ee3af319088b2da8481ef223e02bf9e9eff0641b0b54bbdbb158785b255
|
|
| MD5 |
c5cf7ca732565b018238c5ee7d7a5e68
|
|
| BLAKE2b-256 |
7daf880dc10cf5f1d09056f6f02e8f1e2f5964d945efe547a68647d411415577
|
File details
Details for the file cython-3.2.0b1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.10, 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 |
11c442c27ecd2a20caaeb05d8679d3c9693a0e1abb4a67df7dd7d888395a7156
|
|
| MD5 |
753976c58a30e84f071692b013f7ad11
|
|
| BLAKE2b-256 |
ce30a7ca66fa0da644d823a1457015fb4778935bceedc5aa4092d6b001b454e4
|
File details
Details for the file cython-3.2.0b1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10, 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 |
ccc86ab906fcf9fd867e8682f99ef002f9793145ccbabce572c9370018c92c1c
|
|
| MD5 |
86cea65eec627fb059ae6f5b8e7d81b6
|
|
| BLAKE2b-256 |
5e8e1ca2decb6af50494fc1e6bc46260a982bdff901b8b73027bb88693ae220f
|
File details
Details for the file cython-3.2.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.2.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 |
9bcdc28597000d033a2b6f3c62911acfc685a1b8e41f3fdefca321bad5ffb3b4
|
|
| MD5 |
ab940563a23f00c83b0995cad220a1f3
|
|
| BLAKE2b-256 |
829faf7c44dae1b62b44f78fb15caa97b1ce9c94de5423836f08065651dc5eb1
|
File details
Details for the file cython-3.2.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.4 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 |
820117e44ebddc6f99da63703f8900aed4132c7a8eabab8e07d9f86cee9b3fdd
|
|
| MD5 |
eccdddeeaf4ccb9044ac11be94f408c4
|
|
| BLAKE2b-256 |
b2fbdc26451fac2dd392bfd5a909001c548f79ef922f41a02176408957c2f51f
|
File details
Details for the file cython-3.2.0b1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 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 |
ee48a8f20646847382609498eddd2cc307680b7d2b49532403c5ab850ca1efdb
|
|
| MD5 |
00db9577409059893dcea912c6a04354
|
|
| BLAKE2b-256 |
a8fe52d3c05d0960405893fa1d67d12c738c8bee6267fe4d7a56ec91a1a28da5
|
File details
Details for the file cython-3.2.0b1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.8 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 |
fff0d6564f2895f9f8e7658ca486507fa4a66587f502e91390b39cc9e5d03b90
|
|
| MD5 |
5001a3813dbbef18366846c29e94f0de
|
|
| BLAKE2b-256 |
e676a480e8b0d2770b9c5a21392a9528f5cd9114fd348db8fc436645998c8288
|
File details
Details for the file cython-3.2.0b1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.5 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 |
fb9270f047b48cf1089314acb7e7e300e2f98bfcb3a07549d17528cc1131fbea
|
|
| MD5 |
1e047d7a0eaee724fc2600c36875e9c6
|
|
| BLAKE2b-256 |
5e6a4cc4b0037d313b2f9f1098b5fb36e4f60a539621b1e96e581234ec50029e
|
File details
Details for the file cython-3.2.0b1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.4 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 |
95a4d6b491abbd1c7e0d125729ffd6c887714c95657603008a5ed403fa7d4c1c
|
|
| MD5 |
aaa6d51680c57096b615a1e866599eed
|
|
| BLAKE2b-256 |
1a5c808703e2fafc464695fb48e2d27b3eef29933a3857cd4a75c7ed6d1f6b38
|
File details
Details for the file cython-3.2.0b1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.2.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 |
9079d22f17f6535b032dd1f8c301054a114d0acc0aee7e38cedd17b22b164598
|
|
| MD5 |
437da694dc0828e7a975b85cb7e78927
|
|
| BLAKE2b-256 |
6fdf3e4886f03f5b7c00d4096fd7ecc0ef6699d5647c3b45b0b367f99b126565
|
File details
Details for the file cython-3.2.0b1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.4 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 |
33c8d8d9145b1cf44cf1503e79a5a14d66769e876e4798fbb7e0a327c36b95fb
|
|
| MD5 |
2ec46b831ca166d841b72baccc3704f5
|
|
| BLAKE2b-256 |
cbfe12770dfa04d3040f935ebdeb89b28660af1906ebacf0eab5136c2bf87b59
|
File details
Details for the file cython-3.2.0b1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 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 |
d36e396440461349d3693a022f5601efa05ff238bef48def1c3c41eecdbcc938
|
|
| MD5 |
177e817de9a0827e457fa84c548f5a0a
|
|
| BLAKE2b-256 |
24ec4f4c546d2f601ff1109b3e9b719fb9b199808faa6a98f57580004c038012
|
File details
Details for the file cython-3.2.0b1-cp39-abi3-win_arm64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-abi3-win_arm64.whl
- Upload date:
- Size: 2.4 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 |
3bfade5538ced48733814c3cb9b79c63bd7d5bfdcf76a48af44ce5210db65878
|
|
| MD5 |
b8b76a25bd7e6c29e6a8b598b019bea2
|
|
| BLAKE2b-256 |
82a53dc1c7a648e531c78dabbc71e011f9c0e70bcec035c6ae1cec31c246eb9e
|
File details
Details for the file cython-3.2.0b1-cp39-abi3-win32.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-abi3-win32.whl
- Upload date:
- Size: 2.4 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 |
704148376d8e069152733cb2e1ba131b5cec114c6a545d25ebb3c8b2c3af689b
|
|
| MD5 |
45a64f39023ea2e55377c36e43f23668
|
|
| BLAKE2b-256 |
3db7d145f295388c6b507c324ca8e9ef5a328f152d45f45c2b1968382e53064b
|
File details
Details for the file cython-3.2.0b1-cp39-abi3-musllinux_1_2_i686.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-abi3-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.2 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 |
7b9cd7a686f03e4218d6b14384a0862ddbc9f7c177eb34b73a7c98747b3fbc78
|
|
| MD5 |
587997e5ffc04ecef827ff7b4fd6dee1
|
|
| BLAKE2b-256 |
3da9e4de70880ab63892d4cf58289c980eea9a05dbac41e380baccd76a13afe1
|
File details
Details for the file cython-3.2.0b1-cp39-abi3-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-abi3-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 2.9 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 |
7f966f3ef2181196213a6f768a12b1903cb8a6976e779aeed85714e088d267a2
|
|
| MD5 |
7080aad13fac0e2bea99500c97786ddf
|
|
| BLAKE2b-256 |
5bd6d129808a66ef989687d78559ec2350ea1bce4e05d2dede01dd4e4f20310f
|
File details
Details for the file cython-3.2.0b1-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
- Upload date:
- Size: 2.8 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 |
095e971ec2f14a9af6245d6b5e7829a0f83fb62654fc49cb57de79ac11bc7d8e
|
|
| MD5 |
0984d7b77de3dbe00b8311c8ee23c979
|
|
| BLAKE2b-256 |
365f6987e80d7fbfa57bf33f18af5c4b0cf0de953eb3d24e739dbc0c50ba2961
|
File details
Details for the file cython-3.2.0b1-cp39-abi3-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-abi3-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 3.2 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 |
1ace7993a80b84eedb906cea94aa585c0089314ef51e6a21fc2e11e9a6ab1c93
|
|
| MD5 |
32356239f251f21b84d28399802b2b7a
|
|
| BLAKE2b-256 |
b6244dfcb79e5f1b0e3c8439a468764341fdb48cce7f1df349f9d752ab72878e
|
File details
Details for the file cython-3.2.0b1-cp39-abi3-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp39-abi3-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.9 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 |
5f5887949b9b15f3988fd245a95b1a37cf1138329959b9fb05bb599a60f30169
|
|
| MD5 |
1cca9f4efd2a9622eb30256b2f223eaa
|
|
| BLAKE2b-256 |
bae31d28632e768d83ba223712a0e9e328297b7d64286d711608c4a67425f1d4
|
File details
Details for the file cython-3.2.0b1-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f72ff059b49a06c396df28490d3f6b3df456a68be90b8db8e5eb6566f7f5146
|
|
| MD5 |
abb048b1d2675410425e632901b9c677
|
|
| BLAKE2b-256 |
509586fa4cf9ae9a11e72e23dab996738ee1819418afbef9b2901c18d2ecfbe2
|
File details
Details for the file cython-3.2.0b1-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.8, 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 |
8dc77dc0fcd8086753aca04371335a2552276b6417b46b682a8c1d3f62ab6a3c
|
|
| MD5 |
c3b02df46f22ccea0747b47d6f119206
|
|
| BLAKE2b-256 |
30c441296976ab8267d50c8107c4370e719f47edffb77f974747b05ac608eb00
|
File details
Details for the file cython-3.2.0b1-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.8, 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 |
e4dcac31f7245a9e30476c5c1d5b926fda32127f5622ffddbf6813260fa1d372
|
|
| MD5 |
ae6bed49fafeea50fc328a8c57240580
|
|
| BLAKE2b-256 |
9ff58a74b4df490c3af21385bc991522008e5ac3179fe493d6335aa953d53f04
|
File details
Details for the file cython-3.2.0b1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.8, 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 |
5047edc18aacdb889346ea68a6885f8b19ab29dad54cb2abc2ad81134e9d3333
|
|
| MD5 |
97261dc4d6541f0e51609caaebe6ed32
|
|
| BLAKE2b-256 |
67e958f23376785f473593334f51fae5bc0323fcf98bc5ad6a4cc8a7f06cbdd5
|
File details
Details for the file cython-3.2.0b1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.8, 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 |
76a57b31b2f5d41a3198877a2eedbed8e4ed977c601ae120f28e3b0fe890e016
|
|
| MD5 |
33a65ba5e0ebd6fb77081b3f6e6900ca
|
|
| BLAKE2b-256 |
04aa96a621fd39c94606176107874d3fd1b0e934086fe71ce7fe17b059b0dd21
|
File details
Details for the file cython-3.2.0b1-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: cython-3.2.0b1-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.8, 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 |
98bdee37903123f77cabd7ae691fac66c0c75b3251146e280727655ae0af230c
|
|
| MD5 |
e4282db6386f7460ba8f1cd48ae4d1bd
|
|
| BLAKE2b-256 |
143cb5901b7b7003402d5d671d27fd5e4f76cf7272181d3e03b16637d0918518
|