Skip to main content

A fast implementation of the Goemans-Williamson scheme for the prize-collecting Steiner tree / forest problem.

Project description

pcst-fast2

A maintained fork of fraenkel-lab/pcst_fast, published on PyPI as pcst-fast2 with wheels compatible with numpy 1.x and 2.x. The importable module is still pcst_fast, so it is a drop-in replacement:

pip install pcst-fast2
import pcst_fast  # unchanged

A library for solving the prize-collecting Steiner forest (PCSF) problem on graphs. The underlying algorithm is based on the classical Goemans-Williamson approximation scheme. Our variant provably runs in nearly-linear time and has a factor-2 approximation guarantee. The following paper contains details about the algorithm:

A Nearly-Linear Time Framework for Graph-Structured Sparsity Chinmay Hegde, Piotr Indyk, Ludwig Schmidt ICML 2015

Installation

  • Option 1: pip

      pip install pcst-fast2
    
  • Option 2: manual

    The core C++ library has no dependencies besides a basic build system for C++11. Both g++ and clang are currently supported. The Python wrapper requires a functioning Python build system.

    Clone the repository and compile the python wrapper with the supplied makefile:

      make pcst_fast_py
    

    You can then import the package via import pcst_fast.

Usage

The pcst_fast package contains the following function:

vertices, edges = pcst_fast(edges, prizes, costs, root, num_clusters, pruning, verbosity_level)

The parameters are:

  • edges: a 2D int64 array. Each row (of length 2) specifies an undirected edge in the input graph. The nodes are labeled 0 to n-1, where n is the number of nodes.
  • prizes: the node prizes as a 1D float64 array.
  • costs: the edge costs as a 1D float64 array.
  • root: the root note for rooted PCST. For the unrooted variant, this parameter should be -1.
  • num_clusters: the number of connected components in the output.
  • pruning: a string value indicating the pruning method. Possible values are 'none', 'simple', 'gw', and 'strong' (all literals are case-insensitive). 'none' and 'simple' return intermediate stages of the algorithm and do not have approximation guarantees. They are only intended for development. The standard GW pruning method is 'gw', which is also the default. 'strong' uses "strong pruning", which was introduced in [JMP00]. It has the same theoretical guarantees as GW pruning but better empirical performance in some cases. For the PCSF problem, the output of strong pruning is at least as good as the output of GW pruning.
  • verbosity_level: an integer indicating how much debug output the function should produce.

The output variables are:

  • vertices: the vertices in the solution as a 1D int64 array.
  • edges: the edges in the output as a 1D int64 array. The list contains indices into the list of edges passed into the function.

Performance

The following paper contains many results on standard PCST benchmark instances:

A Fast, Adaptive Variant of the Goemans-Williamson Scheme for the Prize-Collecting Steiner Tree Problem Chinmay Hegde, Piotr Indyk, Ludwig Schmidt Workshop of the 11th DIMACS Implementation Challenge: Steiner Tree Problems, 2014

On instances with up to 350,000 edges, the algorithm typically runs in under 2 seconds on a standard laptop computer from 2010.

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

pcst_fast2-1.1.0.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

