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) 📦 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.post10.tar.gz (38.9 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.post10-cp314-cp314-win_arm64.whl (5.9 MB view details)

Uploaded CPython 3.14Windows ARM64

scikit_plots-0.4.0.post10-cp314-cp314-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.14Windows x86-64

scikit_plots-0.4.0.post10-cp314-cp314-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post10-cp314-cp314-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp314-cp314-macosx_14_0_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

scikit_plots-0.4.0.post10-cp314-cp314-macosx_14_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

scikit_plots-0.4.0.post10-cp314-cp314-macosx_12_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

scikit_plots-0.4.0.post10-cp314-cp314-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

scikit_plots-0.4.0.post10-cp313-cp313t-win_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13tWindows ARM64

scikit_plots-0.4.0.post10-cp313-cp313t-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.13tWindows x86-64

scikit_plots-0.4.0.post10-cp313-cp313t-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post10-cp313-cp313t-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post10-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp313-cp313t-macosx_14_0_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ x86-64

scikit_plots-0.4.0.post10-cp313-cp313t-macosx_14_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.13tmacOS 14.0+ ARM64

scikit_plots-0.4.0.post10-cp313-cp313t-macosx_12_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.13tmacOS 12.0+ ARM64

scikit_plots-0.4.0.post10-cp313-cp313t-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13tmacOS 10.15+ x86-64

scikit_plots-0.4.0.post10-cp313-cp313-win_arm64.whl (5.8 MB view details)

Uploaded CPython 3.13Windows ARM64

scikit_plots-0.4.0.post10-cp313-cp313-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.13Windows x86-64

scikit_plots-0.4.0.post10-cp313-cp313-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post10-cp313-cp313-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

scikit_plots-0.4.0.post10-cp313-cp313-macosx_14_0_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

scikit_plots-0.4.0.post10-cp313-cp313-macosx_14_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

scikit_plots-0.4.0.post10-cp313-cp313-macosx_12_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

scikit_plots-0.4.0.post10-cp313-cp313-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

scikit_plots-0.4.0.post10-cp312-cp312-win_arm64.whl (5.8 MB view details)

Uploaded CPython 3.12Windows ARM64

scikit_plots-0.4.0.post10-cp312-cp312-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.12Windows x86-64

scikit_plots-0.4.0.post10-cp312-cp312-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post10-cp312-cp312-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.7 MB view details)

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

scikit_plots-0.4.0.post10-cp312-cp312-macosx_14_0_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

scikit_plots-0.4.0.post10-cp312-cp312-macosx_14_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

scikit_plots-0.4.0.post10-cp312-cp312-macosx_12_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

scikit_plots-0.4.0.post10-cp312-cp312-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

scikit_plots-0.4.0.post10-cp311-cp311-win_arm64.whl (5.8 MB view details)

Uploaded CPython 3.11Windows ARM64

scikit_plots-0.4.0.post10-cp311-cp311-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.11Windows x86-64

scikit_plots-0.4.0.post10-cp311-cp311-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post10-cp311-cp311-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

scikit_plots-0.4.0.post10-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp311-cp311-macosx_14_0_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

scikit_plots-0.4.0.post10-cp311-cp311-macosx_14_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

scikit_plots-0.4.0.post10-cp311-cp311-macosx_12_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

scikit_plots-0.4.0.post10-cp311-cp311-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

scikit_plots-0.4.0.post10-cp310-cp310-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.10Windows x86-64

scikit_plots-0.4.0.post10-cp310-cp310-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post10-cp310-cp310-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

scikit_plots-0.4.0.post10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

scikit_plots-0.4.0.post10-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp310-cp310-macosx_14_0_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

scikit_plots-0.4.0.post10-cp310-cp310-macosx_14_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

scikit_plots-0.4.0.post10-cp310-cp310-macosx_12_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

scikit_plots-0.4.0.post10-cp310-cp310-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

scikit_plots-0.4.0.post10-cp39-cp39-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.9Windows x86-64

scikit_plots-0.4.0.post10-cp39-cp39-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

scikit_plots-0.4.0.post10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

