Skip to main content

An intuitive library that seamlessly adds plotting capabilities and functionality to any model objects or outputs, compatible with tools like scikit-learn, XGBoost, TensorFlow, and more.

Project description

Welcome to Scikit-plots 101


📘 Docs, Examples Try/Install Scikit-plots :

Single line functions for detailed visualizations.

The quickest and easiest way to go from analysis...

Explore the full features of Scikit-plots: https://scikit-plots.github.io/dev/devel/index.html

⚠️ Partially support Python 3.8 3.9 without some packages in cexternals, externals due to externals lib dep (e.g., astropy.stats, arrat-api-compat, arrat-api-extra)

🐋 Scikit-plots Runtime Docker Images :

🐳 Explore on Docker Hub Pre-built Docker images for running scikit-plots on demand — with Python 3.11.

🔎 Run the latest scikit-plots container — with full or partial preinstallation — interactively:

## docker run -it --rm scikitplot/scikit-plots:latest
docker run -it --rm scikitplot/scikit-plots:latest -i -c "scikitplot -V"
## docker run -it scikitplot/scikit-plots:latest
docker run -it -v "$(pwd):/work/notebooks:delegated" -p 8891:8891 scikitplot/scikit-plots:latest

📥 User Installation :

🧠 Gotchas:

  • ⚠️ (Recommended): Use a Virtual Environmentt (like venv pipenv ) to Avoid Conflicts.
  • 🚫 Don't use conda base — it's prone to conflicts.
  • ✅ This avoids dependency issues and keeps your system stable.

📦 Anaconda , Conda , Miniconda , Miniforge , Mamba , Micromamba :

See Also: conda-environment-guidelines

## (conda, mamba or micromamba) Create New Env and install ``scikit-plots``
## Create a new environment and install Python 3.11 with IPython kernel support
# conda create -y -n py311 python=3.11 ipykernel
# mamba create --yes --name py311 python=3.11 ipykernel
micromamba create -y -n py311 python=3.11 ipykernel
## (conda, mamba or micromamba) Activate the environment
# conda activate py311
# mamba activate py311
micromamba activate py311
## (conda, mamba or micromamba) Deep Explore scikit-plots
# conda repoquery search -c conda-forge "scikit-plots=0.4.0" --json
# mamba repoquery search -c conda-forge "scikit-plots=0.4.0" --json
# micromamba repoquery search -c conda-forge "scikit-plots=0.4.0" --json
# micromamba repoquery search -c conda-forge "scikit-plots=0.4.0" --json --platform osx-64
micromamba repoquery search -c conda-forge "scikit-plots=0.4.0" --json \
  | jq -r '.result.pkgs[] | "\(.subdir)  \(.build)"'
## (conda, mamba or micromamba) Install scikit-plots
# conda install -y conda-forge::scikit-plots
# mamba install --yes --channel conda-forge scikit-plots
micromamba install -y -c conda-forge scikit-plots

# Cause numpy>=2.0.0 but support old numpy
# pip install numpy==1.26.4
## (conda, mamba or micromamba) Install newest compatible build scikit-plots
# conda update -y conda-forge::scikit-plots
# mamba update --yes --channel conda-forge scikit-plots
micromamba update -y -c conda-forge scikit-plots

# Cause numpy>=2.0.0 but support old numpy
# pip install numpy==1.26.4
## (conda, mamba or micromamba) Verify version and location scikit-plots
# conda list | grep scikit-plots
# mamba list | grep scikit-plots
micromamba list | grep scikit-plots
micromamba clean --index-cache -y
# or stronger
micromamba clean -a -y
## (conda, mamba or micromamba) Explore scikit-plots
# conda search conda-forge::scikit-plots
# mamba search --channel conda-forge scikit-plots
micromamba search -c conda-forge "scikit-plots=0.4.0"

(Optionally) 📦 UV install all dependencies:

## (Optionally) uv dep for Python 3.11
sh -c 'curl -LsSf https://astral.sh/uv/install.sh | sh'

(Optionally) 📦 Pipenv install all dependencies:

See Also: pipenv-environment-guidelines

## (Optionally) Pipenv dep for Python 3.11
# wget https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/docker/env_pipenv/Pipfile
curl -O https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/docker/env_pipenv/py311/Pipfile
curl -O https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/docker/env_pipenv/py311/Pipfile.lock
pip install pipenv && pipenv install
## (Optionally) Pipenv Activate the environment
pipenv shell

📦 From PIP :

✅ The easiest way to set up scikit-plots is to install it using pip with the following command:

✅ Installation by pypi , pypi.anaconda.org or github :

- By pypi :

## Now Install scikit-plots (via pip, conda, or local source)
# pip index versions scikit-plots
pip install scikit-plots

## Cause numpy>=2.0.0 but support old numpy
# pip install numpy==1.26.4

- By pypi.anaconda.org ( with runtime deps ):

## (Optionally) Install the lost packages "Runtime dependencies" or use `pipenv`
## https://github.com/celik-muhammed/scikit-plots/tree/main/requirements
# wget https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/requirements/default.txt
curl -O https://raw.githubusercontent.com/scikit-plots/scikit-plots/main/requirements/default.txt
pip install -r default.txt
## Try After Ensure all "Runtime dependencies" installed
pip install -U -i https://pypi.anaconda.org/scikit-plots-wheels-staging-nightly/simple scikit-plots

## Cause numpy>=2.0.0 but support old numpy
# pip install numpy==1.26.4

- By GitHub URLs :

GitHub URLs @<branch> or @<tag> suffix or Archive URLs (releases/tags suffix) to specify a version