pcst_fast2-1.1.0-cp314-cp314t-win_amd64.whl (315.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pcst_fast2-1.1.0-cp314-cp314t-win32.whl (292.9 kB view details)

Uploaded CPython 3.14tWindows x86

pcst_fast2-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pcst_fast2-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pcst_fast2-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (126.9 kB view details)

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

pcst_fast2-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (122.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pcst_fast2-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (109.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pcst_fast2-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (113.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pcst_fast2-1.1.0-cp314-cp314-win_amd64.whl (311.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pcst_fast2-1.1.0-cp314-cp314-win32.whl (290.1 kB view details)

Uploaded CPython 3.14Windows x86

pcst_fast2-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pcst_fast2-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pcst_fast2-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (125.5 kB view details)

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

pcst_fast2-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (120.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pcst_fast2-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (105.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pcst_fast2-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pcst_fast2-1.1.0-cp313-cp313-win_amd64.whl (302.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pcst_fast2-1.1.0-cp313-cp313-win32.whl (282.5 kB view details)

Uploaded CPython 3.13Windows x86

pcst_fast2-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pcst_fast2-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pcst_fast2-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (125.5 kB view details)

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

pcst_fast2-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (120.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pcst_fast2-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (105.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pcst_fast2-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (109.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pcst_fast2-1.1.0-cp312-cp312-win_amd64.whl (302.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pcst_fast2-1.1.0-cp312-cp312-win32.whl (282.4 kB view details)

Uploaded CPython 3.12Windows x86

pcst_fast2-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pcst_fast2-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pcst_fast2-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (125.4 kB view details)

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

pcst_fast2-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (119.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pcst_fast2-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (105.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pcst_fast2-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (109.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pcst_fast2-1.1.0-cp311-cp311-win_amd64.whl (299.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pcst_fast2-1.1.0-cp311-cp311-win32.whl (281.7 kB view details)

Uploaded CPython 3.11Windows x86

pcst_fast2-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pcst_fast2-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pcst_fast2-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (123.0 kB view details)

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

pcst_fast2-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (116.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pcst_fast2-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (103.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pcst_fast2-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (107.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pcst_fast2-1.1.0-cp310-cp310-win_amd64.whl (298.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pcst_fast2-1.1.0-cp310-cp310-win32.whl (280.4 kB view details)

Uploaded CPython 3.10Windows x86

pcst_fast2-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pcst_fast2-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pcst_fast2-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (122.2 kB view details)

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

pcst_fast2-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (115.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pcst_fast2-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (102.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pcst_fast2-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (105.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pcst_fast2-1.1.0-cp39-cp39-win_amd64.whl (299.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pcst_fast2-1.1.0-cp39-cp39-win32.whl (280.9 kB view details)

Uploaded CPython 3.9Windows x86

pcst_fast2-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pcst_fast2-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pcst_fast2-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (121.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pcst_fast2-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (115.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pcst_fast2-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (102.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pcst_fast2-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (106.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pcst_fast2-1.1.0.tar.gz.

File metadata

  • Download URL: pcst_fast2-1.1.0.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0.tar.gz
Algorithm Hash digest
SHA256 0cb32b1ab6933df33b0cb7540f2bb6d47d28ea09da7885449fcad22eb54df888
MD5 9df44ed596a661cd74ea5c72dfbe8696
BLAKE2b-256 0fe8e57ff02e3d6833b4564374d511a93f9ee9e23bbd25ce48ef44da09726389

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0.tar.gz:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 315.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ed5f059b8a9ec6ae73b3faf71ec1a83a52d67c82676c804e93f5fba66a57f890
MD5 a5e537007746d654314224ccf70fc15a
BLAKE2b-256 3452079c764ad25440e76e2b7f4021ef9c0eeca51dedde2c02e88d1984f185d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314t-win_amd64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 292.9 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 pcst_fast2-1.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 de0fb2c539be0a09964a8ffbae17915bcfeb7b3e91a20d212dc8f75db64d7046
MD5 41fba110493296be7025d7d78321ce73
BLAKE2b-256 a1b9ff0d63cfe34073af87800aa85e74400b1f0c86e7d310919969e66b15f359

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314t-win32.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f741259c3fd41c8e5820be6671ca52f625ed92e95bea21550fc1e2fabd4fdbf
MD5 9f8a3aab7a515c28f926a29db6c1e738
BLAKE2b-256 1ce6193b67f7a5ec22766d735b52cb14dc3d5d994edb86effe6372e357c1b0ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb84e82a5f604729522dce9ee4f2b7683c6d2a09c8b0c5953deeed4506d4a6ff
MD5 371553138ccbea0ac488adff409da977
BLAKE2b-256 0d115a91c7aba672a392eee8374488317460b3a40114ce8a89c4d175f11fbc22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be784e9967cc8dd8a25c0a4f3be8f5f24d561be2a897cd4eaf22ecc07859c799
MD5 2d757edef9e21c25b859f59fbe978e43
BLAKE2b-256 b7ea800d84d3c4a98fc133cd2760a24fd4fb7b17ab1ef60a0a3a928c248338cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db7e70168e89841e9f8a9dc0f20a5302a31daf121aa84a06f872baf8c036d23f
MD5 d8591eb9378253bd0c6ec6766e59dfd3
BLAKE2b-256 2c364c6c9faad4fc1902ef5690a2b052d38543ff212b6791a08229702437f7fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2162874e16b7f2bf94b3a0c5e36976966e65fc6e2b673fe2b0b07b799587f8fe
MD5 8ce4762a883833c3ed75cc3df6d2e552
BLAKE2b-256 56deb1d5d6ed25d4a47e8344e5ee3129ef659e12edc7911a50cc5a76e3b728fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe34059118f871be98111dfac72999e2b5a30b02e7041413d9d37f0393f8558d
MD5 5dff6767a55c53c34f4f4bc86b7233ea
BLAKE2b-256 dca6c96998ebc801db6ef3fa5ee157bbef7e8528735d344bc7e68073fd022a69

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 311.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d4bd8aa71a65f7166194bf54d9464668c752be9c5257c3dcd3f35f3adac9e06b
MD5 a932e7afa24d9f74bf27995cd12847c0
BLAKE2b-256 7ad27ff0ae93b584adc09c15976f53e8061524d6bb5103b1b93d73989b068fff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 290.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 pcst_fast2-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 eb9d3f8b790e18a9e7cfe14c31fa194651b75934f3c88426055ab3234c2db274
MD5 5cbd4abe9ce6e62d2e2c78ce0cdf394d
BLAKE2b-256 31e1ebd9ea7b1aa1c0df586366b6a9606930bcab9e3337e6b7c81932a25a9cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314-win32.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfbfb9fb022c49c08bce50ab2ad392bf771d912d04c2ed3653ffbe321201e015
MD5 494f310859f7498b20aefd7f8f1fd44b
BLAKE2b-256 20c306f67a248a9c3b04e189be5a1dc6b589384a0a9ab04637b90876f6f15fe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19c745a5997c21166061ae3df575fa9e858adea89ffa0cd23f079d1160618564
MD5 ba1ecb83e5a308d063967b09e7552ba0
BLAKE2b-256 5958cbd367277cb6adeea7af9a4820e7734c1be55e0c9b71a21603c7529c0916

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23af29e975a5b2d7a160905a291022fc9f73791f31ab43a478c2dcbbbcf008f7
MD5 039ff2b47e9377497a62f230a7bad623
BLAKE2b-256 ab2ab832b207d6a6b8843ff61ca778d2b2be39c5a9761dc96655050603d4d5d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6818ac6294bd78054c8a9c8d2928de5ccadc4b79ac6171a6fa401415e969921
MD5 f2a790776612fac3979321315ff1bfd7
BLAKE2b-256 8a436e6cc34072b5f5e19165b95c593b821fc7ee21f140f55b28f95dc0508e66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dbff5c1de80f3e92a6ffda9d38e66992f13a0f9b6a2d80a8c432b14ba02c393
MD5 279f05d3c71762177cf01c496eb3d2d5
BLAKE2b-256 7f8c3135766f7a8712d4d59bcabe78fd6a08f5a7272e6b8f1b1036edcc679b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2653c03b19a7acbed3fabd8448146758d99a5025c288127040ac94a20d0ab3c4
MD5 8b4742dc59e0a669f49370f37babed6b
BLAKE2b-256 d927fd2aa652fbb027d6a9be6604291dceaec275c3399f39b5413ebdee196b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 302.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d182e812c568291770c0f0abb4744ebcddc5472ef6746d8dceba1a4b27c2f40a
MD5 a040bc648fc8b0f17fc5141bd6aebab4
BLAKE2b-256 0dac54d64519f2f23d520e47e368220823107822a90a3ef0c21718bfbd6c191e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 282.5 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 pcst_fast2-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 de27141a8712b23805cffed07890c95eb046e426467ac8bb349a5160b879676c
MD5 42bffa1ccd36326c847d41298faee5fc
BLAKE2b-256 4433cb922cefc1fd6e59b374115d8c67a0372cedbe8d97ce45adc4100ae97541

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp313-cp313-win32.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25ded8b5ea293e92ce5f08a3eaa1887131f946162a1514c3db95f06ff12082a5
MD5 29097d3486af6d9893007e52b0ed21d8
BLAKE2b-256 6cd33d3682c03700af7074dd139db401e6e33fe765ba3e933d1f096edf8a3300

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8202ca912f28174f5f8f8fec3604ec9fec9830fec8b40b8a769b02183883c59c
MD5 f1c4eb309fe189eaa12809204c121cde
BLAKE2b-256 bd8a59ab9253f772763012f2164154b395d0c75928660e854c0fdef72893b530

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 758f14d8be7adfa9c71a1a8177bb6b52840ba243da0892bb461934483749899c
MD5 fe4440ead780def6fcaf63420670fb85
BLAKE2b-256 f521dfaf4e7bfa1926cb4534d3a9915ed32be06df16c1295b83df66435c1752a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ffd67a1c17495c42aa0a3cb3e1940031577305230f8437406e904b0d7596ed9
MD5 b977e5d253ea5c4e9eec78dbfdd59e40
BLAKE2b-256 1ba5fe42ddca4567e604e5fa2ec2795a8848580e1c20934e0ec75421b2ab1df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa6d21198a9d34e6a6f2df69171cf0cc8869b6d67f40825edddeabae7734d8be
MD5 cf67d1fd5a72dc9defd69c6ce1faa4b6
BLAKE2b-256 2c645b6c94c02eba8d6060a73f302c0e431e8ca732acd0909c93313996a34e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 701e059045d90bebf18c45dfc3d91c3d1d632987de18738a21d1e083adfe4f8f
MD5 c91fd6d5bd4bef9c632497efe44e5dc2
BLAKE2b-256 8cbe54e4db952ede6008ff0ed0d899488679a1c40fcf22fa4b771f2f41b514e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 302.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4d9fb9285a49e4b25e6a9a132c9a0aeb348ab9eedac435fe30e64ebf9decc977
MD5 b47e7c9132ab9ae8fedf9482a1ff4ae6
BLAKE2b-256 0661160747983171a87b065f0b91841a3f1213642ded3bbb2e5bbbb74c070d4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 282.4 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 pcst_fast2-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0b99194b1dd091e13f1fce84f8363ca16f6a513a7b877ffaab87da38c0495428
MD5 13c429e191fca0ba6ed256fb5e3ad20b
BLAKE2b-256 5549b7a1414b14d6f30878c4111a6cadaa29bb4d66eb6652361f354d84b867a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp312-cp312-win32.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03a9de7ff41b3f32df736c86154eac0191752e7fec79e1758e37d2b33d2ab218
MD5 8e703ab910f35f8db91523e7b3a819a2
BLAKE2b-256 87e204a37921df635f20d7f46f21b7d59a7968b14b95d4239982e7bd3fb3daa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce57f3d5a08411a8618068d807fffca85787c1d9ad251e044198c82b710380cf
MD5 2bd181dcc9dc7aabf03b652a2fd327a1
BLAKE2b-256 16dd9ac735ac7ed32e531d2b129ea406fccf373de79f189fe6a4cfaaf8544fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6d387b8895e36dc7c00969ccef85b29c3a47a17a0cb4ff9c211fe1bbfdb87a0
MD5 3fc13fef127421044b1ebf15f3a13e19
BLAKE2b-256 585af68f6af78a79a28e8df3f19532fd6e443a5581c6beedd7b4db238b35f4fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f9de686ba85c1c0d2c7901332a8d14c69161195f98f3960b222f4679aee2706
MD5 8dca0c4b824539c196d9577f8e7eae97
BLAKE2b-256 f1bb6fa5f6a6c7427d6bfc70ad06724a7bc194c473dc290ca0f43ad8dd7c369f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69c0a51de5b4728a37be69f43cca8a93a7dd10ca99e9ac17f7235c491897df7e
MD5 83ce77048e214916be27952d3c716529
BLAKE2b-256 8062c7524f0ed6931c889d0114534bdcfa814571f6ba7a6bc436f090af3f9a30

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 95cb8120028d1cf14243485a7cedb91e12c97b5ecb945426e540e1aa49db89fe
MD5 f91178d3f5294072a7c6f664271c7257
BLAKE2b-256 ba9fd48444851fe033f326c16f4baebab9ea56ddff7d0145b52b4f9414e0ba2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 299.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aaf7fe4ba6b070af8b7d2a5ef2ca0bf53b78da3ee98f899348240d0a75a16912
MD5 62f581246ec532003c9ec32249fbad24
BLAKE2b-256 33ead4e4f01ad8782db71f6a2b88acb498ca2feebf45d8d87ae9907a0eedcb00

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 281.7 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 pcst_fast2-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d6f945e6b88bc4cf475d9ed7e6e7cee8390069d84f913a09a05d48368a0e67b7
MD5 2272b7a6cabe228b882310f0ef69f763
BLAKE2b-256 8f2f958baed7a375a608ce4853430f0dec81f21cf87f7387ceefd49a2dde840e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp311-cp311-win32.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 377423474e14043a8be755a55df22e020a9658ea0fd5648ea3d29d2364ca1834
MD5 8727bb0d73628ac2e2733b0f1f254e6b
BLAKE2b-256 1dcb754b4a6fa8b389a509263af106ef3b8c11f65a93fb8b5396d4d7e62fda6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0edafc12c6b16cb4ac3338ad786ab7bdb6b2c74543c1608ce3f242696e3bd62b
MD5 2bee6164cb7fe70a3b7f72a76aa6331a
BLAKE2b-256 82e85312ec100ebecdbe53f90d5683ea6d450089fb3bd6e85024e335fc4f4c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76217960ea532b6492fdec0f3005b455ead4432327a9332ff9c8cd1c502371f3
MD5 291e285cac983d604f3387e3b7375493
BLAKE2b-256 0f09fc14914084b07882141274bc410049666c7c35d9c03af36069e3aed3b224

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e158380950fab7da19f61a3560a4a75cb4164349c0f643ad627413690b59429a
MD5 77859a576e7aa777efe2579dfd1cb3cc
BLAKE2b-256 352ed3c2fd67a3ed438dc0f25ca51164410cbd66dc03395d760c14ce3e096005

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 826c212f26500e5426a60b04ba9dd27eb066b0e2d11104dd3355830a75006d77
MD5 073bb88e638cb662e3acb0f24320fa30
BLAKE2b-256 d64e59a46218c88f15d6694c84f335213775c2f6841a20d86e41b344c81b6748

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91f72420636ea0eb8b56e6f43f3645fc3a7c8ef7bcaaa81fa3c33401f8de623d
MD5 eb510ef9bb146eb70499bbb46c60979d
BLAKE2b-256 47eb33d05cf48c4cce84274e8654a81534b62c096fa8f0305077eeb7a073a94f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 298.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bde9ae2e52a3a7c73a1cb795281df1eb041f31900e529d1716fa5c525b0b3dae
MD5 192475bed5140de3434b44831b3368c8
BLAKE2b-256 7ac905d184efc0b1dcc4f12e6e675d2b3d9fffecf998b44bfc9ba7d959739b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 280.4 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 pcst_fast2-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 29903ad42bc2c754b0803fb9ace8b1c76b08cb52d3f576d03f480a99c7997ac2
MD5 f6c7020be2d9ec31e19d273be895026c
BLAKE2b-256 83bc051e6b9e23eb91984b9d1da935386532edc7172655f2f3db695f892834b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp310-cp310-win32.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa79b8811fd43d0025eaa1051894e03a3880907f2ad7ac7202e3a450991e24b9
MD5 28733ef083e6d978c74ce8304793ab85
BLAKE2b-256 24649c6571c1cae0c633070707655fabb28b0518f0a6f69276c0ffedb9477ebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b7d67c5ec4da3c7ca3abe1ea25ffbc5bdf870fb038092572f3bf936ec0e2a1b
MD5 6cf255af8a488a14db6c7d19be120582
BLAKE2b-256 0a83f6bdbf6f3c06f4b4dc1cb61e32e6b35742d1ac99ea2eb314ca4509c45ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a489d47177913913a9c773251b5f3e20a30b39de58fd1dce36e347b432f74230
MD5 ed83316494e58616565bc6baa406eb00
BLAKE2b-256 e1375b819fdddf13a816cb160dd83e3abf935527439319cbe24265fe01d239ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5105b84fbf3fa691e64f15504086293d3762ac9324564aab0fbfd7cda38adf9
MD5 a000aa5268db2b70f9524ff1f62929e8
BLAKE2b-256 f90e556da4c7dd70ce1ee21aadec3016340c14b272e9ea060d069e0ad598092c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2bd717ec638148c7ca30572fe8e886e817e82d19da1c856cc70bfe1f87bbcce
MD5 fbad66bd249e58cd1bbaf9c11d0de0d5
BLAKE2b-256 3c8091aa8ae8cc9856d48deead1886284b41e08453b4a1c6bffd8c08203969f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 022c95887b5e0a35387309a60693a0886be994f03d89b5d4534e446335d8877b
MD5 7bb328a7a106ce7a600f87421d39ef16
BLAKE2b-256 fb34c26e8d3ba3076def346043e19bbfc2bf497e2470617016aaa7c2cb6c8e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 299.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 66f8b51cd536cabefcc4e303887543d383a1448766ee0038f08d38e2922e7169
MD5 a1717c8189ca9240995dbac6d1dd1a7e
BLAKE2b-256 9515e31ef806ac36cba2c55cd4daae10e9be3cd839115b18a48ce87af6a2d0e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pcst_fast2-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 280.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pcst_fast2-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 44f0ffc2f322634594549baca0f37735941add31187e34219145287faac3e182
MD5 5d4d7b0c62ce443bfe0e182a253faec5
BLAKE2b-256 d152f1e43d1628b3426b1f46d49d22327187405481dc540d71afbc3be9c0d1a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp39-cp39-win32.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8cbe44eba7c3b77478fec7c2172f1f5de6ca20769def2bccd8e32811e370758
MD5 afead85f3111f8dc46474f400a10ae53
BLAKE2b-256 2048b467c9561a018e57999953164991564c811c0ba60a47c87ea97a8aad3bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50856f120b838f0b7423a4b285bacfc666c27ce7f23e19c4083deeaf971add11
MD5 9ab82e6472f3cbcdbf7c296598e3c2a2
BLAKE2b-256 3c7626baea97649938b5b00e93bc8d19aab0f94bbb7a525fcfb03c6db4cda797

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dea92b9c88a645f5b8ccbb04ec3c8d0481521d105ffe8f8c82b3d37754ffd34
MD5 769f41bfd41302ee2bc1ba3aa43ccfca
BLAKE2b-256 2bf0cfb366b57c735abc77ba26afd55f3ee9f0de6b1c2fa3df085c17b104cd75

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f207bca73de8963a76416bc00fbb0731016955efcb45ac742652b459db459c0f
MD5 215366b21547747018110e2cf2889495
BLAKE2b-256 42ee8462e2c431cf368952573365e65d787838211f81bd1161ff27daaa4cbfad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 722731dbac3a31698b6881d89a461a5a893c333850c209d39208baa9a2d99b0d
MD5 a1fbbb799085b729b86b6adaa9809832
BLAKE2b-256 9376d348730db3102d7a1fd3c887720968e4de1bd8eab1a6d1798641d90c402f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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

File details

Details for the file pcst_fast2-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pcst_fast2-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8363ad25e7b6af361c09a6060fcfe1c70d88ca8c75692fa72028e5988efc4fba
MD5 0004c08efeb7bed9a48203d205d8a49f
BLAKE2b-256 44b92d2c2982ab34fced561614486ce9b84c79e7cc6263bdd467b926ff1c80b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pcst_fast2-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_and_publish.yml on mangecoeur/pcst_fast

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