Skip to main content

Introduction

metis-rs is a pure-Rust multilevel k-way graph partitioner inspired by METIS. This package is a thin PyO3 wrapper around it — no C dependencies, no CMake, no local METIS build. pip install metis-rs gets you a working partitioner via prebuilt wheels.

All partitioning logic lives in the metis-rs Rust crate, pulled in here as a normal Cargo dependency. Nothing is reimplemented in Python — bumping the metis-rs version in Cargo.toml is the only thing needed to pick up upstream changes.

Installation

Installation from pip:

pip install metis-rs

Installation from source using uv (requires a Rust toolchain):

uv sync

Importing the python package after installing:

import metis_rs

Link to documentation

Tutorial

  • Quickstart — build a graph, partition it, visualize the result, weighted graphs, and a grid/mesh partitioning example.

Usage

import metis_rs

# A simple 4-vertex path graph: 0-1-2-3, stored in CSR format
xadj = [0, 1, 3, 5, 6]
adjncy = [1, 0, 2, 1, 3, 2]
g = metis_rs.Graph(4, xadj, adjncy)

edge_cut, part = metis_rs.partition(g, 2)
assert len(part) == 4
assert all(p < 2 for p in part)

Weighted graphs

import metis_rs

g = metis_rs.Graph(
    3,
    [0, 2, 4, 6],
    [1, 2, 0, 2, 0, 1],
    adjwgt=[5, 1, 5, 1, 1, 1],
    vwgt=[10, 1, 10],
)
edge_cut, part = metis_rs.partition(g, 2)

API

Graph(n, xadj, adjncy, adjwgt=None, vwgt=None)

CSR (Compressed Sparse Row) graph representation.

Argument Type Description
n int Number of vertices
xadj list[int] Row pointers (length n + 1)
adjncy list[int] Column indices (neighbor lists)
adjwgt list[int], optional Edge weights, aligned with adjncy (default: all 1)
vwgt list[int], optional Vertex weights, length n (default: all 1)

Graph also exposes .n and .edge_cut(part).

partition(graph, nparts) -> (edge_cut, part)

Partitions graph into nparts parts. part[u] is the 0-based part ID assigned to vertex u.

Development

uv sync --group test
uv run pytest

Rebuilding after editing the Rust source:

uv sync

Building the docs

uv sync --group docs
uv run sphinx-build -b html docs docs/build/html

Open docs/build/html/index.html, or see the published docs at https://pjuangph.github.io/metis-rs-py/.

License

MIT

Download files

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

Source Distribution

metis_rs-0.1.0.tar.gz (60.1 kB view details)

Uploaded Source

Built Distributions

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

metis_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp314-cp314-win_amd64.whl (163.9 kB view details)

Uploaded CPython 3.14Windows x86-64