- by GitHub Branches: @<branch>
## pip install git+https://github.com/scikit-plots/scikit-plots.git#subdirectory=libs/skinny@<branches>
## If you want to install the latest version from GitHub
pip install git+https://github.com/scikit-plots/scikit-plots.git@main
## (Added C, Cpp, Fortran Support) Works with standard Python (CPython)
pip install git+https://github.com/scikit-plots/scikit-plots.git@maintenance/0.4.x
## (Works with PyPy interpreter) Works with standard Python (CPython)
pip install git+https://github.com/scikit-plots/scikit-plots.git@maintenance/0.3.x
pip install git+https://github.com/scikit-plots/scikit-plots.git@maintenance/0.3.7
- by GitHub Tags: @<tag>
## pip install git+https://github.com/scikit-plots/scikit-plots.git#subdirectory=libs/skinny@<tags>
## If you want to install one of archived version from GitHub
pip install git+https://github.com/scikit-plots/scikit-plots.git@v0.4.0
pip install git+https://github.com/scikit-plots/scikit-plots.git@v0.3.9rc3
pip install git+https://github.com/scikit-plots/scikit-plots.git@v0.3.7

📁 From Source Code (e.g., .zip, .tar.gz):

✅ Installation by Archive URLs (.tar.gz) or GIT Clone :

🐍 Pitfalls:

  • 📥 Archive (Gzipped Source Tarball .tar.gz) (e.g., GitHub Source Code Archive, PyPI Source Code Archive, pypi.anaconda Source Code Archive)
  • 💡 You can download GitHub Source Code Archives (.zip or .tar.gz) by specifying a branch, tag, or a specific commit ID.
  • 🛠️ After unzipping the GitHub Source Code Archive (similar to cloning), remember require to run git submodule update to initialize submodules, If Needed.
  • ↔️ Alternatively, PyPI Source Code Distribution (.tar.gz) are also available for direct installation via PyPI (sdist), if applicable.
  • ↔️ Alternatively, pypi.anaconda Source Code Distribution (.tar.gz) are also available for direct installation via pypi.anaconda (sdist), if applicable.
  • 🔄 Alternatively, (git clone ...) you can install scikit-plots directly from the GitHub Source Code Repository to access the latest updates.

- By Source Dist (.tar.gz) (with/without build deps )

## pip install package Installs wheel (.whl) if available, else source
## pip install --no-binary=package package # Forces source installation only the specified package
pip install --no-binary=scikit-plots scikit-plots
## pip install --no-binary=:all: package # Forces source installation for Package + all dependencies
## This forces scikit-plots and all its dependencies to be installed from source (from .tar.gz).
pip install --no-binary=:all: scikit-plots
## (Optionally) Install offline downloaded a source distribution (.tar.gz) of scikit-plots
## https://pypi.org/project/scikit-plots/#history
## pip install --require-hashes -r requirements.txt
## sha256sum scikit_plots-0.4.0.post7.tar.gz
## shasum -a 256 scikit_plots-0.4.0.post7.tar.gz
## Get-FileHash scikit_plots-0.4.0.post7.tar.gz -Algorithm SHA256
## scikit-plots==0.4.0.post7 --hash=sha256:<your-computed-hash-here>
# wget https://files.pythonhosted.org/packages/bd/a0/f0d8ee33124071f93c84eeae8aa729978ca5db9b34998437effd1ead344b/scikit_plots-0.4.0.post7.tar.gz
curl -O https://files.pythonhosted.org/packages/bd/a0/f0d8ee33124071f93c84eeae8aa729978ca5db9b34998437effd1ead344b/scikit_plots-0.4.0.post7.tar.gz
pip install ./scikit_plots-0.4.0.post7.tar.gz

- By GitHub Source Code: (with build deps )

GitHub Source Code Archive URLs: (e.g., .zip, .tar.gz) (with build deps )

Source code archives are available at specific URLs for each repository. For example, consider the repository scikit-plots/scikit-plots .

GitHub Source Code Repository Cloned: (with build deps )

## Forked repo: https://github.com/scikit-plots/scikit-plots.git
git clone https://github.com/YOUR-USER-NAME/scikit-plots.git
cd scikit-plots
## (if Necessary) Add safe directories for git
# bash docker/script/git_add_safe_dirs.sh
git config --global --add safe.directory '*'
## (Optionally) Git Submodules Clone/Download/Initialize Configs, Not Needed Every Time.
# git submodule update --init --recursive
## (Recommended) Ensure venv (e.g. conda, venv, pipenv)
# pip install -r ./requirements/all.txt
pip install -r ./requirements/build.txt
## Install the package in the current directory, ignore pip's cache,
## and show detailed logs of the installation process.
## If you have a local clone of the repository
pip install --no-cache-dir . -v

🧊🔧 Also possible to include optional deps with editable mode:

## (Optionally) Install the current package in editable mode,
## using the current environment for building, and ignore cached builds
pip install --no-cache-dir --no-build-isolation -e . -v
## (Optionally) Install the current package in editable mode,
## using the current environment for building, and ignore cached builds
## https://github.com/celik-muhammed/scikit-plots/tree/main/requirements
## For More in Doc: https://scikit-plots.github.io/dev/devel/guide_qu_contribute.html
python -m pip install --no-cache-dir --no-build-isolation -e .[build,dev,test,doc] -v
## https://github.com/celik-muhammed/scikit-plots/tree/main/requirements
## [cpu] refer tensorflow-cpu, transformers, tf-keras
## [gpu] refer Cupy tensorflow lib require NVIDIA CUDA support
pip install "scikit-plots[cpu]"

Sample Plots

plot_feature_importances.png plot_classifier_eval.png plot_classifier_eval.png
plot_roc.png plot_precision_recall.png
plot_pca_component_variance.png plot_pca_2d_projection.png
plot_elbow.png plot_silhouette.png
plot_cumulative_gain.png plot_lift.png
plot_learning_curve.png plot_calibration_curve.png

