Skip to main content

r2py_rpart

A Python port of the R package rpart (Recursive Partitioning and Regression Trees). r2py_rpart reimplements rpart's original C recursive-partitioning engine — compiled directly from a lightly adapted copy of the C sources and driven from Python via cffi — and translates rpart's R-level functions (formula handling, pruning, printing, plotting, prediction, cross-validation, ...) into Python with numpy/pandas, aiming for output that matches R's rpart as closely as possible.

Trees are fit using the same recursive-partitioning algorithm as R's rpart: classification, regression (anova), Poisson/exponential (survival), and user-defined splitting methods are all supported, along with cost-complexity pruning, surrogate splits for missing data, and cross-validated complexity tables.

Installation

pip install r2py_rpart

Prebuilt wheels are published for Python 3.10–3.14 on Linux (x86_64/aarch64), macOS (Intel/Apple Silicon), and Windows (x86_64). If a wheel isn't available for your platform, pip will build from source, which requires a C/C++ compiler (GCC, Clang, or MinGW-w64 on Windows) — no R installation is needed.

Citation

If you use r2py_rpart in published work, please cite all three of the following. The numerical core of r2py_rpart is rpart's own C code, retained unmodified — the results you obtain are produced by Therneau and Atkinson's implementation of the methods in Breiman et al. (1984).

  1. Therneau, T. and Atkinson, B. (2026). rpart: Recursive Partitioning and Regression Trees. R package version 4.1.27. CRAN. https://cran.r-project.org/package=rpart (the original package, whose C routines this port embeds)

  2. Cai, Y. and Li, J. r2py: AI-Assisted Conversion of R Statistical Packages to Python. (in preparation) (the conversion method, and the validation evidence for this port)

  3. Cai, Y. and Li, J. (2026). r2py_rpart (version 0.2.0) [Computer software]. PyPI. https://pypi.org/project/r2py_rpart/ (the exact artifact executed — please cite the version you actually ran)

For the underlying statistical method, please also cite Breiman, L., Friedman, J. H., Olshen, R. A. and Stone, C. J. (1984). Classification and Regression Trees. Wadsworth & Brooks/Cole, Monterey, CA.

BibTeX

