Skip to main content

Upload Python Package Python application test

MDL Optimal Histogram Density Estimation

This package provides a Cython-accelerated implementation of the Minimum Description Length (MDL) optimal histogram density estimation algorithm from Kontkanen & Myllymaki (2007). It uses information-theoretic principles to automatically determine optimal variable-width bins for density estimation.

Freedman-Diaconis vs. MDL-Optimization

Features

  • MDL Principle: Uses stochastic complexity for model selection
  • Dynamic Programming: Efficient O(E²·K_max) optimization (cache parametric complexity computation, speed up)
  • Score of each Kth bin: The score of each bin is returned to understand the performance of different properties of the same dataset.
  • Variable-Width Bins: Adapts to data density variations
  • Automatic Bin Count: No manual parameter tuning required (except maximum bin count to consider $K_{max}$ and data resolution $\epsilon$)
  • Cython Acceleration: Critical operations compiled to C

Installation

You can install the package using pip:

pip install MDL-Density-Histogram

Alternatively, you can install it from source by cloning the repository and running:

# From project root directory
pip install .

Requires:

  • Python 3.11+
  • NumPy
  • Cython
  • C compiler (GCC/Clang/MSVC)

Usage Example

import numpy as np
from mdl_density_hist import mdl_optimal_histogram

# Generate sample data
data = np.random.normal(0, 1, 1000)

# Compute optimal histogram
cut_points, K_scores = mdl_optimal_histogram(data, epsilon=0.1)

# Print score of each bin
print(f"K_scores: {K_scores}")

# Visualize result
import matplotlib.pyplot as plt
plt.hist(data, bins=cut_points, density=True)
plt.title('MDL Optimal Histogram')
plt.show()

Parameters

  • data: Input array (1D numpy array)
  • epsilon: Quantization precision (default: 0.1)
  • K_max: Maximum number of bins (default: 10)

Algorithm Highlights

  • Uses Ramanujan's factorial approximation for efficient parametric complexity
  • Cache parameteric complexity to speed up computation

Paper Citation

Kontkanen, P., & Myllymäki, P. (2007).
MDL Histogram Density Estimation
Journal of Machine Learning Research 8 (2007) PDF

License

Apache 2.0 License - See LICENSE file

Project Structure

src/
├── mdl_density_hist/
│   ├── __init__.py
│   └── mdl_hist.pyx  # Core Cython implementation
└── pyproject.toml

Performance Notes

  • Precomputed parametric complexity using dynamic programming
  • Memory-optimized array operations via NumPy
  • Candidate cut point pruning for reduced search space

For implementation details, see the paper and inline code comments.

Download files

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

Source Distribution

mdl_density_histogram-1.2.2.tar.gz (11.0 kB view details)

Uploaded Source

Built Distributions

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

