Skip to main content

Cython extensions for sktime

Project description

sktime-cython

Cython-compiled estimators for sktime.

This package hosts ahead-of-time compiled implementations of sktime algorithms, isolating the C-compilation and binary-wheel complexity from the main sktime package. Estimators here expose a plain numpy-in/numpy-out compute layer with no sktime runtime dependency; sktime keeps thin BaseTransformer / BaseEstimator wrappers that delegate to this package.

Why a separate package: compiled extensions need a C toolchain, per-platform wheels, and cibuildwheel release machinery. Keeping that here lets sktime stay pure-Python while still offering compiled, numba-free fast paths.

Estimators

Estimator Compute API Notes
Multivariate MiniRocket sktime_cython.fit / transform numba-free; equivalent to MiniRocketMultivariate, no JIT warmup

More estimators are added as .pyx kernels under sktime_cython/_cython/ with a numpy compute layer alongside.

Each estimator lives in its own submodule (nothing is re-exported at the top level, so estimators never collide on common names like fit/transform):

import numpy as np
from sktime_cython.minirocket import fit, transform

X = np.random.rand(100, 6, 500).astype("float32")
params = fit(X, num_kernels=10_000, random_state=42)
features = transform(X, params, n_jobs=-1)   # GIL-released kernel, real threads

Runtime dependency: numpy only.

Development

Requires a C compiler and Python 3.10+. Run from the project root.

# editable install with the dev extra (pulls sktime + numba for equivalence
# tests, plus pre-commit); compiles the Cython extensions via build isolation
uv pip install -e ".[dev]"        # or: pip install -e ".[dev]"

# install the git pre-commit hooks ONCE — this is what stops CI lint failures
pre-commit install

# run the tests
python -m pytest sktime_cython -v

After editing a .pyx, recompile with pip install -e . again (or make build).

make shortcuts (auto-detect uv, falling back to pip/python): make install, make build, make test, make clean.

Before you push (avoid CI failures)

CI runs the pre-commit hooks and fails if they reformat anything. Running pre-commit install (above) auto-runs them on every git commit. To check the whole tree on demand:

pre-commit run --all-files

This runs ruff check (lint) and ruff format. If ruff format reports "files were modified", it already fixed them — git add the changes and commit again.

CI workflows

  • test.yml (push / PR to main): a code-quality job running the pre-commit hooks, plus a matrix that builds the Cython extensions and runs pytest across Python 3.10–3.14 on Linux, macOS, and Windows.
  • release.yml (on GitHub release): builds binary wheels with cibuildwheel for all platforms, builds an sdist (with .pyx sources), and publishes to PyPI via trusted publishing.

Adding an estimator

  1. Drop the kernel .pyx (and optional .pyi stub) in a subfolder of the package. The package structure mirrors that of sktime, files should be added paralleling its primary import location in sktime
  2. Register the kernel as an Extension in setup.py.
  3. Add a numpy compute-layer module sktime_cython/<name>.py exposing the estimator's public functions. Keep them in the submodule — do not re-export at the top level (avoids name collisions across estimators).
  4. Add tests in a subfolder tests, in the same folder as the kernel.

Package structure

Cython kernels and python layers should be added in a parallel location as in the sktime package.

Example for minirocket:

sktime_cython/
  transformations/
    rocket/
      __init__.py                           # public compute-layer exports
      _minirocket.py                        # numpy fit/transform layer
      _minirocket_multivariate_cython.pyx   # compiled kernels
      _minirocket_multivariate_cython.pyi   # type stubs
      tests/
        __init__.py
        test_minirocket.py                  # tests

License