@Manual{therneau2026rpart,
  title  = {rpart: Recursive Partitioning and Regression Trees},
  author = {Terry Therneau and Beth Atkinson},
  year   = {2026},
  note   = {R package version 4.1.27},
  url    = {https://CRAN.R-project.org/package=rpart}
}

@Article{cai2026r2py,
  title   = {r2py: AI-Assisted Conversion of R Statistical Packages to Python},
  author  = {Cai, Yufei and Li, Jun},
  year    = {2026},
  note    = {In preparation}
}

@Misc{cai2026r2pyrpart,
  title  = {r2py\_rpart},
  author = {Cai, Yufei and Li, Jun},
  year   = {2026},
  note   = {Python package version 0.2.0},
  url    = {https://pypi.org/project/r2py_rpart/}
}

@Book{breiman1984cart,
  title     = {Classification and Regression Trees},
  author    = {Breiman, Leo and Friedman, Jerome H. and Olshen, Richard A.
               and Stone, Charles J.},
  year      = {1984},
  publisher = {Wadsworth \& Brooks/Cole},
  address   = {Monterey, CA}
}

Quick start

import pandas as pd
from r2py_rpart import rpart, print_rpart, printcp, prune, plot_rpart, text_rpart

iris = pd.read_csv("iris.csv")
iris["species"] = iris["species"].astype("category")

# Classification tree
fit = rpart("species ~ .", data=iris, method="class", control={"cp": 0.0001, "minsplit": 5})
print_rpart(fit)
printcp(fit)

# Prune with a chosen complexity parameter
pruned = prune(fit, cp=0.02)

import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(8, 8))
plot_rpart(pruned, ax=ax)
text_rpart(pruned, ax=ax)
fig.savefig("tree.pdf")

See examples/classification_tree.py and examples/regression_tree.py for complete, runnable end-to-end examples (each paired with the equivalent R script and side-by-side R/Python output for comparison).

API overview

r2py_rpart mirrors the public functions of R's rpart package by name:

Purpose Function(s)
Fit a tree rpart, rpart_control
Prune prune, prune_rpart, snip_rpart, snip_rpart_mouse
Predict predict_rpart, pred_rpart, xpred_rpart
Inspect / summarize print_rpart, summary_rpart, printcp, path_rpart, labels_rpart
Plot plot_rpart, text_rpart, plotcp, meanvar_rpart, post_rpart, rsq_rpart
Diagnostics residuals_rpart, importance, roc_rpart

Testing

pip install -e . pytest
pytest tests/

Many tests compare r2py_rpart output against R's rpart running via rpy2, so an R installation with the rpart package is required to run the full parity suite.

License

r2py_rpart is a derivative work of R's rpart package and is distributed, like its upstream, under the GNU General Public License version 2 or version 3, at the recipient's option (GPL-2.0-only OR GPL-3.0-only). See LICENSE (version 2) and LICENSE-GPL3 (version 3) for the full texts, and NOTICE for attribution to the original rpart authors.

Authors

University of Notre Dame

Release files for r2py-rpart 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for r2py-rpart 0.2.0
File Size Uploaded
r2py_rpart-0.2.0.tar.gz 800.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for r2py-rpart 0.2.0
File
r2py_rpart-0.2.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
r2py_rpart-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
r2py_rpart-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
r2py_rpart-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
r2py_rpart-0.2.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
r2py_rpart-0.2.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
r2py_rpart-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
r2py_rpart-0.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
r2py_rpart-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
r2py_rpart-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
r2py_rpart-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
r2py_rpart-0.2.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
r2py_rpart-0.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
r2py_rpart-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
r2py_rpart-0.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
r2py_rpart-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
r2py_rpart-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
r2py_rpart-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
r2py_rpart-0.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
r2py_rpart-0.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
r2py_rpart-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
r2py_rpart-0.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
r2py_rpart-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
r2py_rpart-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
r2py_rpart-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
r2py_rpart-0.2.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
r2py_rpart-0.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
r2py_rpart-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
r2py_rpart-0.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
r2py_rpart-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
r2py_rpart-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
r2py_rpart-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
r2py_rpart-0.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
r2py_rpart-0.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
r2py_rpart-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 27.9 MB

Release files / r2py_rpart-0.2.0.tar.gz

Download URL r2py_rpart-0.2.0.tar.gz
Size 800.7 kB
Tags Source
SHA-256 checksum
How to use checksums
62b598ab2c2f74cc58b829c247baa4ab158c5d252856dae5e6a335abc638ea6b
BLAKE2b-256 checksum
How to use checksums
5387f27b1bf8e3148240f2f964d159c380edaba6a862215b263f93a68bd36c3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp314-cp314-win_amd64.whl

Download URL r2py_rpart-0.2.0-cp314-cp314-win_amd64.whl
Size 2.0 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c09154215bd7af3ba584c750f210518223007d19a08af161bd0ab51033cc89ad
BLAKE2b-256 checksum
How to use checksums
955fd12de214d37dce880cf2d7db59a78efe5b7278c308d79c24481fa708271a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ace514267327a2b92400a67d6fa61343b4866ff510655f6d892f17d77343d9d5
BLAKE2b-256 checksum
How to use checksums
4c568bffad9781cfd49a6dd1c263703e509f6bb4780e843c8dfee40238212f30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
75c5b03314661d3d4db42e3715090ce5d3f47777638d0f9ef7b2c0c0f2dc6405
BLAKE2b-256 checksum
How to use checksums
33a9d777e1bf4c4846828ab663f2f622a59ca4e519810d16975bdc61b2aefb50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 280.0 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c3462d5983b0efb4681cf4fac770b634fa5acc44b8204b4c9939a7ddee6d31d9
BLAKE2b-256 checksum
How to use checksums
682c9fa0a82b3ae13dfb4ac148ba88ceab6e51168d459e7d20922a2182ea74e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.2.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 273.5 kB
Tags CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
aeaccb64b60d97337bb5eac4d3da83aebe1c32d81668f4a90bddac2f18ff47c2
BLAKE2b-256 checksum
How to use checksums
b3969e4985483feccc35b673d26e5cf22afb23fa96f5d13774c6b65314538c45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Size 159.7 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2173dcc2ff2b1ccd2d893768a72d28b36b8255a9d9defaa7f7f14d6bf88a7ed4
BLAKE2b-256 checksum
How to use checksums
5e9f98040a50117ad8a9df15c2e134142c6c33703fadc72d02baf390987d3bdd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL r2py_rpart-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 163.9 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
e488950fb6f2a8bd9d55c011332c870cf584c38858d4340938b4a8276f33456d
BLAKE2b-256 checksum
How to use checksums
52e306704293b2bca14ae8b753593c338130b50a2d259a1a8975dc753347c4f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp313-cp313-win_amd64.whl

Download URL r2py_rpart-0.2.0-cp313-cp313-win_amd64.whl
Size 1.9 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
77ae0c64b4d32950dd749c3ba1511cc075bec7ab23d2b6e318f40344c4991de3
BLAKE2b-256 checksum
How to use checksums
f19f4872ea7b02fbd45e04d641a474dc9e4c7c20d52c18d8941763a05ee136bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
aab71c5203bc87323a33d930aa5cb330228239cdd126c11bd4b6980bafdd8ad6
BLAKE2b-256 checksum
How to use checksums
0f5362ede8be70814658a1acefe9962306b4668669dae3d840e631f649f46c52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
815d99af2a2be3e456efd1eaff335b6b58146a886c48cc14a33f0b6a7187d5e9
BLAKE2b-256 checksum
How to use checksums
96fdd731ad046dcdcd817b6726c298f21c8f537f348e806edadae857c6493b49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 280.0 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3ac8af5d8b32f82aa61724ed7aa643f286cef239c395429074726144797a39c6
BLAKE2b-256 checksum
How to use checksums
a7178558fb39981a0dfd906036ceb569a6cfbe142942136026e0009c8c9ddd86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.2.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 273.5 kB
Tags CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
298c8b05f3b2296c02e1fac461b204b90cf0aaf8de4af45e9b1a2f9b64458145
BLAKE2b-256 checksum
How to use checksums
7803f2f8be909554452748a94d292ca116abf7dfebce4e41addd5a23f13c2d5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 159.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9f0b488f83fccc95a554c514fa788100c37453e24f38380b1f5c9e66e55488ef
BLAKE2b-256 checksum
How to use checksums
7335e1dbe010c8ed3d67c68aee9318bc103e42a10fe40a9aa095da051297066f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL r2py_rpart-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 163.7 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
50c78508c16eecec399e75ccfb4d28bb98a34132dbd5b59ae69dc5f547d4b057
BLAKE2b-256 checksum
How to use checksums
174193a4c0bc5ab9b61af44ea327b083d528c64db12c79d9371e6adefb5b8257
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp312-cp312-win_amd64.whl

Download URL r2py_rpart-0.2.0-cp312-cp312-win_amd64.whl
Size 1.9 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
6161ff906ce67fe6e693564cb025948ac6717f1a0411e119ca5fd33f18260299
BLAKE2b-256 checksum
How to use checksums
28e0b93dbeae31663156c98684de995add1d30dac961d82a38df75d3b2049846
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3afb72ca774d5205ae5046b0926414e02faa25a7f30e9ca26b8615b46de1ef72
BLAKE2b-256 checksum
How to use checksums
5f6106179e135f9c50917e726b451d7cf2949409f22206a20f625864758cfaa6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
722b8adeb8e442a4b45871e0ceebf167831e5b720f2b4f24fec5f4ec4f94b1c8
BLAKE2b-256 checksum
How to use checksums
77772ba55720827dbd3f097aed9dec61e1ebd4b7fc112c6d24a3b3d7651a9a1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 280.0 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cf34e4d6c13cf797e351feb35327bfc78dcbb9830ac9ed11d74c57605f796959
BLAKE2b-256 checksum
How to use checksums
368bf7cdef6f31c2b04ad845def380a8d1ce252ee5a021cfd0d5d0b81dcf2692
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 273.5 kB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
055c97ca1869b1199bf13793d2e8a33b5b0aa8419ec9e1bcb7d5d43124effc3c
BLAKE2b-256 checksum
How to use checksums
ab020c90321080090123b3d02ca50e03f0d0e6b004404f59d5d981b892d47009
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 159.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6b83a59a17e67ea392c050343647611469e7a961ea7fce127217975ab32ad4be
BLAKE2b-256 checksum
How to use checksums
fd0c29f92b8081add2645df2b22ace80a8e1b47cbbb98b46f015066530425c83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL r2py_rpart-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 163.7 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f4be4684131efad59870bbf5639a8ccd73f1ab1857e28a370c606397f5b2cb83
BLAKE2b-256 checksum
How to use checksums
9e80345f073098a2a3dd48528489470616fcb6e5ae5fd752e34e89dcd41a309a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp311-cp311-win_amd64.whl

Download URL r2py_rpart-0.2.0-cp311-cp311-win_amd64.whl
Size 1.9 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a1109f1cdc71f72e96a19d9314410f09c0583e62ac166faa24132ff90dfe5d20
BLAKE2b-256 checksum
How to use checksums
886fb647b03a54fc5127426dc7f76741784e495500b1b38d42b59e0aa7efd0c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7cccd040d1a45507ba3058cc571cc38f73bbc4b34e059a220ff8c65592b8c31d
BLAKE2b-256 checksum
How to use checksums
9ec5705124836889bbc1c5e6d51332f644bfc01c549367f7935cbebdb6927045
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e41cf001a2031baa7a1e5f7b0f72fae1ad99ef2680c3ac43afc213f17f47c636
BLAKE2b-256 checksum
How to use checksums
c16fe215749f25bf755ba48c644c426528ce3566a77f82d518304affc43a4cda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 280.0 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b95fda06e30f931ec410e9fedf6f609fb6d8a2e8efbe837a934a6c77dfe58637
BLAKE2b-256 checksum
How to use checksums
e007ef8782b0c885680c50a1d9739d4629d984adcadfaf67d7690a70dc1e2166
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.2.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 273.5 kB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8e600fd4072bb999d02fb221c56422869b93f087c582ddd5836a3c03fb5e8870
BLAKE2b-256 checksum
How to use checksums
dd9bf856a74ee6701e71652e8e3569845a15315ef37d0f3ce6b65060644ff066
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 159.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f77f22aa9b70b49eed844e8e18a2dfca2f94bac6099822c56105aa9b2d150e98
BLAKE2b-256 checksum
How to use checksums
a6ef357613aa65230a469de3aafafc611fed12c227d8ce8be717596439cff14c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL r2py_rpart-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 163.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
fe5e6a6860bfb8032a56bd7c7d19d1e636cf543bc3fd2102b567e861d2faec65
BLAKE2b-256 checksum
How to use checksums
8dbfbf05f088e96d70d0595a9b68f7c48997259a3a02078a0de0c9d59382d5b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp310-cp310-win_amd64.whl

Download URL r2py_rpart-0.2.0-cp310-cp310-win_amd64.whl
Size 1.9 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
53a09edb1ff5adc6d99d629195def3c7fbd0a2a782b496bef47ebce3025d06b7
BLAKE2b-256 checksum
How to use checksums
929d39579ec27bcc435bfe81f8bd0406f41a752c3e2d20b6c653e598f8ea8acc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d09d70042f15cda332da7fd709e8fedecf5ba306082c21223a02fd73f7b15443
BLAKE2b-256 checksum
How to use checksums
fefd3ec73cd128832b43c245cd75e37d71d597297761625564af9713d18dceda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4273c2b8691b08375bb63e28d6ce76d909841b8b3a72c06fa129837e78033770
BLAKE2b-256 checksum
How to use checksums
b85684eff040f0e302c12aa3b0333036114a41ad60db85bd33d4b261a69f144b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 280.0 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e24447d0bce9e5fc26ff035683cfa1faca62575def9b2ed9fb4c29dd02d8ca09
BLAKE2b-256 checksum
How to use checksums
0ab865dd1a26f8c9f12225ff1286784711f6fe0db5b34e48242a33afbd15e237
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 273.5 kB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0989f63928d317f3453d4e43e8d2acf2da158ad9dcf2b89bb2d37ddbf4c875ac
BLAKE2b-256 checksum
How to use checksums
ccc9a3e02c7028795df054c5804122de0403d0c27f7e288a41398da3630c2dbe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 159.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3e45c5b59cab43b4d58dea5e841d5ec2bf32ac523ed88ccceeb5a2ee553e55ad
BLAKE2b-256 checksum
How to use checksums
1ee40cd72cf10b4ac768f4c7b898a72b3656048423f50c9493635747c291aedb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release files / r2py_rpart-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL r2py_rpart-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 163.6 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
be015d2f5108a3e882f2cdd07cc66694badc426610448421278d9dab088926c9
BLAKE2b-256 checksum
How to use checksums
62e3db4c72b200c93dc50d3b65b33834056daeac491ca07f73156793cf7d391f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 16, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.0 This release

36 release 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