mdl_density_histogram-1.2.2-cp314-cp314t-win_arm64.whl (77.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

mdl_density_histogram-1.2.2-cp314-cp314t-win_amd64.whl (91.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

mdl_density_histogram-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (143.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (145.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (142.6 kB view details)

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

mdl_density_histogram-1.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (144.4 kB view details)

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

mdl_density_histogram-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl (92.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mdl_density_histogram-1.2.2-cp314-cp314t-macosx_10_15_x86_64.whl (98.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mdl_density_histogram-1.2.2-cp314-cp314-win_arm64.whl (73.8 kB view details)

Uploaded CPython 3.14Windows ARM64

mdl_density_histogram-1.2.2-cp314-cp314-win_amd64.whl (86.3 kB view details)

Uploaded CPython 3.14Windows x86-64

mdl_density_histogram-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (148.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (155.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.7 kB view details)

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

mdl_density_histogram-1.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.4 kB view details)

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

mdl_density_histogram-1.2.2-cp314-cp314-macosx_11_0_arm64.whl (87.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mdl_density_histogram-1.2.2-cp314-cp314-macosx_10_15_x86_64.whl (92.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mdl_density_histogram-1.2.2-cp313-cp313-win_arm64.whl (71.0 kB view details)

Uploaded CPython 3.13Windows ARM64

mdl_density_histogram-1.2.2-cp313-cp313-win_amd64.whl (84.1 kB view details)

Uploaded CPython 3.13Windows x86-64

mdl_density_histogram-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (147.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (153.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.3 kB view details)

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

mdl_density_histogram-1.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (151.8 kB view details)

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

mdl_density_histogram-1.2.2-cp313-cp313-macosx_11_0_arm64.whl (86.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mdl_density_histogram-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl (91.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mdl_density_histogram-1.2.2-cp312-cp312-win_arm64.whl (71.2 kB view details)

Uploaded CPython 3.12Windows ARM64

mdl_density_histogram-1.2.2-cp312-cp312-win_amd64.whl (84.4 kB view details)

Uploaded CPython 3.12Windows x86-64

mdl_density_histogram-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (148.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (153.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (147.4 kB view details)

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

mdl_density_histogram-1.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (152.3 kB view details)

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

mdl_density_histogram-1.2.2-cp312-cp312-macosx_11_0_arm64.whl (86.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mdl_density_histogram-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl (91.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mdl_density_histogram-1.2.2-cp311-cp311-win_arm64.whl (72.7 kB view details)

Uploaded CPython 3.11Windows ARM64

mdl_density_histogram-1.2.2-cp311-cp311-win_amd64.whl (85.1 kB view details)

Uploaded CPython 3.11Windows x86-64

mdl_density_histogram-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (146.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mdl_density_histogram-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (155.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mdl_density_histogram-1.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (145.3 kB view details)

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

mdl_density_histogram-1.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (153.9 kB view details)

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

mdl_density_histogram-1.2.2-cp311-cp311-macosx_11_0_arm64.whl (85.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mdl_density_histogram-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl (90.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file mdl_density_histogram-1.2.2.tar.gz.

File metadata

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

File hashes

Hashes for mdl_density_histogram-1.2.2.tar.gz
Algorithm Hash digest
SHA256 03113817d4f006bf87c2098945df51f732ac4aedceedd64ebc8e51f9e1608570
MD5 e489dbdc959b5a882d70951cd4a92016
BLAKE2b-256 497af80bfc4ce77af97305a2c4fff367deca6c1b3fa24cd1c2af448756cfe694

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2.tar.gz:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 20a4710b78041168963f2944ceb5e80fd86af738ce55f435923873dbe92941f1
MD5 a578c352240c72c06d747b1d24514507
BLAKE2b-256 9e0baf9d4715249d21db58a5813da0a126a98b06d01821476174aa41d63d905b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314t-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 36632e69db9a5c487b884881b770e2c21b1d574a21bbf79cdcaef9c6e4fd4350
MD5 50f5812c78dd0258dc4f8323439f76a9
BLAKE2b-256 bc493c6e6b4c37819590d140905d63ae465151de349e2de2e312a9a74aa1d816

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314t-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88b6baa214add4f730877391eb4ca19b2a5a387e94b4c967b96764ac264b9340
MD5 cfd59cb89dbebd8960ef36bf2ea0e152
BLAKE2b-256 0e8b2e1290128c0e7c7ba4e0cbca1f09b279ec5b7702950718f7404bac48d734

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50fee50085a6d405a1a7647306480cffc4d0beb76c3cfd717011b0dad7907adc
MD5 87f29abe8f9a9c6d6360ce7808008d49
BLAKE2b-256 78fe45e2896e757a18a9a0176a8e2edc2568a4a6931f17cac19a3c3414584070

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e2cd97f3bdcd790faf755fc0f82c53e65b134ed52520490a2106f56821382b2
MD5 6c8617f8c72a394cd677b931cb45ff82
BLAKE2b-256 a143833823d1b34340c15a3af95018c6a7ab47b2883b3cea3f014170bb69ee24

See more details on using hashes here.

Provenance

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

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 465f5fc6a41788b1fe74ac9815ff1d0d721dafb4cd47f15afdc76857adad2c80
MD5 48db75d8bb472ebf0bd76815f5da0c80
BLAKE2b-256 194f493562e999c2908dcb1d718b5950fc46db9793c75d89e8b168236f351cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aa48d8add1906e6602e39d481890d0f58188bcc2af77ffe2177176f4663c866
MD5 9cb99e687b1c6dcdf66b2c8414d96ac7
BLAKE2b-256 fb34243d14ca8bedacd8171b35a4feea3a149e1e39595324b55dcab9b66346dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a84b52f942fbe9e6025f974ca7903d056d4b6cbda0d7e4f42beba49c8486651b
MD5 0b145a4e54866e6b2ed7a0e59fc8ae2a
BLAKE2b-256 35b65df26c984ceb1910042ff197853eecd82e866ebca48a85e510a214dc0cf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 89305f2a35c3410955714971ac90a59006e8058e85b70ad268b5ac2deab8a1f0
MD5 57e6b0ab53bc5563064f5da0cc8d9d35
BLAKE2b-256 ca9bd7392ca838536ec226eb00c20f0d47e41b13045dd394ec9f179583e8cb12

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aefd7edffbda57c847f5761293826bda7e5f1ea26b7a9c6e1ba1b7e9b6312acf
MD5 187a1835b190fd5f26a4af004915b2d0
BLAKE2b-256 6eb40eaec5c0525326b7c357da4e7849891c5b3baf4f6279114357240c2854c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df0784e50d3c50ab068c18188822e325c43f417bc909f1cb63461453910f9dfd
MD5 3b2b401625585630d5382d1e9ea7d9cc
BLAKE2b-256 e7c633aaab44fdfe7fcaa686c0d276176e9c56a3285b5b29b9d883404766eb1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8dccff0a4e33348ad2ea72edabce3163d3e9d10403f82c8ca99c35aedd630198
MD5 e5863ef5e9816532a94aea13d785cda0
BLAKE2b-256 e8b7b9c2791fad6b8b083e633270e6958d40789bdf03ea2513dc6ce518d8ccc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0de266c7b55bd508c4d79416f4570f894e5e720afeb9274c4ead3d70c4e28ebf
MD5 52d1db05443de22c5594c685c437524d
BLAKE2b-256 136d6d89d421cb518975ac5b02fb651858ec14a43b0c2607a0a1322bcac89996

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31491697a26b740a3a9d0e281dc946121619ec3220d01c512330654202da8337
MD5 e9f61bff25debca07c62605760c852fd
BLAKE2b-256 399211bf65f5dff004f53d1fbee60fedb1eeb4729ab24715d5893746a40d93c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d2b495be977fc13bff78111ebb49b18e0dc9201edbbd9ac523066a441029a60
MD5 fc55c4ded512b69946400afa758c4e9d
BLAKE2b-256 71fda6168ec6ef901824f3d5036563ccf4ed4ee8fdf340069c93f4324986d264

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 83f28b265f575f87fc41c0b7921719002ee81c8dc95948fa43f4072c194190a2
MD5 2a40be8908181d8e68a58167273704bc
BLAKE2b-256 64ceb6d664f6fa7bd2c2b8199a249363a9fc9f57d5853ab4b63e9138701250e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 24b0fd5bdef763362390ff2a1534e907f362aec13f4a5e99dc72bfeba426c143
MD5 a5d2b48b9c16b8a49f49fff66dd4eca2
BLAKE2b-256 eadcda21c71ad060dcc2814b29fdf0ef453acc69612510e08f9ae919c08de435

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp313-cp313-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 731d6cc2ef43c30981dcb83df72a1f2f547e7e60a5f033f96a5f66dbfda74483
MD5 4dea0a672e3fa5dfa013aaed694c0c2e
BLAKE2b-256 372efdc75a3f0818272e83cf4b0fbe16c73bf2a10018306748206ab6680535da

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e3f80ecc31bb706a89f8168b6a777440798fc13f88547a4d7ffb86f7d4846bf
MD5 5372778cafc0702a196d104220a5bde6
BLAKE2b-256 6bf58dca139327830df0777b5ab3d17ca71631e0e07c3713997ece6118e4b435

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66ae9c6c8c7b11ff1c2e58bf33684c760393b603b45e369c7c01a3f6cc411a5c
MD5 cfe8d18e843a3412277213122ca3246d
BLAKE2b-256 48707a5a4b964c17abcd5ffb596a250f0fdc9aec7104398be02870b6cd9a8a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42053b41505628fc287acf8e555ec2918a3fc8adb8a541d005e4bb120b061d6d
MD5 1190b2f1fb78d3a96d6867d7436a6371
BLAKE2b-256 0d95bad3fad6bc8c189077daee3b8fba945aad9efa62d3ad0f664c59592b4c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7016ada29070ffcd1aa99340456d4b5467fa33d61c958b24575bcf35f0d347f1
MD5 c7ceb3ba1e2a4c28e12dd3db73a7ed9c
BLAKE2b-256 e6c57db17cdc27979a74d1d7a8820f86ad05e49beb94f66f2ebf30c8856ebcf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f87cbe742ed9dfe010a4d2073ff86542f38a61cdf6cb550ef860a77e6588a67
MD5 2e6e1ff61fe02572511fb1a50a8f664b
BLAKE2b-256 c244ee87a0b28e6500e7493fb59cff71b3294c1559df470deefe59612b4bb6ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 df25bf7422ba4ac30f5efc8beeab00a2bc96c1ddf49d7e4caf6445d086adbda0
MD5 37434cd0dd4834e5c1820fb010d89e8c
BLAKE2b-256 d089923a4f36bbef7a237f5d19d7e21664b73337eb10916f8036401c8c20f797

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 da20e65ac31f80ab508cb9845e679c5ce6242e2f5ee06a0dc3a828c6bfbbb634
MD5 b12b150748a7617b74f6c001113ceffa
BLAKE2b-256 02bc063c763c94a592291d6d74e69ff8ad7b82e432a447329e2236f4266256d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp312-cp312-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e807367784c686e2ccca4e61f00713227ba6c01c2e7b5db25c234d0fd311f86c
MD5 50446c354ce2739da3a7a965c0cb75be
BLAKE2b-256 fe265168a4631a344e3f98ab355ec0e9f0091e9f7f1b977e70b1325dd498d9e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 848fe3bae6da38ced97ac99062cba9fd0473086fef8c0701f24741773adb8376
MD5 0fcbe1eee716f761bae2bb8bcd022b65
BLAKE2b-256 7012899d15e89ddaf52b78ac72a7cf1c58530c30761ec1da341462cdc54ccc95

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82fd851f846bf27d7f6943ba8ba04826d832663f544e1b735bdf85a9c43987ae
MD5 cdecd8d76515187237db3e5ab3d4e4e6
BLAKE2b-256 d428a6b887ea71846c97c115edd3e4d243638ebcd72afd8f8fe1a05ef2b23aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c7e973498efd273572cf48be872a9d67268dfbf608b72704605e4972f03028f
MD5 2d42c983d87741b89a209e46b72cbb0f
BLAKE2b-256 ca8314635f13d0845fa50480b917bd3f04f27b49e8953f823b442dcebd5f1355

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b3297b5e6984bd12b95711a466c13f72f36f3463820b9d3a723ab2a081cf7cb
MD5 cb56536028684a4c5506d4dcf408665d
BLAKE2b-256 8e2a4c452bedb55081f9a85a2683135e450f2074ae76f0fe8dbe9de5c278d163

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3d2ab5a50bf3afe966e6824b5ab8e30a434f1b5295eb887186daa9735667696
MD5 96fcf45de9e1e84b0dab3aa5282d04c6
BLAKE2b-256 bb3fb2dbab59fec3366ab8444e27f40a4395d8b38430aea1071382a20f92f201

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b59ec5af28169ad730b15ad82540fbeef2e90d3c94cb69ca09bf5b55d557575e
MD5 17c79a4eb10444ca3abe059b030d4350
BLAKE2b-256 8fa735e56954faa255ba2bc3c54e60e37955ab6be604b67e6b1c5cc2c8643fb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b09beddd5327843e75f96f63df2ab5bba858f627677b11121e2ac016cf957ea1
MD5 6b55695cc21f3f1ebc39aaa1d7ca86ce
BLAKE2b-256 589a54926156923fba48ebc528f7f7b5903b738926f97202efaffec6489896b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp311-cp311-win_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 37ea34822f096490824d5097f9aef8bb7b25d42cd140b1bc0c845f71a18544dd
MD5 0930038f939c9c754066c03cfdf8940b
BLAKE2b-256 c0807833387ccc321fbed1dde4615e5f01728c8512ae05eb0b1fa48dcf6782be

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76bfe38d1992e60f702ee5bcc8cf6bd337fa01b4623582bd85678312e7e16724
MD5 930e6b8a71458a54401ba981cb576851
BLAKE2b-256 8571550976bf100c442572d44a8fa67f35536d8624ab54d4fa77ff94b2ec5c7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00078fd4771fa0871a6fd86593450931ee81e1649095aee5a86ac6eb3d40501b
MD5 3f7987a70ed0bb56196f7148f6bbaf8c
BLAKE2b-256 4327ef133715c4eebd6636de0f7b25eb90056a5e1091262f4f47b9546a7e72dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84be8169c313e229a686905d5293107354a80602bea59db23702d636f4a5faaf
MD5 51a22d49cc063764ee0ebc5d0e7903ec
BLAKE2b-256 768a4f7f6a6819a39c7eb7d4a633d715b16f299d572d208a23b34dff85a8aadf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd9c2afb04cd7bf796674a32c32c0c145f26bc6cbad034c4aeecd70cc99f71ae
MD5 2a8bd5b6898fefebd7e8955899a5ba90
BLAKE2b-256 93b66b50b26daba50b3b0cde29971ebc8f7dca8945ec1f4c20b7aa137844058e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f92a5fcf8ae5a50829f7d42e3595909cee5bf054edc0ed3566acf789fe5f5cbc
MD5 567bd70c5eebcdcf3e751772e2949344
BLAKE2b-256 91d25e80e7cc101bbcfa733ea24773311298a4035d2639a81a2d98d752dbadbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

File details

Details for the file mdl_density_histogram-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mdl_density_histogram-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be506a7bf258c6f9c92799659a1d8c12ef8f46ac41530926c7be93f13b748239
MD5 fe5b4aa5678ba150934c445ecf8b7ad8
BLAKE2b-256 afb72d0246ee8078e40d72ad1631a72ab871e73e54d010925a8312b6261e0485

See more details on using hashes here.

Provenance

The following attestation bundles were made for mdl_density_histogram-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on MrTarantoga/MDL-Density-Histogram

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

1.2.2 This release

41 files

1.2.1

41 files

1.2.0

41 files

1.1.5

41 files

1.1.4

41 files

1.1.3

40 files

1.1.2

30 files

1.1.1

18 files

1.1.0

18 files

1.0.0

18 files

0.3.0

18 files

0.2.3

18 files

0.2.2

18 files

0.2.1

18 files

0.2.0

35 files

0.1.2

45 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