scikit_plots-0.4.0.post10-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp39-cp39-macosx_14_0_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

scikit_plots-0.4.0.post10-cp39-cp39-macosx_14_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

scikit_plots-0.4.0.post10-cp39-cp39-macosx_12_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.9macOS 12.0+ ARM64

scikit_plots-0.4.0.post10-cp39-cp39-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

scikit_plots-0.4.0.post10-cp38-cp38-win_amd64.whl (5.7 MB view details)

Uploaded CPython 3.8Windows x86-64

scikit_plots-0.4.0.post10-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.9 MB view details)

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

scikit_plots-0.4.0.post10-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.8 MB view details)

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

scikit_plots-0.4.0.post10-cp38-cp38-macosx_14_0_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.8macOS 14.0+ x86-64

scikit_plots-0.4.0.post10-cp38-cp38-macosx_14_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.8macOS 14.0+ ARM64

scikit_plots-0.4.0.post10-cp38-cp38-macosx_12_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.8macOS 12.0+ ARM64

scikit_plots-0.4.0.post10-cp38-cp38-macosx_10_15_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: scikit_plots-0.4.0.post10.tar.gz
  • Upload date:
  • Size: 38.9 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.post10.tar.gz
Algorithm Hash digest
SHA256 ffac447b94711dfc89f4c8b8d86e1a08adba82215fa705d122b5f00444eb0321
MD5 80b94391ce1d7dc50f4f8781c9c1ede1
BLAKE2b-256 90bae59015235929b23b100ff9037cbbdb25beefdee457d055df8d4535de63dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10.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.post10-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 65727d3e4a6f20aaed59c415e2014e36296ee8c81dc926d6633176ed5148f868
MD5 e122effbe9f75e9811d4b868deece890
BLAKE2b-256 0698a22c1efebb8f4d6d8c18d512901953610f8746480eee019f30f781a13e5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 45bb4b5b27c9254a773ea5593b2eb9f61fed30e96fec1682e80e369526433a91
MD5 045f7189714e6fbdd7c13f0f93d3f1a9
BLAKE2b-256 a76d7386914547feef95f95434b6ca82b0963bcb3ff460a4e5de86718bece469

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc9930cf7de4254f30e3478528dc8f733fdf7a41f80736d3c1437f478e41ceaf
MD5 71b112c0e7ce714b28492990040c53d3
BLAKE2b-256 574e9b4e8d009b547a1428c9d98dc7cb1cf10c6c363816141a80dcb5d5746a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b538363e53a1d0dd6ee55d7b6327a6046b8420abd891ff8011ee418b11d9edb6
MD5 7c5dd854baee9fcfed3b9bcb00badbdf
BLAKE2b-256 7154dc75f51a69e65386ea53acfc5b8f34a4336062a35a5c889770d9074b7d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 789dec5fffe266cc2cc4c0c29480fffe07cd9979b4c87aad27fde5423480cf6b
MD5 b2238edf5db2cd9016973d66ca6df985
BLAKE2b-256 dd384a8474836e3f9325f09f9f224a493857decc047706369fdf722ffc1c0b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f93763e2a71cfe07a5401c85fccb69b8cf4a1f2109302cbca57c9a42b7c0a01
MD5 d03b35820c5f77a154d49f29bc3ff799
BLAKE2b-256 f3c768fa3d846934e37932f68769ae66c77fbf82d11ab81689ff68ad2a7e7f6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 7e1ccdbe866cf30d4e7edfe42d46ae6bc23d7efd530d1edaae4c1f708c602458
MD5 0a3722dbac28912a72157f126d34568c
BLAKE2b-256 c4a94f34621bda058f5a3693f48ae227188aabadcd65767f90f1d8a03a423a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 8087d56953cdf6194ca5fb56de5fc5f769781ebbe9d7b3084fcfc0917d9c05a7
MD5 8f13a09a9bb61a932f15feea2d9e6673
BLAKE2b-256 6898b48d379955aa2a4d40e35909c5336684d52ab4f4227e842a52330ed36e94

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 d2ca6414bd3ed4d6d1a21d5004dc0bf41b030aabb9abe69e3b265bafcfb9ff73
MD5 df1ad1ee2e5f3404c60abd64d1357f98
BLAKE2b-256 a631d167b0e5022246e91d674799e26f5f5a28dbac1b877331c0fcbc6c9eabbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eb67a9b718c6345c6d01c55489f56822f8bcd3719806a5d2973955ef4ff41912
MD5 ff3eed02c2b38666a6bcdcb689b7b473
BLAKE2b-256 4e9030791241c3e3358ae5265d9e6b3a7479dc3955b1273ad4c15d4b65f1658f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 93f036fa9e56184150237658f9c38a6cced1558f631fcf57fb845b5ba4b655cf
MD5 87d8c4d0b910b2b349547cc4bd45835d
BLAKE2b-256 607168a81a60d783a3cdc6d643f05d46c095d04b6a1b6c6be7709abcbbf77949

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f281319af0472388d9f182c3ac3086288d7e9c6f0cd16013484c01cbcf4aaa50
MD5 7ef1cac556e47a79b4a3d647665b926f
BLAKE2b-256 387a4fa7a23f4daaac92a38c7b00855f403c46a535885b6f9ac227b8407d3f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d312f4a42f3e0635a223fcd2f68f3fe95b6c494adb11d7c9d57f1c9bcc68b13
MD5 280f12aec2b32db9315867f9c80addb9
BLAKE2b-256 99a3cf3b8846ede9eb717d6e44a10c46c7f267f843288743656e6d3031e2121d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78bdcbb91950899d8fd7e0524212ed30c94c34ca6712c5c6d81a54ec1e3084c7
MD5 dadbd1af74195d7ecbdedd07f02da116
BLAKE2b-256 a2d2a2da982e61478fbea6aacdf2ddfaca4acd8d91c4a17bbc78e4fa9f0bbe35

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84b822687e8b139e368f491b33f1a3f37b676085a52f6253db088640d2a01733
MD5 4109c9a61b0dce3112715bb0d6be2ee8
BLAKE2b-256 389083d8c9ce4611e9b668384378edc68f27c555f66ee75ade74b64faa86cba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b21ffe96e4a0b44334456ba0b17b54e936a54db84e43eaba705e046a29cbd5fe
MD5 88c2c12f687ccac6066db0e6e49c3813
BLAKE2b-256 96a22e3a918500de3790832eed1a187f7806e8198f9b353035fc747542a9ea78

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ea681bc0ad94a7a5fd5bcbdf52147fe1c1bacfe07b590ca977e107574b0c0e82
MD5 e5bc1ee31fef1d12731713c08ddb4df2
BLAKE2b-256 1141406447dc4523b8eee8959d675f12fe979d4e3737329745adabccbab329b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 67aa785117502348eaa1e28446155fe2646fafc65188278010a0041f86e6d0f3
MD5 e85b9593a32af310a542ec8d09c872e2
BLAKE2b-256 37783d49e9258e600bce2b02b64480c5fb6406aea582353f8ffdbc6ba502e06d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a88df1c489faea85e7ca0143c6fb9278982a0dc2cfa70cc013a525b63999454b
MD5 d028053d72833d05649761ca048efc1b
BLAKE2b-256 8eadfcda55700255c8edd2ea4587d229eb4bdd620f497eda4d609c136030956d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 23375e82dbf81840bda0ad8daeb568420d2bcee698ad91da3d037d1a49fed10c
MD5 c92c2e6787ce06b6d8cbc2faae7b2348
BLAKE2b-256 317afa38579c34bc99b9aaba5c82d80233cc15e45a4ca71b61eedec6e2d03ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0e4d068520878640c6d4e9b1ab1050a84541164a2d5ee6849821aa514b0aa9a8
MD5 7048c6a7e1a6ceb932f66b69d3f0307e
BLAKE2b-256 30f518a97b7789d634aa0b413f5569ce62c1516dfbdf1655f1b6484bdeb4f855

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7d02cbd5be347e96ffa7e7bee0edb2a388776bd46d2ffaf0bd4f1206e1fd0719
MD5 7f099c56fc95745b98b8c33164c18b2f
BLAKE2b-256 f9570d1ea6264f4d87b70b08f43b29ecd2c0fd90eb61a3289208922e0eedd6a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ea483ed397527d3e36ba6ddbdefd440e79bd59ad7d2435798d2af35778e986d
MD5 4bf1e73fe2af9f98f9a13f596d5f4dbe
BLAKE2b-256 2cb1a831ef7e3b29c9d9024f874814b92b1c7e3ac98ccfc826ca8d1c83de950e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e5bbe641abcdb88f2822fab6fd4ddb072993f5ffcbb6e77719df5ba937f2171
MD5 75289be7063c4914a89ad37ab6fb9986
BLAKE2b-256 da45d7bab25abc14750a8fdacc4dff343493cfad1249347cc818ee8450441695

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa92f083a00c671cc5468e95d2c1cc94fa0676842e262ea89948fdeb28387c9f
MD5 cb3894a89340441eb45591ee799872b1
BLAKE2b-256 9128db9ecc7b00cad61ef10e82d7749809a50d8d0f25bebeff2c7382c0bbb2cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72101dce4c89b1a665781fc31788096dd418256c45b634c202364a08a24ea6f8
MD5 cde8762ea7ada11a0731489869aac1b7
BLAKE2b-256 b74d4c33334dfd72185e67006021dafb2a8f672282f097a02b82d018ebe75d80

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 20b9e637f4e7b3a1fadadd248f40a37bd8db71df970e8a51e5e5c440114448ef
MD5 7631aa7e9d0ea585ae486ce033c686bc
BLAKE2b-256 9631073f3f2b8ade342a9c1e6e519560eab47ae107392bb9a705afa7c52387ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 276cfac2251c78307f9b6d491caf6a046a55d36d09c1c73be94d96da3c986138
MD5 ce40fcd5017811b4f5874d83d59df88e
BLAKE2b-256 6d3d5eda7fd43ab863511c9a3af739c52d3f7c0450c4ebff4a9b5e5ae02e621a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a054263badb5e0878ddb5824d399fd06cb8a3bf47ee69678151e69971db14349
MD5 a78523cc388ec26a2f4ca505569a590f
BLAKE2b-256 abbeb0b21c42d5f706ec9c7f08b7645402ab98245f10ea3343526c5f8f008d3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 331104be68e296762723c2e1a95fc25cb2e4b9baaa73764557cdd1e0feecab38
MD5 f1de9d9b70117a906dfb253154670df5
BLAKE2b-256 e95d30d48936dd4cde574526e1849684f7a4e4a72f8f21a2d2ca117acfe4a195

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 661eed8bc66cc74c79d6738d8d69c4dd06b90185950b1225e77760ecdb254a0a
MD5 33f61e63c49c6e6aab172bf9bb1220bc
BLAKE2b-256 dbe90dd0fe1e1e32ec245d97611974ca6a15d888941cc67711901a6451a6dcc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 16951d210383cce2a33e48540236a7d235b9197b5116569df48cff48f3b2c7e1
MD5 40b5b80afc79435c41831f29d69f3489
BLAKE2b-256 74d0a508ce92224f4bfecc7cb527635bc58fb732e69f6aa9e3a0a4b68d2bd9ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a67fa8edd242b1175c1c29ed74c5ab56b95d1819949949ee623a588b04e2fbe
MD5 3d9749d7dd2b91623e53d62a49e6e921
BLAKE2b-256 aa42a7441916e3d519368367fc651efa0b536b44ded40b3ad52648fb35ac007c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad8a859d6fd477e417c7fc9822c7ee030e60582a2394eef39847672660f05548
MD5 140e4bf574192484aa51ed649ba87be4
BLAKE2b-256 fed37ab203324044d2395922236853a785fe53b21bb94956d5278793fc3c4711

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e63a08f26f1365ad819a872400acac6176403d4178d4cad4d32a9eadf1bbc1c
MD5 bbda2d42b1328c2a852c0747c8bf6178
BLAKE2b-256 f6d5d22b3214e0ceafa77b67826ff3f98d39208050e338ff6c2878d6c2ec5961

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a91f90f46a43d61bfa5898ed17d73cd8d6aa9423694153b793e6d1de20970ec
MD5 1b8164b670715a55c26205be3029b2ab
BLAKE2b-256 393574e038dbc56e45d6df9320dc42f184f07ae9971f6fb00b20e01280da9d2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 fd59670ac31187c4b121de13fe9460deed137c9afac74768617cde22e478a168
MD5 3c9b60b070eb5dc48b02167244c7608f
BLAKE2b-256 6a0f1d3d700b889c7eabb6d226f4ff2dbf892032cccc7f0a7e3482378d66a040

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 30760adecf8c5913ca9b101ddd0856362b5e5b53aac7aeac51669cbc7646bfac
MD5 3b02605b590e2b22a5318f4ddef513a2
BLAKE2b-256 6f68b368b2bcc23ece73e98fe5e312a62afcc37925633ec45e6d8817b83ffbf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 912bc89c8eeb593e07c2a5e03de8abe3fc0d0ae57a5ba5da37e7270d13ab697e
MD5 d4f4ad355e8619a9c22cb85b32dd26c4
BLAKE2b-256 926e5688e23b1388ae44565dab5043e9c51e74c27b693ee1fd5c5df917344d1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2e1d6534afce717291925fe8668927ae052e899b74401808cb117749356bf9f7
MD5 b987221f6814b5b2148fdee9ed21bd58
BLAKE2b-256 680891af543e6c1815628b479dbe1024fa67722447109f9892353d489bc04bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 44b18e9deea0f006bee88be0e1ae214f061ed26644ba6a70f131c82eee74066e
MD5 39fd2a2856e448f16a0bd36d5e017ea7
BLAKE2b-256 48827b42ea78ef492bdeeba9f43250dd9691516f9931745b75fde6201410494f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee7db0f3ae0e8f054f6d1a89a45e8cdd9b77e44733e0f8567453817e1f11b61a
MD5 557d37fb92e9a541f421f03f100c1ad6
BLAKE2b-256 a2ed5deb082313ca1bd1d670c7b261ff93f079933062ddb52aa78c60312d02c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 409a6036e39d706b7f888c944e26a3d98f9b35f9c7645028a21c7ac469f1fd2d
MD5 0ca5564d0e21b5c5019ea24d36239493
BLAKE2b-256 e8eea97fd9f49e95f1741530091324a5f5e68ad1e0813a77b9b7e60de68e69de

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cad9ba359449cfe5f82a6a42e6a99e5ac7625ceb7419553b985458618859fcf8
MD5 b5b62c43bb5b746728655b60dbfe5980
BLAKE2b-256 577b5cab0fcd01c99a4452ba2cd791e196af36f135fe25785cf95a6a3bb368a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf926b9eabe1ad0e59c621b0cbb7863452df790a61894510c275066345bf996a
MD5 4a76cbfca7150e28889c947f21b05a4f
BLAKE2b-256 a599a78825fb7b2c415594c225aea216e2c774b1d76977efae121a0b3b970bfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e03522139cdf2e8d3bad8fd3c48fe366bc4d53081034c27cdf002a3bb7136ab
MD5 587bfe75249eb280934c531a159183f3
BLAKE2b-256 bf8269d56793b7a01f2d56b3bc85446d1fda20b6edecf33bf64e3305cacdb68f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 178ca4d500548082e804d9eac978c2188cd2f228facc14fd59af6d8affdf75e2
MD5 a137b6777231f2d7c6fe0c884e0aa15b
BLAKE2b-256 1782755561ecd8e8e4bd3a91bafbdc945fcfa25b97982d911f2bf24540daf60a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 11f15bdee0a114fdfb19b20a2d07eabd6120b6278882394155a17ed63d7ff953
MD5 5e22aaea20c00f1f3ea2408900abb524
BLAKE2b-256 cd05f180cd94fbcd820e3805ba0f81a209506d0e51706e931290d4653ec9026d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 833ac2dc2d0dd49afe47258061c8baf59e89fdc31e39a3592943875cc068e291
MD5 bba631939e17353a14dd9777b1ac03a7
BLAKE2b-256 37e67a03e6b53f5bd4ca44a902b6d3251f7e47585c1b4f54cb579e09649e2896

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fa2eb11713e5bacda866c11ad8e7c401c510977a05c1080433b154838927dc23
MD5 113f860c51d8c6add20286b21144f898
BLAKE2b-256 0f9a93b02d42b969dd5ccbab12dfe0291346503a21f4e44df052048d9ec99d2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5eb3372f738f2bedb19736dcfc2e7d4637250c8d1d24b966844f8697b8cf952d
MD5 b45a525ba6e019fac261fab56940e0f7
BLAKE2b-256 4165e8d1700a41c3ca0e3e9a6f497409a939f86a43e4cb3c1af389ccb862b1ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a266a90ca0d4c164c73c93d6db42461a6744035a35d579b39ec2133b9e58e1aa
MD5 da41f908a66ce435facec8aba84533c0
BLAKE2b-256 4e0acae8465a5532a2d6e8e5ee3c71f4d1f7400c4ed364623ac8d7afa37052af

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9403720485377bc0067d3ebc9119be6d3c8eedaea8a5aede0ebfdf61c62e43d5
MD5 b1f2c5479206577529325000fd47e3e2
BLAKE2b-256 13668e3512e02e919c9149d3db4a58f9bd80e4d0f11d35056f6d498fcc5fb2b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad04de55a6b62c1496b95299bf0b55da6eba7d7271afb03a05186687fce64e32
MD5 c17968989e16457576d7a91a804aa840
BLAKE2b-256 d260ac0f1f82f4bc4fa1a0d479b4e3a50e36f6295c72cc4ed89619ad22f20f6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 016cbc9a32f7c4f74f45ec4969b8d01b59fb28b3f1db152131e18e7b1c6fa75e
MD5 e1db5656b70118bef045005aa8a10393
BLAKE2b-256 483bde0da86be1520204f85659511a051c0cb53f10b7059d21f3febfce9682cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 5ad40bd057141bfa6d6490e053361fa36d8cbe641b35bd51efad2bd5c3ace9f9
MD5 0250679db2da869c3c71a65a57968cdb
BLAKE2b-256 dfe3fbc0e6585270445e8a69ee9cf1999a001d897fe750b2792ea2dc2c889fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c82954695bea5778928902e09315947a1053d5a601e432436b4d4142b6ca07a9
MD5 e1106c64b132e98e423ec6d08b997a69
BLAKE2b-256 ad4b5174ee9c23690a51158d67f3c34d7ea339c9265b5536d362519171867726

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 04d9b301e27b2f01ab2ef457ddaa38f88bc4802f28f55dcf99f63ef537a3282a
MD5 79b96ccca55f7f14524e60d5844888ec
BLAKE2b-256 9afabd05cd27c8a8b469237bfedc8656b67c55286c7d5b260643edf9b5f83fde

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bcd474aa0c7fbf373a7e3fe70f416296bdc5df7e4e1878f9acedc36c2e0350ee
MD5 12aaff78a9da974e596e253220bd720f
BLAKE2b-256 f52dd2a4854420aadd1d527454328d145458b91af6616277f0ae8148a3eb6a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5bdbab8041cc6f83e2a868103fd985cb6981f51d7461bfab7772c79728afd60e
MD5 ace02a2a8136cf5869e2b5bff27ee03b
BLAKE2b-256 7d3716572463d6f9ea8c30f117c3f19c9565620ed44d8e96a36c3c1b81530158

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f508dca1fa34e3792c54fcbb566bbbb6ffe4f0f430e31aad38f1b0413e30520
MD5 633bb85423e7494047b6ff4b19d62ac4
BLAKE2b-256 d769fe2c145f7470e51433506e863988ed15508ca786e36dc4148aa3442004a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b823549fb295e4c5ad86ddbcd6b0110184bf08bc6cdbbd8ed051de9f16e04ff
MD5 e1344395e2356f3aac75728fde321173
BLAKE2b-256 94899e279d5d954b0bbca827a3c49d657b85d08d5a97d5dc0938bd5b7de8cbcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9236bd5bb2f338b1cde5d23d4d23b92a3f92a1556392bf498ae605f01c046059
MD5 7cac757655b8fe197f22032e45555eda
BLAKE2b-256 05faaceae68c173898e1c78a862c09f37a82fff6afdb6f7da41673fd08d19423

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 b6382a0ec1f8847fe54c7464d5cec58fc7bcad75095926d5ddc6b7f895e6ee82
MD5 61b2fcc3554558ada697e3de0322b662
BLAKE2b-256 ec7425f86839562ff8436f348106f7cc0ab3573f8d842f3ef716a8fe8a3f5c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cadfa1cf99dbbad356f7814a9ffc0d7a1f0be95c0bec799e440d5057cd750ea3
MD5 c68529d12d8456b9d8bdf4df8e854060
BLAKE2b-256 29dcaa1de3059f9b2a16a7577b5615f9ea308ec037f6d46cab4bb5d3ec0c13ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp39-cp39-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp39-cp39-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 7b44220659b6a9e18b2cb5cc385e5152e0f89ea42dd7e74bcd5931d7d6cc715f
MD5 33657ec7df328105aae961e8609c5217
BLAKE2b-256 c9f3ab0170c13527ed6c1b1099b8addd22b19848bc1cbf7b0b0883d16886c602

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb18c054e08daba744693c3515c9ac669f047e8bbce5d60c3521ed1e293cfd0e
MD5 a4a9c06d06f66a4fda4852880639503c
BLAKE2b-256 1ed4d13a01e37de0f59f438b885589b20edc787afa2bd991a007ddcdcb5e78dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a9892e734470f29950d8a88db443f13fee023dc05f99d930816d73423f8c3817
MD5 0e06a1e28d7a6e97a31c6bcbd1cf0bf6
BLAKE2b-256 2f4ab32c8dff2639c6b4889ae11dbcf0ed7a95f9f118f6934e075ac1bcd30c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 33ce4e78a4e66cf485b2390301f09488efbc6299c2e45bd8e7ff07cb6c7469a3
MD5 67175385ea2aa944e2abd16de9da43cc
BLAKE2b-256 19f143f9feed1c9ecfba55905c7f24a15bc09d2e20d69179014c67dd31da3c36

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8593dab7a7e82016164fc6167d7de0f356caa8a4e813a0f2c6eefd769edce9ec
MD5 05ddf760e9af530c8b6ea1554e1e2c43
BLAKE2b-256 41fa13230789ea0def7852d0b1ae5e436df9a3061c59720cc403db81d21005a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp38-cp38-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp38-cp38-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 1b53237694a43bb5b79278597aed4ce7d407d13e43aaa0c9a19b4937ef80967c
MD5 5c0ac7a0e21f9b4faa2b01be4878d85a
BLAKE2b-256 3adf8a9a386aaa1f4cd2bffdc199c50f17eb098a9e4cee3bac22a4105dc3c0d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp38-cp38-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp38-cp38-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c1d34a330b1bfd8849365edacb8204df91b073f4b016a0c36fc5472f3beae684
MD5 7eeb2af2b6354f8544cace0a2b8b823d
BLAKE2b-256 7921d7b8aba97c1db89f95bdfa5c5c51c5b02679c9018bb4901c314a09bd8bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp38-cp38-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp38-cp38-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 3d17d2ba080a73b58304779c5218d9f28d890150704f802c5e70789de6d55abd
MD5 4ffda4e0612bef7c191645e0ca8da7ff
BLAKE2b-256 24625ff45fac55b5913f3ef1b8fd6255a3ab58a2311d2987f86a6ddd80164894

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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.post10-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for scikit_plots-0.4.0.post10-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0ea83e8899950534e6e24887250d7821387cae2256ee6ea1c198bb840cd1ca85
MD5 5bf190be70ee905317d39885c3261093
BLAKE2b-256 037dda9d549eea2f4c35fdac63b10f1ed60c11edbc88f2015098fb41aca04ce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scikit_plots-0.4.0.post10-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