BSD 3-Clause License — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sktime_cython-0.1.0.tar.gz (14.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

sktime_cython-0.1.0-cp314-cp314t-win_amd64.whl (275.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

sktime_cython-0.1.0-cp314-cp314t-win32.whl (260.7 kB view details)

Uploaded CPython 3.14tWindows x86

sktime_cython-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (523.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sktime_cython-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (531.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sktime_cython-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (105.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

sktime_cython-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (107.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

sktime_cython-0.1.0-cp314-cp314-win_amd64.whl (269.4 kB view details)

Uploaded CPython 3.14Windows x86-64

sktime_cython-0.1.0-cp314-cp314-win32.whl (255.1 kB view details)

Uploaded CPython 3.14Windows x86

sktime_cython-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (523.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sktime_cython-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (526.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sktime_cython-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (99.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sktime_cython-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl (102.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

sktime_cython-0.1.0-cp313-cp313-win_amd64.whl (265.0 kB view details)

Uploaded CPython 3.13Windows x86-64

sktime_cython-0.1.0-cp313-cp313-win32.whl (251.2 kB view details)

Uploaded CPython 3.13Windows x86

sktime_cython-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (528.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sktime_cython-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (530.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sktime_cython-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sktime_cython-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (102.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

sktime_cython-0.1.0-cp312-cp312-win_amd64.whl (265.1 kB view details)

Uploaded CPython 3.12Windows x86-64

sktime_cython-0.1.0-cp312-cp312-win32.whl (251.3 kB view details)

Uploaded CPython 3.12Windows x86

sktime_cython-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (524.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sktime_cython-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (529.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sktime_cython-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (99.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sktime_cython-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (102.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

sktime_cython-0.1.0-cp311-cp311-win_amd64.whl (262.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sktime_cython-0.1.0-cp311-cp311-win32.whl (248.9 kB view details)

Uploaded CPython 3.11Windows x86

sktime_cython-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (528.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sktime_cython-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (528.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sktime_cython-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (99.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sktime_cython-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (102.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

sktime_cython-0.1.0-cp310-cp310-win_amd64.whl (262.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sktime_cython-0.1.0-cp310-cp310-win32.whl (249.6 kB view details)

Uploaded CPython 3.10Windows x86

sktime_cython-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (506.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sktime_cython-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (504.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sktime_cython-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (100.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sktime_cython-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (102.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file sktime_cython-0.1.0.tar.gz.

File metadata

  • Download URL: sktime_cython-0.1.0.tar.gz
  • Upload date:
  • Size: 14.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sktime_cython-0.1.0.tar.gz
Algorithm Hash digest
SHA256 024f119af5c7b8f3d7250dc45f57819dab51dc2364787c0d7fb8d53e5b59abd5
MD5 eeb11eaee27fc7facad5e4d948dede68
BLAKE2b-256 a554b1b8584bb04ca82e5322c2f80f01904619bf692829701286450a2af3139e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0.tar.gz:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d2c4ba77ac6146d5afa1a6599573111fe133fac0c30fd6f719f9d0463ab15269
MD5 ad226dc7a7fa462bee8e56851c56ab43
BLAKE2b-256 2a95beafa9daa0074493297751f16936f00ce0c82710291a44b17fb303f4de5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: sktime_cython-0.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 260.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 de550206042f13ebc4a9a1fc95708cf24acd028ec2c8aa970d7b04cdf27e1adb
MD5 13c70eb422f761d8bb0125006ee47dd7
BLAKE2b-256 f01a49f11065972962194a549a3e565c0958d2bfb6dccf28844944a6fe0dd9f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314t-win32.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b575a5b552bb67ce460dab8e85b7174d8acfda15c2a15e18d45c32659f3a6f5c
MD5 3f26ac389a16c11f3dd22fe8b7bbd8b9
BLAKE2b-256 f07e59916fc7a51f01ebdb1cfcd2c38d31c5e6e75f9096309b342d445040630a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf682a2ac32350f8cbef3a4a51b266b543884ac79a66612b6e6fac84cc8958e3
MD5 251567517cb710b23b4da5465e8b7a01
BLAKE2b-256 289af4b63f07f3ffc40d1341f54ebcd27c49b73496f73fd0254475c712ab9c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45be4756e57d1305b045492ee2ed628f0a203cd31385385226f443ddbff56742
MD5 271bf043daa41c66d9236a23e7b7e711
BLAKE2b-256 cf9457150b62489a3e440742968c6a82e8b7c34f16683ebd80eb446545657a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0a9453de32685750a1309ea07a1ffc01db874a06b9671d1275c0ec9644b737a7
MD5 0ac911a85999a10fe8a0bc2cbb33472b
BLAKE2b-256 7dbb7153565046aa5d76670aa1726da536eb318f8969223072bfcf1435dca8be

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 24dbecda77ecd2fd9b46e4d12891ea92dbec7b3e6fa6ccadca8032d888de9a3b
MD5 f08f782e6427ca12918b8ef3479bdd52
BLAKE2b-256 473cb735853bd0a77c0bd8bfae756e2b90341565628a79430f9b98ca0e643731

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: sktime_cython-0.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 255.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 16040b9813cfd15b848e53e6bed3a0fe1244c848ec85124bc0eeb8a71466a9dd
MD5 cde62e34c4cc6728e19636151ab3b40d
BLAKE2b-256 85cd9bbef032a2061be5fe372d797aa170c016b218b47d3cd64f7b869d930e4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314-win32.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 257e3dce471e2d6089d7422fc74323e0c05248a45df50043194fea4187a40806
MD5 80850fb5a2bf74dd3f57f8ebfc07a0c2
BLAKE2b-256 3a19a0676eb93d8f6cb48eb11637992792d7b38f9f9047ddde59968d971bd838

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b8d54429799b4cb699d0075cff1e35b658f7c89da84d02692c62d04994bc89d
MD5 11217d80905e0f3e59cb8ef5a90cb7b5
BLAKE2b-256 9d4561c4638dfedd1cb12a5d6bb7fa82a052408e98dd27c4f310cf556e2370d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59dbdb630afb58d35a8f803a345414ce0a4a980b4a44e3a3ddac871146a0a10f
MD5 8d62e7c22cc2276a8e9aaedfa43989a2
BLAKE2b-256 276cb0e3c6b12836a926b5ebe561ed5d5098df1e3dae25e6f7e93d492c9cc05c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5cdc9a635b24b81e64a0a1649c940c0b93fcb34e834f93aeb4cb84ae3a1ecf3e
MD5 4df6da09c3337753815c4bf168584299
BLAKE2b-256 5caf452192ea9d366c1b85e1b10ef27199a0b6c6562ea5edf5e45dc641f3c5e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 81a044bcdf3d741ca557081bd9ecd82365e8180f32494268ac44939e91c995f9
MD5 18117e66f58a0ea183d796c46423cc0c
BLAKE2b-256 52a51afa3e1beb37e8fb238f6beff52541688d1a65133d52e9de523faf178bd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: sktime_cython-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 251.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sktime_cython-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d5cbaded0657b0b6b2527a921bcf06f27d7ec1109c39ae2100684150637b8139
MD5 6ae1a4b7e4126bfb647cb103660265ad
BLAKE2b-256 d4054eb63cee711bb0dbe8156c9204ebbe8ce6391552c1a7f87f5cb0ae29b897

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp313-cp313-win32.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cef3aacd85fc69201218bb7b682fd598a0d713e36b9ade14b3b6da1f7803c0ab
MD5 913fde9ea6a3205253335f288098734b
BLAKE2b-256 3d75193c5f420f654071aa1d81d8d70ef119bd7131e29f44909527352a373216

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4183108321f36b0511ee3c9cead1f89861623a128550d66a14574ac05a276802
MD5 5613f8777ea88de5164749828b9f23f7
BLAKE2b-256 75d02e320159ac649fc6c01f743ecdda1bf82b9cdae529cca29d4730927a9163

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bd8c860b4ec6845abd3edcd2f7b2d430ca7bb689690500134830a05820408f4
MD5 175c775c91963c2f6360fcdf07605868
BLAKE2b-256 26e0bcbad5673ab95381301ebd6e8a8b73d8f81eec0459fc52370681a880e855

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c3dec00c82e2b1f928f6fe9328d80e35d2cc2dc47bc93d23975f8e05187e9db7
MD5 46c7a6f15e7faad43df0c0c13570f31a
BLAKE2b-256 14d9de796cf3055bf5f37ff1434dc3a1d8a77b1b03c7d53372eaa75907ecb315

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 70a7425434e1c95f1876638041e52e6091d514bf424f386e11e4333334201b4a
MD5 fc2218c0faa10ef4565a215fe1fe090e
BLAKE2b-256 765f351a27180572866a15ed4cb7b5e8eab5efbab6729de27fe96965cdfb7a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: sktime_cython-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 251.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sktime_cython-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 991279afd118b0ca0c76df89911800bd4ef30760980c00834e0da71da4063b1f
MD5 aa9d038b98a025e0cc657b41280775e3
BLAKE2b-256 29b7b7eb7678240ac99aaf538c7ad8a483a0e1bf3c4d4174fcd800da1a1a811d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp312-cp312-win32.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d63e15711703fec9f7e7d3126c23d7dbaa3c63656d0c7d0195cd2ea4b095f06d
MD5 29807549c3eab1036b6e3cbfff985aea
BLAKE2b-256 7367c73af01a83a5e1fc6f164402e674be913d287978320190ec177ece0afbff

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c22fea7fb0fd14d522e2e28f873c4c630fe1a0b5a97e7d891f933d5710ca4e0
MD5 5b43a329d662e22315cffa27270f6a0b
BLAKE2b-256 14b2fe07ce75a9d30acaa153565f592e1f3eb66d1bddaeaa3981f1e2c6293d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 895cb37cef731b561113da28fc29d2ab4bbb229b8415507dec113a35916d6bc3
MD5 1684188c3bddd9c86d09ee7df47409bd
BLAKE2b-256 da886602fcb5403de1e66b19e9e07e377d05e92fd0a404744f73f20b38fb7503

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6d30c227db970666a2bf909e565c36bcbd391725d993f6a99ddecf7f7457fa9c
MD5 41029f0de0b24461d6cd5e1295e6ab62
BLAKE2b-256 8455c2ff3ea703d362914e1faad07445c17d2beb8b7c3e7f6ac43596fbcdeb78

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7ca995c815e11a298512aca95c21f647899f68154c858e62a34be8a8e1a45ebd
MD5 6969be4ee387a5576e3546df6af98d67
BLAKE2b-256 a6df173ec89e2b62d9e86047741ccccb91edf51edb8a4f500c22f8bfed92591c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: sktime_cython-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 248.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sktime_cython-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b663f33cd3d54be08982fdd94d94c8751a0aeec81cb91c6d3511a9d51050fd3e
MD5 c1d62ef1b517c9a3b680775d3660b551
BLAKE2b-256 2695320580161c64494397ab676c794989c39fd99ea907ae452effe0858081a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp311-cp311-win32.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba5fdaf1dca4972ca21933c74d80f76eef17527091e4669b4060cea20850aff8
MD5 05b6ee9978381d6fd3b2ee56c5001f32
BLAKE2b-256 2888102b56c0d915937e68f029704042ce8a140e49aa843724b0194bd11182dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a766b5f07043065fefa6b7193b25d7a73d8cf2fef162800340000fc346963116
MD5 db113fb43b451ab97e5c4a677a7a41ab
BLAKE2b-256 f158e55dd2da0543947d91e500cbc92a403e27b6987870a831e55e101721bb81

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0180965e91ab61f5ca6ffdb634e8a58592a10516b2e26de5bee4a7335bb9c86
MD5 40d1646bf272d527b5f21894c84d2efa
BLAKE2b-256 6b871d5058a5e77d060d0aa3bfc1fb9f32d23a17ba89eb8a28ba80dd87c122e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24203c11033fcf6122743108a2ce949311257d31f12c82f0cc74efe6482c9105
MD5 348f32b24a56577b882d4a689eae6451
BLAKE2b-256 4df99ea671c581be4892b25371a85e97fd66c1b66ff75f639d87eda6ae445d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3fc049bf4e6700258e645bba09bbbcbdbc5b327c91d5476adf8eee06069ff77
MD5 a0e99b9bc4cea015897ba3a84c6da96f
BLAKE2b-256 5e74ac7af4759b549cbe97b79aeb8328283a1f5588fe63b501e9fbc0f9f5cba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: sktime_cython-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 249.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for sktime_cython-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6b6a76ea1e7d46025a5884a06aff2e21225d1f0d5ebb3120884c57c41e937ace
MD5 ca66e6c7467b81bc022f4277b554b45d
BLAKE2b-256 29fa5e4bdebf0bb42a9d0e15825ac39af03240e17a9d890b79fcf7a86837c90c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp310-cp310-win32.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1aa4bca3a759079e67cff42ecb4c4af43376f7f675958a99b80f6ed832367798
MD5 fa876677d986115a880938082eaf4093
BLAKE2b-256 4286edd58367dfdcc415a4cfadd6a2286348d721e1305514c7830ece0bcf320e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48cf4c43bc062fe345e452063f6b0a1c8ef1a3d53a7a5912ab0a0465d17eb349
MD5 2397987d90a44ab0a4530e34e20c3f64
BLAKE2b-256 b4296c104dfadf8b59cabe1b5c81bc475e11f5f0f4674610b7e1d77b61a1ca25

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab9c973f810617a947eb048879db109ad0b2be87b1dde8b2ddd81f3f08b46180
MD5 80c06759c24de9ebbb517e9a2a3ea363
BLAKE2b-256 04b2f12a970af0cf4f0cbdf38594350a615a9759e157caa17b3c366faa3c10e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sktime_cython-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for sktime_cython-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c1882e499402ca4a033c2cd398c64ea8ef14b347cd7c4684bd18b6f985fdb9b
MD5 a6657bda9a3a5a954209df7c05f8051b
BLAKE2b-256 c25a9d9d9d14bcca6c651b8476274e324a178be3af28197ca0fda1815f69075f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sktime_cython-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on sktime/sktime-cython

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page