Scikit-plots is the result of an unartistic data scientist's dreadful realization that visualization is one of the most crucial components in the data science process, not just a mere afterthought.

Gaining insights is simply a lot easier when you're looking at a colored heatmap of a confusion matrix complete with class labels rather than a single-line dump of numbers enclosed in brackets. Besides, if you ever need to present your results to someone (virtually any time anybody hires you to do data science), you show them visualizations, not a bunch of numbers in Excel.

That said, there are a number of visualizations that frequently pop up in machine learning. Scikit-plots is a humble attempt to provide aesthetically-challenged programmers (such as myself) the opportunity to generate quick and beautiful graphs and plots with as little boilerplate as possible.

Okay then, prove it. Show us an example.

Say we use Keras Classifier in multi-class classification and decide we want to visualize the results of a common classification metric, such as sklearn's classification report with a confusion matrix.

Let’s start with a basic example where we use a Keras classifier to evaluate the digits dataset provided by Scikit-learn.

# Before tf {'0':'All', '1':'Warnings+', '2':'Errors+', '3':'Fatal Only'} if any
import os; os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
# Disable GPU and force TensorFlow to use CPU
import os; os.environ['CUDA_VISIBLE_DEVICES'] = ''
import tensorflow as tf
# Set TensorFlow's logging level to Fatal
import logging; tf.get_logger().setLevel(logging.CRITICAL)
import numpy as np
from sklearn.datasets import load_digits
from sklearn.model_selection import train_test_split

# Loading the dataset
X, y = load_digits(
  return_X_y=True,
)
# Split the dataset into training and validation sets
X_train, X_val, y_train, y_val = train_test_split(
  X, y, test_size=0.33, random_state=0
)
# Convert labels to one-hot encoding
Y_train = tf.keras.utils.to_categorical(y_train)
Y_val = tf.keras.utils.to_categorical(y_val)
# Define a simple TensorFlow model
tf.keras.backend.clear_session()
model = tf.keras.Sequential([
    # tf.keras.layers.Input(shape=(X_train.shape[1],)),  # Input (Functional API)
    tf.keras.layers.InputLayer(shape=(X_train.shape[1],)),
    tf.keras.layers.Dense(64, activation='relu'),
    tf.keras.layers.Dense(64, activation='relu'),
    tf.keras.layers.Dense(10, activation='softmax')
])
# Compile the model
model.compile(
  optimizer='adam',
  loss='categorical_crossentropy',
  metrics=['accuracy'],
)
# Train the model
model.fit(
    X_train, Y_train,
    batch_size=32,
    epochs=2,
    validation_data=(X_val, Y_val),
    verbose=0
)
# Predict probabilities on the validation set
y_probas = model.predict(X_val)
# Plot the data
import matplotlib.pyplot as plt
import scikitplot as sp
# sp.get_logger().setLevel(sp.logging.WARNING)  # sp.logging == sp.logger
sp.logger.setLevel(sp.logger.INFO)  # default WARNING
# Plot precision-recall curves
sp.metrics.plot_precision_recall(
  y_val, y_probas,
)
quick_start_tf.png

Pretty.

Maximum flexibility. Compatibility with non-scikit-learn objects.

Although Scikit-plot is loosely based around the scikit-learn interface, you don't actually need scikit-learn objects to use the available functions. As long as you provide the functions what they're asking for, they'll happily draw the plots for you.

The possibilities are endless.

Release Notes

See the changelog for a history of notable changes to scikit-plots.

Contributing to Scikit-plots

Reporting a bug? Suggesting a feature? Want to add your own plot to the library? Visit our.

The Scikit-plots Project is made both by and for its users, so we welcome and encourage contributions of many kinds. Our goal is to keep this a positive, inclusive, successful, and growing community that abides by the Scikit-plots Community Code of Conduct.

For guidance on contributing to or submitting feedback for the Scikit-plots Project, see the contributions page. For contributing code specifically, the developer docs have a guide with a quickstart. There's also a summary of contribution guidelines.

Developing with Codespaces

GitHub Codespaces is a cloud development environment using Visual Studio Code in your browser. This is a convenient way to start developing Scikit-plots, using our dev container configured with the required packages. For help, see the GitHub Codespaces docs.

Governance (Acknowledging) Process and Citing Guide Scikit-plots

🔎 See the Governance Process, Citation Guide and the CITATION.bib, CITATION.cff files.

Cite all versions?

You can cite all versions by using the DOI 10.5281/zenodo.13367000 to https://doi.org/10.5281/zenodo.13367000. This DOI represents all versions, and will always resolve to the latest one. Read more about doi.

✍️ Citation Style APA:

Supporting the Project (Upcoming)

Powered by NumFOCUS Donate

NumFOCUS, a 501(c)(3) nonprofit in the United States.

License

Scikit-plots is licensed under a 3-clause BSD style license - see the LICENSE file, and LICENSES files.

Project details


Download files

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

Source Distribution

scikit_plots-0.4.0.post11.tar.gz (63.1 MB view details)

Uploaded Source

Built Distributions

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

scikit_plots-0.4.0.post11-cp314-cp314-win_arm64.whl (7.9 MB view details)

Uploaded CPython 3.14Windows ARM64

scikit_plots-0.4.0.post11-cp314-cp314-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.14Windows x86-64

scikit_plots-0.4.0.post11-cp314-cp314-musllinux_1_2_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post11-cp314-cp314-musllinux_1_2_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

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

scikit_plots-0.4.0.post11-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

scikit_plots-0.4.0.post11-cp314-cp314-macosx_14_0_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

scikit_plots-0.4.0.post11-cp314-cp314-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