metis_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (529.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

metis_rs-0.1.0-cp313-cp313-win_amd64.whl (163.1 kB view details)

Uploaded CPython 3.13Windows x86-64

metis_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (527.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

metis_rs-0.1.0-cp312-cp312-win_amd64.whl (163.4 kB view details)

Uploaded CPython 3.12Windows x86-64

metis_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (526.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

metis_rs-0.1.0-cp311-cp311-win_amd64.whl (166.1 kB view details)

Uploaded CPython 3.11Windows x86-64

metis_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (530.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

metis_rs-0.1.0-cp310-cp310-win_amd64.whl (165.7 kB view details)

Uploaded CPython 3.10Windows x86-64

metis_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

metis_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (310.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

File details

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

File metadata

  • Download URL: metis_rs-0.1.0.tar.gz
  • Upload date:
  • Size: 60.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for metis_rs-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e75788b0a906cbd28f66cd5cb3955777c511de2d4dc66a30c1b945ca13e5a113
MD5 da54c35fccd3d6da967be1b50c68dcc8
BLAKE2b-256 36b96bd36b10e34b6c2a49e61115cd38caa57350b6ead6e06d8c7f4a2aab11bd

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af916d1ff9cce284a2b24a09fefac19f4968fc7866b20249a9851166dc9b9c5f
MD5 b461ad9d1d54bc1ba348885d0cd25bb8
BLAKE2b-256 5f591848cb4e2c74039f947babc3c65e384e2b9867953eca162e122c635c175f

See more details on using hashes here.

Provenance

The following attestation bundles were made for metis_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0956ad9563bb6e927f17c84621da200129261f6697250f0dd0691b6b9167aa78
MD5 c49f2aa30b471e0c2b673709c6d6a08c
BLAKE2b-256 0efa3ae5bfb1aae30f26bc8b771b9f6a6e1946c397acc55a43d73f2692d1b529

See more details on using hashes here.

Provenance

The following attestation bundles were made for metis_rs-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09f51e94dd7f93eaea87f664a65d64d6b02c4adb9301bb46d0450ca86a197360
MD5 4d49bac937d1c649a2f1a2bca71f6f43
BLAKE2b-256 8c06277ae8165e85cf44b3020ca87815a52785574d5f332fc693edecb08c3620

See more details on using hashes here.

Provenance

The following attestation bundles were made for metis_rs-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

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

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb448fbd4e7e020f7ea17b790aab68297bd0ab2b10a5bca885c0c544990a9098
MD5 3d67f3210970bd9fb0051f4c36ddd7c4
BLAKE2b-256 bb72e5cbcd3ecc68245de11cce35d56bec8983469471c7a1b8aeea20a7cf6b60

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

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

File metadata

  • Download URL: metis_rs-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 163.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for metis_rs-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e4aac329f3b1e88d2f75f86963af8b00afb91b9db2e8ab1b63c38d4efdc03d17
MD5 060b732f1b5a085f45ab587aefe8e973
BLAKE2b-256 ecd34182f31313fe6315af9492e537a14687d8472ee92979c0fedb50af0ad477

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99b0ef94b6dc507a772a0fbc6e293717960d8c1a84e12276108b7b41d22c12b1
MD5 429ffa8461c68dd4f6113e420a8f045d
BLAKE2b-256 c4d7ad5b10cb3fa10780b217a2802db0ed8724bed24b48faf74170c20f238a44

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d4f15ce0498f03b77a128ca0c4f707b4a4a42603fcd8cea70a2a75f66adc27c4
MD5 12cc96430153ff3742ddc2e7b691ff81
BLAKE2b-256 0ed0c8843b85a0e48f47ee2da80af0dab505d3dcb655e7f14641fd20edfe263d

See more details on using hashes here.

Provenance

The following attestation bundles were made for metis_rs-0.1.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

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

File metadata

  • Download URL: metis_rs-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 163.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for metis_rs-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5aafa188544351e30cf7793a66e3e0a8a36112dd99a6077ca46abc6240bf1cc5
MD5 07320e7e939ea2797fba511f77aa6675
BLAKE2b-256 fbdd6fb90bf941b7914c1576543b51a8a6b33442a8e0e0c208bb153c017c1c6e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5788aeb9729f139e5fdcbe65cd7408c6147a53d9485ecde4a31a5b2fdc501dc0
MD5 81862b3b12d63476c31d4ca215320a9f
BLAKE2b-256 7a62cdfd04e5b5b4c8355d660d78be28ddec88f304ce1ceddbb0c51c65e51808

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a3e6c0cc38f7dcd7710345463e2beb24cc1c983e71388e3acb543ea17db172da
MD5 6d216356726bd73d33ee99da703fa231
BLAKE2b-256 8f3c159d357b131dcb6ac8c352b29b4d466cf74ff430d36eb243105b77963cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for metis_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

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

File metadata

  • Download URL: metis_rs-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 163.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for metis_rs-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f3ec3eb29737e1e97a4811d577f68b579c04a36fde4e7717369617c477116ca8
MD5 8a694b893c6f332b5bf40791c638ffce
BLAKE2b-256 42ab506049bde1c564e45e7d35ff9d8dff668432f6e18e442864c359329f6cb3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0764c06292c18c4bbffca8cb322acc5362e4df6f43f9d46d1433f4990f86337f
MD5 ee8e95d30ad3a4f3c2760885d715f203
BLAKE2b-256 19d4d37a40bb261a78224ce20fab9c72c65969f154691ae5c77049ca46f6273d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3f6164e6f1855789e24b2efecde712f1556931a87ac7059e6e8910c25fefcb29
MD5 6097afde8b7644a4cce5c5483b0e4e45
BLAKE2b-256 ea13e9392ddd67b7a72061c760c2b680797dc8ab1b871690c45c7fad0adf1c0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for metis_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

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

File metadata

  • Download URL: metis_rs-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 166.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for metis_rs-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 462c7f92352b8758fd3531f6782df96fdaf4499829e09241a57c48953164b9de
MD5 12e0acc0dbbc79f16499e69e3b2a8646
BLAKE2b-256 a7f28312f17544ab557eaed62dc0c39b0ae157120be3ce4d5786eb603c9ca154

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2605ddc8684aa0a1fb030695288dc1c9ede31bdcbd8267faf07e0984cd825074
MD5 23f80e5664027b5b99e49a824d920e61
BLAKE2b-256 e776afea17c796344faa427ef96d8779d52490167c41f8d1540ab97aaea714f8

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6d0dfe158f5f27c1df8f7c020c5b95ab0270d2fedfe2a5eb3d3ae5d1108bcde1
MD5 b8cd9d58cfc6d201fc51f7bdad59a83e
BLAKE2b-256 ec0f1e5cf1f8ca5981ce3d613e1808163d8af7828c7a228586aa769fc6cbce19

See more details on using hashes here.

Provenance

The following attestation bundles were made for metis_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

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

File metadata

  • Download URL: metis_rs-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 165.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for metis_rs-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 030893bd71c25511944eb1abe63d9045250538dc2bc34dc7ff96de2bdcb62a11
MD5 485d497c6c23dae764a4f335bf1a2996
BLAKE2b-256 6b3fccc2af379458ce277e535fc64e17c7e6295933966ec7bffa5e58ab57d586

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13747a015a131e53cfb317973efdb8277b36e19f9e406221d9fdaa2cf81efbb4
MD5 d2c7b693ad151533e7a406051d300dca
BLAKE2b-256 818110af0db6a75c0c8c96a3d3549fa32351efc9bb4a83ea2a8b2afa99f92ef3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on pjuangph/metis-rs-py

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

File details

Details for the file metis_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for metis_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 281a6a48691c4dfde9e0699a5e97f72b7ddeb9852ef78f2ff5968aa070270ee3
MD5 c9cea7e3c5e5f3c50f0648269d2465cb
BLAKE2b-256 860275046e458275361876c18ac8b6b6ca31709d4bba319a0eb54414946be083

See more details on using hashes here.

Provenance

The following attestation bundles were made for metis_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on pjuangph/metis-rs-py

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

Release history Release notifications | RSS feed

This release

0.1.0 This release

20 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page