scikit_plots-0.4.0.post11-cp314-cp314-macosx_12_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

scikit_plots-0.4.0.post11-cp314-cp314-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

scikit_plots-0.4.0.post11-cp313-cp313t-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13tWindows ARM64

scikit_plots-0.4.0.post11-cp313-cp313t-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.13tWindows x86-64

scikit_plots-0.4.0.post11-cp313-cp313t-musllinux_1_2_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post11-cp313-cp313t-musllinux_1_2_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post11-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

scikit_plots-0.4.0.post11-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

scikit_plots-0.4.0.post11-cp313-cp313t-macosx_14_0_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ x86-64

scikit_plots-0.4.0.post11-cp313-cp313t-macosx_14_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ ARM64

scikit_plots-0.4.0.post11-cp313-cp313t-macosx_12_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ ARM64

scikit_plots-0.4.0.post11-cp313-cp313t-macosx_10_15_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13tmacOS 10.15+ x86-64

scikit_plots-0.4.0.post11-cp313-cp313-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13Windows ARM64

scikit_plots-0.4.0.post11-cp313-cp313-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.13Windows x86-64

scikit_plots-0.4.0.post11-cp313-cp313-musllinux_1_2_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post11-cp313-cp313-musllinux_1_2_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

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

scikit_plots-0.4.0.post11-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

scikit_plots-0.4.0.post11-cp313-cp313-macosx_14_0_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

scikit_plots-0.4.0.post11-cp313-cp313-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

scikit_plots-0.4.0.post11-cp313-cp313-macosx_12_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

scikit_plots-0.4.0.post11-cp313-cp313-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

scikit_plots-0.4.0.post11-cp312-cp312-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.12Windows ARM64

scikit_plots-0.4.0.post11-cp312-cp312-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.12Windows x86-64

scikit_plots-0.4.0.post11-cp312-cp312-musllinux_1_2_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post11-cp312-cp312-musllinux_1_2_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

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

scikit_plots-0.4.0.post11-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

scikit_plots-0.4.0.post11-cp312-cp312-macosx_14_0_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

scikit_plots-0.4.0.post11-cp312-cp312-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

scikit_plots-0.4.0.post11-cp312-cp312-macosx_12_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

scikit_plots-0.4.0.post11-cp312-cp312-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

scikit_plots-0.4.0.post11-cp311-cp311-win_arm64.whl (7.8 MB view details)

Uploaded CPython 3.11Windows ARM64

scikit_plots-0.4.0.post11-cp311-cp311-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.11Windows x86-64

scikit_plots-0.4.0.post11-cp311-cp311-musllinux_1_2_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post11-cp311-cp311-musllinux_1_2_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

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

scikit_plots-0.4.0.post11-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

scikit_plots-0.4.0.post11-cp311-cp311-macosx_14_0_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

scikit_plots-0.4.0.post11-cp311-cp311-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

scikit_plots-0.4.0.post11-cp311-cp311-macosx_12_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

scikit_plots-0.4.0.post11-cp311-cp311-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

scikit_plots-0.4.0.post11-cp310-cp310-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.10Windows x86-64

scikit_plots-0.4.0.post11-cp310-cp310-musllinux_1_2_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post11-cp310-cp310-musllinux_1_2_aarch64.whl (9.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

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

scikit_plots-0.4.0.post11-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

scikit_plots-0.4.0.post11-cp310-cp310-macosx_14_0_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

scikit_plots-0.4.0.post11-cp310-cp310-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

scikit_plots-0.4.0.post11-cp310-cp310-macosx_12_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

scikit_plots-0.4.0.post11-cp310-cp310-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

scikit_plots-0.4.0.post11-cp39-cp39-win_amd64.whl (7.6 MB view details)

Uploaded CPython 3.9Windows x86-64

scikit_plots-0.4.0.post11-cp39-cp39-musllinux_1_2_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

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

scikit_plots-0.4.0.post11-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

scikit_plots-0.4.0.post11-cp39-cp39-macosx_14_0_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

scikit_plots-0.4.0.post11-cp39-cp39-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

scikit_plots-0.4.0.post11-cp39-cp39-macosx_12_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

scikit_plots-0.4.0.post11-cp39-cp39-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

scikit_plots-0.4.0.post11-cp38-cp38-win_amd64.whl (7.7 MB view details)

Uploaded CPython 3.8Windows x86-64

scikit_plots-0.4.0.post11-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

scikit_plots-0.4.0.post11-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

scikit_plots-0.4.0.post11-cp38-cp38-macosx_14_0_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.8macOS 14.0+ x86-64

scikit_plots-0.4.0.post11-cp38-cp38-macosx_14_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

scikit_plots-0.4.0.post11-cp38-cp38-macosx_12_0_arm64.whl (7.8 MB view details)

Uploaded CPython 3.8macOS 12.0+ ARM64

scikit_plots-0.4.0.post11-cp38-cp38-macosx_10_15_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file scikit_plots-0.4.0.post11.tar.gz.

File metadata

  • Download URL: scikit_plots-0.4.0.post11.tar.gz
  • Upload date:
  • Size: 63.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for scikit_plots-0.4.0.post11.tar.gz
Algorithm Hash digest
SHA256 00ea5b8ae690d26b1cb3e42825b87926810b22027ba9dad0c6a8311a0384dfb3
MD5 3f7abe588a49710d6c97b0e674878bb7
BLAKE2b-256 af3aa7eb68ff8075e09f3b6e13de548fc71c999ee01abff441cc6506862bba09

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11.tar.gz:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 01fe8bbede358349da1842ceff77b067a0d1ff16ac8a912e5e6e9c0e8729cd32
MD5 9fc30eb1fc128f94c36c671d4139885a
BLAKE2b-256 57c45e6c056c607d6ae6e3b2f2d40b7386388ea0aac9d8285ee2c99ad7ba1c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-win_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 18502332aa9f76a08525f65092dc24f6bf6d29c870849007213eb7160a231971
MD5 93142cf0ab720922030d19d1a178bd7d
BLAKE2b-256 1a8f24af1b8fe3d6a330da3527d9ef4164e2658024545b66f5b5991b67e64716

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 457d78a2034b087b4195abb7f8161b6b691cbc417737ec4c9cb51e85a73a86ad
MD5 1c2ee35c07b29df27096dd2c534445c6
BLAKE2b-256 88ac93c3dba9e4c5b057ffbc25d25f3d9770bc58916e82956b4d5eca147ef4dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bc67589e5892a950dfe543bbf2feb937605f95a27019ef3909f7cc05bb4519b
MD5 04b9117df6d6e08aeef7b1f3b6098adf
BLAKE2b-256 69551b4618c1816eade60a9f496f92b0b7074a292c0deb29e4385638f5c65e11

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85cfe43a6ef017289c9041c32bba4fa2271cba2b9e777cfbaa88baa44996b899
MD5 47c57e5914419b4290d8827183d466e5
BLAKE2b-256 873ac123bdc21161c1d5373a55d4a9c53120c2974a6529401473f74faf8dec54

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69f211f2920243c90651c926e5e5c515a711adeeb5d88c2ba566fd822aa987a9
MD5 a7701f03fbf0b820d05eeb178e133022
BLAKE2b-256 3c405117de0ad19d270dc046ac8e153db72b43f5232bc309f9c39399ded866a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 09fc9f1d22562a6366f6cea33b885a92ac88b16446bc54ba4c11ba560603fb50
MD5 9ec4e6ef5520ae56ba9ddc280c948495
BLAKE2b-256 5bd7a6776ee5462721e068233c51c4d66831c4f2464e030da5cbfab5662dc355

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2220e7e00c445c3994eb46acf6b9eb2dcd840407fc527bf344581b300bfb90fd
MD5 3fcc3ea294888abd40a9766a3d98579b
BLAKE2b-256 e908ea7bfcfc7a581fcae8a322986405fe0511e347fc12bb0db81d64d50174dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 88f2635c2a0c1e9f2cae71dd524605021f1eddac5d7f27a7054a53c005f1ed01
MD5 cb899dcb14c21e0776f960ab1394a82a
BLAKE2b-256 ff00440a45dccbfe31a6399cdb81d73fb95caddf8e6cc1a3a14ae709bf3f808c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 779998794985a04772f8c6cdff50d5983529b82393db00053bc85fffcb14b8fe
MD5 6ad55c9c4ce1e5e205a05aa2aab6d101
BLAKE2b-256 0815616a458926ce92b8d5405433a68beaa1cf6a21dbf6eafae91b462617a41c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 0f1de75d3a4882f65d9b258c9e01647e93b34d98da455a14122a1ebfd21d7141
MD5 72107df60c0276b65b3736850f714af0
BLAKE2b-256 1f48a2727d2b8fdfe15724d7d25f3ec76cd1faa671df088e4786672b466adbf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-win_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 15cfd420ae71c9f22a824e706b0b17be1d20e8ec0e51bba44bfcd5b9523a80df
MD5 0b609522c84b28245cd266be3afce7eb
BLAKE2b-256 3f01c4270bb82a33965ddc10e32a3fb7ba5cd8423468d02ea3d7d46cd6d26f3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 371df8f92b4ba853c1a8d59731aa4e121edb5dcb7b05a48e041393729a61db46
MD5 be04cf4092bc57716b95d82af35f5794
BLAKE2b-256 e3c89fb9dc5014161750bd7459d5db5d75f37d87de63fa110efbec56a259b948

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d23f8a8dc10f747c69ea74444d95fa6b3b2ba913e439b453dac59b7f6ea91c0
MD5 e97bc47c93227c51f39e63ede2069d5d
BLAKE2b-256 1fd0449b4f23208d609ed600d3fd2d00d395b42c3862d8b97290a835e603156c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5b140042b750b9ff5272433c95375baa72b9fe31c7b0bbb5d89cf89cfa466bf
MD5 84adf91b39e18070655b7ae17d503dda
BLAKE2b-256 8508f73ceac2ad083fc502e9b9de4d585136f3b0239912e55c9ab7ab09b51b8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5be424920f29ed5637044b62355981f3093e92a97d1095b696837546479448b5
MD5 87c832ff51332f8221073221d79a40ec
BLAKE2b-256 29be4b40a14932c14872625057342ff037bbddf03417dc259961e9cee9194631

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 1bd7bc69a0ad91af78e4cc3d63ece7f12f855922160008c3b207669cabe51b43
MD5 8d053589b0310c7ab581295d8bbd483d
BLAKE2b-256 fc8df3d18d8281c9392e22a0aef868867d2fa8e7b7d0cfc2f0fa974249911d3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 b4325470bb62adcfcca768cbbc1f42fac787e799aff660865810577a21b0552b
MD5 76844b1a6519094e5eb0410ea9e23b01
BLAKE2b-256 4348dec99593390a55f4f0ab2e62f393bdb0161ae6040072fba33e92529fd189

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 3dfcf7d1c2eba5d6f01591f625aeb2b0a6d04678750e7ad796a6e4aa8836e523
MD5 af78b9e1269d2bd119ccbea09e9abc57
BLAKE2b-256 0eedbc1ac9bed8772ed074171ff28b3ee4fdb160cd7c8e1a8297221e69b2e7cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3e369fac1adcd6d93f8f45a2b2aa6594d47b161cf2aa0b2bf01a3390a1a44277
MD5 782a7387554a12e4b7f4f0761efe141b
BLAKE2b-256 1f69e61000dae30dce38250b97ad6b6b63e5ad293778d6ed64170942c79b314e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313t-macosx_10_15_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 70aa723738cb3edc431f254a591543beea76581fc6025359773ff20f97fb7f4d
MD5 fec5325e3ef1823ca6d167b1e319d189
BLAKE2b-256 a472031b1cb91d6ba0d89db09c60e2f855951db852d5b03e4270c4b40316d8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-win_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3c0a75f93ab335649228d9ec790864d8ee6023c2b1d1a59cedc5fce37325e97d
MD5 5bad3f43d185cf523db7d57a73f5ea4b
BLAKE2b-256 636e4da0b4e48723aa89d7ae60dcf8f8649f58981dfeed774c48a3d0b6d5646a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec0803d295bed805536b3de2b412e5e459c24c51838441b93da11d313994f585
MD5 4da3aaf8f1508ffd981b08d9c991d1d7
BLAKE2b-256 c56075185a2b1586163293d1838312784a88df7782148471144cb84af22ee935

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4bb1fc987f26e23ddfbefde6b498163e8352ef0f7477be7b03005745beb1ce2
MD5 6f9b2a07b51fefbe7e12e2e3aa2cf3ca
BLAKE2b-256 28bf932250794cd0813fd0127f7e6c10a2754abdb18b2f9d30726515eaf07607

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff41971d4738827c11d5b04274edee522585d58b425e7be300be0abf0f96db2e
MD5 324a4ccf3648a9d5b7c4a9797723fcb2
BLAKE2b-256 a93895c097849d3d45a450bd13b76c51f623a2e2b0010702a73939e98ce7a5c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15066274c500cfeb3453a3dc66196ca4f9a8cff88cea783e153948127debca9f
MD5 1c7e4d3baef1eeb84f3a6d39c9a8dc6d
BLAKE2b-256 e0146f1fa80ff186dfe6fced328a6ebfa2a3f8b707dce3452b9bd0bcbb9d4ba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 50082af8a5579c3d5f2f632133d22e29b30bb8760bbbf2377ddd800a62c36893
MD5 4aaae4b04c3bf2de260ab1ba8bb93e71
BLAKE2b-256 4b2ddb6b1fb9d4d2069a33b76ed0db50fb22342fdbcba6468e994a696286834d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7470b600335ed6adaf4a39b18aaecbe1d2b5ef2c3b60c5206c805e7f843442ed
MD5 574ae5aeeafb48a6b9bbbebc82993034
BLAKE2b-256 6d299ecbced1a80207e0e85779acf1c8da8cb054c02882a5db2ca7765fe21be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 69c3cec27f4651a3e664e4985a0ce51199a24c71ffd6a687b3eefafe8dd5963a
MD5 628392ba2482e72e518ea4b87726d629
BLAKE2b-256 ca582a96f1c52af9d321f78ede2357fe96197e649242ae8ace4f93fc5c776b41

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7e77efe9dadf86d148a32b01ae75e0968dcd96b8ba30139fb85ed51ee715dedb
MD5 82937e2fe96be307abd9f25ffbabca8a
BLAKE2b-256 2009105c38a5ba88571e846a2680cb70c3c21b08b2113e5ce22b66d0ece330d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 69f1cfea78da97ebd57146a62842c0e7484937e119aa00474cb0b419d52dbef2
MD5 2a22eb42a9f2dde35e4686c85f7eca78
BLAKE2b-256 aa0c4a49c16d807408fc0f868c4fadfe86154666213b6962e830ecd75459a21b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-win_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c9b667e09b12f3a972e81c3f02bee0ea4589ad79ff0d98ac6721ecc1f2b60d14
MD5 c4bcdeb409af0349ed8d79c394f82e3a
BLAKE2b-256 557719a9b8142fa3fb592830dd0fe4f05387845a2f2a3b84301d9517eaefa25f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13f5f75c1305805c7bea5468377f1fca405292be763c7a803bfcadd4adc8ee9a
MD5 381b020537956511ba7666071ee3dcfd
BLAKE2b-256 38636504ac4351022f43336b88e3430d3db9009113ea4ed5900939fbcd99e351

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd13d20f9fbada3dc002267f3245b2a6f947faa6ed58cde9e20d9f28d167172b
MD5 959c12cb16b68d77a249071468658573
BLAKE2b-256 173a4516140f554a9479e27800e233b4c99384471ef32d2ee723f8bfa73ff0fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43f67a589197906ad0c67d01b8ab24989f28e64e34c73c50ebe4f4cd3bb24e93
MD5 bb30bf0b7a177370977deb1ac79b4343
BLAKE2b-256 a0418a317f59db655a789972990d1860080f90a900716953dd62c0549adf75d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8b1970ef62e10e171c7f29659bf8d7ea459ec1fec80ae83f8af60a7a70b1563
MD5 9e05ffb59ed6a6f7ca9e6876cf344a7c
BLAKE2b-256 c7e1a85cff3a2c4c1b29f147b681732f5496f12a81999208343575ff5389d68d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 798ffe797229f61a835b50958e9ac29c5158f1907864c849078a116c3bbe967e
MD5 d9e47e2b1f0091bf034cb3142ba42230
BLAKE2b-256 e728aaabab19030c40069c272408dcd56afaa9ba8e0b7cab0ec326f90bd213cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 05b29ad9023b3fef847f0ec50c49bba006ff3b7db3d920dc6418985e3b2b9bf3
MD5 e0aee1cbaed8377fd18a864d518f763d
BLAKE2b-256 75bec6f299bb6e0489512778bed490fe8da82c09083ef310415fba7489b0a546

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 0871a5eab29722cb6529b6a1935e53f70b64af7c0dec7280792525d220b56f50
MD5 2a9219fa007c1c35c9b9a96174ad26c9
BLAKE2b-256 2d5ed8691c8043782c8fe2d6539d8e71d969503dffdec4f782f1c56943599974

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d3756ded4ed33dd1045e77c14601c73eaf3e7fb75873b99acdb5e46a04684ce7
MD5 f635ec01f170c54af631c1a40f056905
BLAKE2b-256 23f5eca8c55da982831ccce7abb7ae5ed7c7c4ff74080348223188f0f7f6ba8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5987324e07218b39efbbd887b13f62837daf431c74e4e3b96fae52bcd35f9cc7
MD5 2ad8ae5f030ed7063fbe0547288eed3b
BLAKE2b-256 ff392c8a2e0ff6694377600067123ce73e158e37da89ba221b7e73dd0e6f879a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-win_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d33bd7ca65a24b39cb2dfdb2f7676e79baf8f943fbcc7caf28c2b72f1e354322
MD5 36c55cc80c4f21fdcc314de78cf5ed6d
BLAKE2b-256 a3bde4fbd30582ab050741eb712399467b1d5bd0fcd0f7da40067144991fe512

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1567fd1a70ff714d219e391eebe482b2b19ae28333c6fef6997a63afd974d90
MD5 9101e91927a5df1b82883bbda34d631e
BLAKE2b-256 802f50bfe6dddb188072af37c99daa20baa7a77e73415ac55ef0bdf6c73714e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b71667c9ef80de1ae29aa46c605a4e7d485ffd81db42d2b8a901b725dc4c128d
MD5 4c7150aeacc53ac1cc8fb45355fabb62
BLAKE2b-256 c4eef953667e9acd4df15092a10872e932bbe40e1d95a474ac5e89d06ad197df

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f68d16baa979183a9211cd9df253a9b81612a0847b33afcdd3c1ced807363279
MD5 31cb9173f8c5ead02468884e77679df4
BLAKE2b-256 d3bbf18837b0190dced8dc5ff707f285159b44765342bc4cea1346a15fbb3960

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc855861569286eee78f5fd8c84e960a922efd62775d209682b771c4d1a74152
MD5 a0c7e253fa5db32b2c1094c7ca1316b4
BLAKE2b-256 1d48be7297596baaa3d3f06263cc9a37ec3aaf063d63a42a38979ede5b42b68c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 7b7b041cf05ab44a49dba3046a94aab9abc2362700a98693b6a56d6e48452bf3
MD5 90713e24d214224f2a9171136578776d
BLAKE2b-256 d0fad0daa68d5fe1ba3376e0cd5f9727c6948449bf9582931754be4f8e0bd142

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a2510c293c05f0234eaea905e708373349695e6f56617e8c42ed2391c0e5a972
MD5 65776601b08d0057ee119f020b4e7302
BLAKE2b-256 33f876e8a1a837456a0f685aa3c55f6ed6bc06396ae2771a864156021cf424c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 3a7b94f0236b42cf6a99cf20bd88b612e8aa3ab9c383a57be17453d981669e07
MD5 b06b037a19606396d20d70a96c7d78db
BLAKE2b-256 976abead9122c5d8ae33622e0e6efbeb4fcc7a139faf7b9ce268537092f96ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 18329737fde6f9ed2250e4fda7c8bb1a2cb7093d003f2fc17d9104da13ad031c
MD5 bf97dc2a133331ed6f3ed3edd967fb4a
BLAKE2b-256 f3c614b8b0f0296cbdc4dc4bbd5164126e46cc965f56d0f6bcd6de6a1340f1f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 36d52c20aab0de7b19720f53bc36fda3b0c754ccb31c338c7587d1fc6fa2cd23
MD5 218753e690cfc5330ae9f864f7e2dbc5
BLAKE2b-256 5cf86fd5034e27ab3e10355c3d9b25b55b9fe24eaaee6fbdd7fa64b4719cb97a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c32c0cb04128249980b69bc75f9b3e70ff80d02a37bfe2836cdcf0c670822251
MD5 93ba264df67d33d2cc0165f438e7f537
BLAKE2b-256 48376df9e5e0515673de70b44bfcc786c1e438403145501e53df8ae182a00756

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ddc9fec2e2e199164eca135e34301362a5a26f3057d6ba2b92253d91ac8cbb2
MD5 30f623cb21dfeb1bf3be760cb8ef7b5a
BLAKE2b-256 ffa88b55a82f8e7ff5986b37c74d2c5b9a2dec22636ceb7ab31a2102e63ead64

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 652a0bd3e63501c521651cb91f6e852433d1ee244989b484c73681205d2ee911
MD5 96f2188eb45db8c45f86a224269ab740
BLAKE2b-256 6e6e0c59588087a4b5b5eaef059fbb39782712be8ec8867b9e54790df3838a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43a11597539f7650a6fa735ed397a5647c3bdd6e65649558a02d84ecac3e3ffa
MD5 4117df606fcfd7b8b4d89a0d72d17353
BLAKE2b-256 26f41730425a887fffbd9babf4656ea04dc6a91f3ef03db18be6f48554c68da9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 e4a6ac585b14933605607eca2be1a1a79cecc7ca0ac4681c64139f5298be50f2
MD5 79685b6daa0104787846ffe41a4ef7dc
BLAKE2b-256 4f1df8a90b96fc116df712848213223b413e26e69657ae9f0829e4488155b58b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7d12528296eb454318f089217e6dc5c6d18bd0b1b9738735809f7eec9720d9fb
MD5 cb63e7f2eb6e075fa26befba5266b630
BLAKE2b-256 341e9331631a98de1659adc17d24ec429209bb8ce4ecd83b5f890c0648e033b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 47731d5206906521d51bf55507b333b4d22b65c795b38cbc81eb80b7fe2b96e9
MD5 fb9bf5a4f8edc8d39c65b95154b30549
BLAKE2b-256 af1bec76ac9ed70874cf0ab475a6bfcce49da0dd7798d7d04ac101c1e22f6dc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 304a0fea662455c7e740c96f747d28cd3fa5c24d8c3163f43ebaaf1120b885a5
MD5 9d2a0403bb59a9419ae8e06a19b13825
BLAKE2b-256 690b26bbbd783e04d8230cc3d3042ce217c47c559f79bdf06ca45eb316b9f92b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a6c0aa7623ab6104154dfbadc4fdd6380a74b938cbd0a68f008130e77a8c39e9
MD5 04436c4da7a5eab4309a30088260031b
BLAKE2b-256 a22555d0f3202d1ff093d12f886c60d9d8317b5b1bddb559519570e621a7b1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp39-cp39-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e66f4edbb4562d8d557ad944d30a7225206f78a9debbe82af695cd6bf1c9a7ac
MD5 9e61f9b2e7641baebb93c43b12e771ec
BLAKE2b-256 e278e41060c11119f515cb3f06771ee04989a5101557ee73a15e8728d0415fed

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d5957adfd791bbee23f9d08a05b02101a59af2953880f734549c6209dda3d81
MD5 0a74c3d975c45004b82c6dcb6dfa347a
BLAKE2b-256 89a901bb019d053157bceac7ed227f0fad5023fcd792f17df1ef64c9655787b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fa29219bf95af7b420957e621b08055cd97758172a92fc3b99493c4daf67c3c
MD5 e931cc12440684760ffd82d0d04fd903
BLAKE2b-256 212e9c061ffd72d33e3229e12cdbe5129af5c4205cbaf8274f2a26e44078aef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 a3590229e293fc202a6575d6c2be95641b43fdc737d52dab4448846ba2b51e94
MD5 92863c1baaf3d5242e7de2a126245172
BLAKE2b-256 61b0a2e981c519ee35ff40fddc2aaedf08fcbe14e7186b69f993d16e81ed7237

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp39-cp39-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2a4c67cf5aac81a296e5785f09fc76c261e5d38a3bb6cdc9b33f262376057f00
MD5 1473a9c7c86b8ce4138b491c3096b8ed
BLAKE2b-256 3683dfc5eff74d247edc6ca6d0d04215686c47620681641f3b3edf150435f580

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 34e91422a00d6592df04b6c039c4b3411b7499134919659458b4ce6f2b94edf9
MD5 d6159c2bda5247dc593eec986f8e435b
BLAKE2b-256 9b44e73a033abc42cb4a3460ef4188296f7ec6a2594eaff53268d4d20b38e2ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp39-cp39-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9e76d093017b6fcf27359d29851cb14c2e90f4cae6bcfdd21cba12778356fad1
MD5 72f3c944e0c1b4f7b688f7a96e4795c9
BLAKE2b-256 a752b45bd9db098e8bd3ccb4baaabd4f9a57839498701d8e01b58f51dd7c77ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a81307ca824f825ea2dcfb2eabfaea22af089a4d704fd6cb5cff3f25e591d4f1
MD5 96cc44925bd3c5e63c1813cb50d83728
BLAKE2b-256 84cb077ed78f4ad312b5898c29f654a3e1eb8c123bd4896827608f21fa88b88e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp38-cp38-win_amd64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0237a31f8da6c31e3b4c40494c134def5af34081f8edce877b5a353776e50f13
MD5 d065c59250dfba4921bd0d09c09feb51
BLAKE2b-256 a13391b26ff9f5c2ed5c2001637e690a610fd8be22845e11eff5d0c15329784a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 713d2ea3bc5a1474cb6812947cf9a8fe33cb48c44055bcfcc370c97ff061a7ec
MD5 e9607deb3416548c9531fd9b91c5823e
BLAKE2b-256 7279a091ed7e67ece5a5e29a7e72d14b9361bf027691b1413572232fd3041d74

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp38-cp38-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp38-cp38-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 e76e034c22295dad1b0366a2265dfb433bbcf69a777fb88de7126872250143fd
MD5 fad32bcac36a017db64d34c0fce82251
BLAKE2b-256 6874db4ae2ea0999ef49b9e6db0b5fa7ef931b43e6aeee034bbf3df28865b508

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp38-cp38-macosx_14_0_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp38-cp38-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0b023ce02c2c09073d2111e4b8ea3ee7dbc19b7654121bcddb0ac78799e27f05
MD5 9746070eb93e3e3295633fbec2b50bab
BLAKE2b-256 42c439ffc2cfc37677ce04d13c7e4d273d00b2a7835eb090f4542f3c1f29e5b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp38-cp38-macosx_14_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp38-cp38-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 713e179546efb3646d4e9662f5edfddcfc0d872fd7b9d310800bb13cab497a81
MD5 052781afa8691e60d1852582064f3ebe
BLAKE2b-256 1cf595a89d76bded7d6e39b13fe7819456e785a889893002ec5293621e2a2711

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp38-cp38-macosx_12_0_arm64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

File details

Details for the file scikit_plots-0.4.0.post11-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post11-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 862f9e0eb2b4a4ccaf18176817d6d2bf8ba12238a14c971c8b153e64d164d334
MD5 f74d669e4018fb968ec6cb3d342493b7
BLAKE2b-256 2cb19eb9005072fe8218519864e8200a242285fd35bc4a0dad884f05b62d084d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post11-cp38-cp38-macosx_10_15_x86_64.whl:

Publisher: ci_wheels_pypi.yml on scikit-plots/scikit-plots

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

Supported by

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