Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

PyPI Documentation

A Python module for decorators, wrappers and monkey patching.

Overview

The wrapt module provides a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions.

The wrapt module focuses very much on correctness. It goes way beyond existing mechanisms such as functools.wraps() to ensure that decorators preserve introspectability, signatures, type checking abilities etc. The decorators that can be constructed using this module will work in far more scenarios than typical decorators and provide more predictable and consistent behaviour.

To ensure that the overhead is as minimal as possible, a C extension module is used for performance critical components. An automatic fallback to a pure Python implementation is also provided where a target system does not have a compiler to allow the C extension to be compiled.

Key Features

  • Universal decorators that work with functions, methods, classmethods, staticmethods, and classes

  • Transparent object proxies for advanced wrapping scenarios

  • Monkey patching utilities for safe runtime modifications

  • C extension for optimal performance with Python fallback

  • Comprehensive introspection preservation (signatures, annotations, etc.)

  • Thread-safe decorator implementations

Installation

Install from PyPI using pip:

pip install wrapt

Supported Python Versions

  • Python 3.9+

  • CPython and PyPy implementations

Documentation

For comprehensive documentation, examples, and advanced usage patterns, visit:

Quick Start

To implement your decorator you need to first define a wrapper function. This will be called each time a decorated function is called. The wrapper function needs to take four positional arguments:

  • wrapped - The wrapped function which in turns needs to be called by your wrapper function.

  • instance - The object to which the wrapped function was bound when it was called.

  • args - The list of positional arguments supplied when the decorated function was called.

  • kwargs - The dictionary of keyword arguments supplied when the decorated function was called.

The wrapper function would do whatever it needs to, but would usually in turn call the wrapped function that is passed in via the wrapped argument.

The decorator @wrapt.decorator then needs to be applied to the wrapper function to convert it into a decorator which can in turn be applied to other functions.

import wrapt

@wrapt.decorator
def pass_through(wrapped, instance, args, kwargs):
    return wrapped(*args, **kwargs)

@pass_through
def function():
    pass

If you wish to implement a decorator which accepts arguments, then wrap the definition of the decorator in a function closure. Any arguments supplied to the outer function when the decorator is applied, will be available to the inner wrapper when the wrapped function is called.

import wrapt

def with_arguments(myarg1, myarg2):
    @wrapt.decorator
    def wrapper(wrapped, instance, args, kwargs):
        return wrapped(*args, **kwargs)
    return wrapper

@with_arguments(1, 2)
def function():
    pass

When applied to a normal function or static method, the wrapper function when called will be passed None as the instance argument.

When applied to an instance method, the wrapper function when called will be passed the instance of the class the method is being called on as the instance argument. This will be the case even when the instance method was called explicitly via the class and the instance passed as the first argument. That is, the instance will never be passed as part of args.

When applied to a class method, the wrapper function when called will be passed the class type as the instance argument.

When applied to a class, the wrapper function when called will be passed None as the instance argument. The wrapped argument in this case will be the class.

The above rules can be summarised with the following example.

import inspect

@wrapt.decorator
def universal(wrapped, instance, args, kwargs):
    if instance is None:
        if inspect.isclass(wrapped):
            # Decorator was applied to a class.
            return wrapped(*args, **kwargs)
        else:
            # Decorator was applied to a function or staticmethod.
            return wrapped(*args, **kwargs)
    else:
        if inspect.isclass(instance):
            # Decorator was applied to a classmethod.
            return wrapped(*args, **kwargs)
        else:
            # Decorator was applied to an instancemethod.
            return wrapped(*args, **kwargs)

Using these checks it is therefore possible to create a universal decorator that can be applied in all situations. It is no longer necessary to create different variants of decorators for normal functions and instance methods, or use additional wrappers to convert a function decorator into one that will work for instance methods.

In all cases, the wrapped function passed to the wrapper function is called in the same way, with args and kwargs being passed. The instance argument doesn’t need to be used in calling the wrapped function.

Download files

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

Source Distribution

wrapt-2.4.0.dev1.tar.gz (132.6 kB view details)

Uploaded Source

Built Distributions

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

wrapt-2.4.0.dev1-py3-none-any.whl (63.0 kB view details)

Uploaded Python 3

wrapt-2.4.0.dev1-cp314-cp314t-win_arm64.whl (83.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.0.dev1-cp314-cp314t-win_amd64.whl (84.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.0.dev1-cp314-cp314t-win32.whl (81.1 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl (206.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_riscv64.whl (198.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl (212.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0.dev1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.6 kB view details)

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

wrapt-2.4.0.dev1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.5 kB view details)

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

wrapt-2.4.0.dev1-cp314-cp314t-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.0.dev1-cp314-cp314t-macosx_10_15_x86_64.whl (85.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.0.dev1-cp314-cp314-win_arm64.whl (81.7 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.0.dev1-cp314-cp314-win_amd64.whl (82.7 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.0.dev1-cp314-cp314-win32.whl (79.8 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_riscv64.whl (160.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_aarch64.whl (170.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (162.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (170.7 kB view details)

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

wrapt-2.4.0.dev1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (171.5 kB view details)

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

wrapt-2.4.0.dev1-cp314-cp314-macosx_11_0_arm64.whl (83.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.0.dev1-cp314-cp314-macosx_10_15_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.0.dev1-cp313-cp313t-win_arm64.whl (82.6 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.4.0.dev1-cp313-cp313t-win_amd64.whl (84.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.4.0.dev1-cp313-cp313t-win32.whl (80.6 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl (206.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_riscv64.whl (198.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl (212.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0.dev1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.6 kB view details)

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

wrapt-2.4.0.dev1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.6 kB view details)

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

wrapt-2.4.0.dev1-cp313-cp313t-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.4.0.dev1-cp313-cp313t-macosx_10_13_x86_64.whl (85.4 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.4.0.dev1-cp313-cp313-win_arm64.whl (81.3 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.0.dev1-cp313-cp313-win_amd64.whl (82.4 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.0.dev1-cp313-cp313-win32.whl (79.4 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_x86_64.whl (170.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_riscv64.whl (160.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_aarch64.whl (169.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (162.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.3 kB view details)

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

wrapt-2.4.0.dev1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (171.7 kB view details)

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

wrapt-2.4.0.dev1-cp313-cp313-macosx_11_0_arm64.whl (83.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.0.dev1-cp313-cp313-macosx_10_13_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.0.dev1-cp312-cp312-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.0.dev1-cp312-cp312-win_amd64.whl (82.4 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.0.dev1-cp312-cp312-win32.whl (79.4 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_x86_64.whl (171.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_riscv64.whl (162.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_aarch64.whl (173.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (164.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (175.4 kB view details)

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

wrapt-2.4.0.dev1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (173.7 kB view details)

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

wrapt-2.4.0.dev1-cp312-cp312-macosx_11_0_arm64.whl (84.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.0.dev1-cp312-cp312-macosx_10_13_x86_64.whl (83.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.0.dev1-cp311-cp311-win_arm64.whl (81.1 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.0.dev1-cp311-cp311-win_amd64.whl (82.2 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.0.dev1-cp311-cp311-win32.whl (79.2 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_x86_64.whl (162.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_riscv64.whl (156.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_aarch64.whl (163.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (157.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (164.2 kB view details)

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

wrapt-2.4.0.dev1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (162.9 kB view details)

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

wrapt-2.4.0.dev1-cp311-cp311-macosx_11_0_arm64.whl (83.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.0.dev1-cp311-cp311-macosx_10_9_x86_64.whl (82.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.0.dev1-cp310-cp310-win_arm64.whl (81.3 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.0.dev1-cp310-cp310-win_amd64.whl (82.0 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.0.dev1-cp310-cp310-win32.whl (79.0 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_x86_64.whl (155.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_riscv64.whl (152.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_aarch64.whl (157.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (152.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (158.4 kB view details)

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

wrapt-2.4.0.dev1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (156.5 kB view details)

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

wrapt-2.4.0.dev1-cp310-cp310-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.0.dev1-cp310-cp310-macosx_10_9_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.0.dev1-cp39-cp39-win_arm64.whl (81.3 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.0.dev1-cp39-cp39-win_amd64.whl (82.0 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.0.dev1-cp39-cp39-win32.whl (79.1 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_x86_64.whl (155.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_riscv64.whl (152.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_aarch64.whl (157.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (152.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (158.4 kB view details)

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

wrapt-2.4.0.dev1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (156.2 kB view details)

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

wrapt-2.4.0.dev1-cp39-cp39-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.0.dev1-cp39-cp39-macosx_10_9_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file wrapt-2.4.0.dev1.tar.gz.

File metadata

  • Download URL: wrapt-2.4.0.dev1.tar.gz
  • Upload date:
  • Size: 132.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1.tar.gz
Algorithm Hash digest
SHA256 36888f35fd95a28a8011f87032e466bca53d103d75d8936d422d2d6c822d13c1
MD5 1e247ce813a01af93096add02268d7c9
BLAKE2b-256 3da99d6f82050d187fd8f462960534d4726b7e64852bc6f6bbcf4acd31e3c2f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1.tar.gz:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-py3-none-any.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-py3-none-any.whl
  • Upload date:
  • Size: 63.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 f483975168959df0ea4b728374c30ab41300afca9dc51e77491e8dc4d090e334
MD5 2d3f8e9ae20aa7e5f762423ba076d4d6
BLAKE2b-256 796a8760a265b064f07fa15cb3236f45eb768215b9ff654b03301facd45e47e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-py3-none-any.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 42b3823dff65fe0c4133695ffd873944b4d93ea8ffc2c49007e0d56dd38af002
MD5 a93b22b9192f510b4783895f89022c7e
BLAKE2b-256 cf8fe2a63863dcd9c8d53e9a44da9334932c81a20bcfd59393db086d6814f091

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 84.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e8faa038c319b7debcce2ec574d81bfc12a9c4ceeb51db862c4f2fa2f0d6e1e0
MD5 fbd93f3f43cdd92c8e42de01b594ea64
BLAKE2b-256 9c420a13c575402c9913632233a616f86cbcf2b5e7ec055d826d335e026fbe10

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 81.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ef2c94077f42826720ddc9406fe128149a343d2a72cd5eb114c58404459ee54e
MD5 7e41cbb5cf0d1aeef911e5a420475a3a
BLAKE2b-256 8cacae1e8343a0c505e308ee70d7b6e3549abfb065582efc688cc6814765db3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76fc4ead4d69e16e1b167bbee6f52d1ba14ee81d28659765c9193a9844eb520d
MD5 9773593fc0257890574746d02c15a2fb
BLAKE2b-256 797c59fbe0d0c5054e106d50ed09c5d3153c174f5d05619a8729db6877a5bae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 248bce600d9571b5bc6f7aab85df3dcb2607dfa1f99ba86150d5b885832089eb
MD5 c2098959575f6062700c82b70f0dbbe8
BLAKE2b-256 69b5f7ebcf77bc9854ed57389d3b47932767aa76051b2242d5e0e20d60e2dd81

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da87c9bb299fe2e31e3e46f6fe4e4da0d66b91b44f73e9f0171695d9a5308b6f
MD5 dfabfdcbc7d0fe15ac0f1abb28ee7cc3
BLAKE2b-256 d1d00642711e6a6449de204a4d6117a4579bb6274d716a33540459a7e5cc604f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d1a42c586db969193feefb4c2289f4cc57a3024b5fd5bd135f2225dc100a2ce3
MD5 430bd24202b8a05029fad01cb9337008
BLAKE2b-256 b9ef3e01a273bc3be6e7cbc51991f3ef961210560dc4be0cd828e551b0adbc47

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99ebea58384cbe5a2102ef112db84e44c7034c0cd6d902af63efa415d555284c
MD5 1386a2ce338a81ace920e41d168bce63
BLAKE2b-256 dd5f1214accf44ae7cd0516b766fefa974be999b9fde263e6e2d68be605aa272

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2c9932913e219fef43825d4041a827ba0628d4d25ceed32d6b66455888f68794
MD5 aabe1033d8a04aacde384aff9f963486
BLAKE2b-256 c378d0f4be25d34b102cb09c1f94ac86ee2d1f8dd3042eafa1f68db94b37acb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cb62ff6d8aae846f1f68da034c8c3dd2aac4f68eaf5cbb6f81dba97ad7ade4d
MD5 261df654d1915f6bcf5a7df91fdd1c0d
BLAKE2b-256 52d8b57516fc76ee1a6e00394061cb6cacd0d2c14120aecbc11c393cfa89db9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eba850667404370c2edf02d49defdf4b3500c61af8694d8244d691b4df5bdf42
MD5 f73695a389db45ca89570590d3270771
BLAKE2b-256 7bfd4671e61b6cb1c1241e52f98b3b965d2a2139e297ecb34d4637302ee2edde

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 81.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a672c789195040670e29ca1cd305cb4c6570baea651fad99d76110cac2aa10db
MD5 54775c0208366083755c0fb3bee10442
BLAKE2b-256 47a76d1a2f7b8e360865436d1a4984ee013a578ab5b9500fc570b89869a5903d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 52c5304da4a68c60f73936da3217e96424c85e89d8aa85f5e0a47a6a2a75a5c5
MD5 b7ab4fe577e900225ab11b9cfedbeba4
BLAKE2b-256 ae17ec02c348250643a359fa81fbc35817494569bbec92e6ccde607b0b0a43b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 79.8 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c39cd1fa46925f3d64f90db8e09094f611ee2389606998b6391fbc4700f729e4
MD5 a0d48fb69ed11fb383a6ee7939515680
BLAKE2b-256 cdd200c10fe4c414cf5eea3dcf15a2cd8a1820213efd25821ca311ec6e027091

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2feafd9d74585834ca39a9776456d15d1529514f36261080432306ceb1f1cc9
MD5 92946964a90b111450f2fad33849a411
BLAKE2b-256 64ec33f4204bbb82a97fd708bf2001f43154591a57cb2c464f4b89f0ae356b85

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e57d7b3a72552519dfc3ef363875ab267596fe6922ab96d8ab440eb475d3f43e
MD5 1107f6cfb157dc304c7d9d1638f01b73
BLAKE2b-256 19ace8401feb4d7c03e8950c7bf78bab15d1c4641f069fd4887c6ce41d982687

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5216ab6a6ee3f30df30b63f1c8df6027b2414ea62e6e097b59cc836706d726c4
MD5 8469d278b94f3f815f50cf8c5dcc5f29
BLAKE2b-256 43edab1eb318e80431bcd79c84f1643a600a7275ea67bd6476484cf2724368b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 28df98ca72f1016571413f2dbb2ed80a37021535527f3d5f65be518013ba234f
MD5 3b546305ab5912bf69414ae108cb6a23
BLAKE2b-256 b1822ba9cdc209f4563fc72b87156904139b4dffd71aa3d05b93f4a47da7f241

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 484c0fb6f45ebdb269e443718b151711f8ddd65172d8e52d81c538633101efca
MD5 5ef8590fd17a094ab47964d7b62cb7c3
BLAKE2b-256 37b010b89f701d60fb9c01f645f2b43ddf4e5b46ea9e8cdffa9e2f353eac2558

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5d788d138f75784abd1887874e212b4291a4dddfe8a7719a99a7c0b74191c393
MD5 549f1f7f1f464ef0c4388b36731bb26c
BLAKE2b-256 6195a2dc496a64b9ffd6c8caa21170d35be046fc48f43c111024ac129670c75f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2563a658e9210e1fd0bc88010ce987086945097304307ac803188088aae8a96a
MD5 e75174983e1960be77961c5ee86d2572
BLAKE2b-256 d7ff8581765b314972706c68d9c14cc406b983a6421391f2f9c01804f7be0a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5b4a66e7beb50ef6a0e0972ca4c97ebbd98b55a6ff00e53e071806d0a7a0ba7e
MD5 7a4eccdba71e31e61bcb9fffc0123ff7
BLAKE2b-256 c5049520a5d11ae9a507c037f58df2cd9ebb59ef3ffc7151b8b4561bbc53d5a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 3f0079dc5906da790f65bb67027eca2ef31a18816caa04fadf04c03a56390181
MD5 b5207f81f6cd2862d816433b37a2f706
BLAKE2b-256 45f565c00cc5e8aa0f12390dfec467d87a91c257f53726098de427520df93d86

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 84.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e7789d5be29b32da9c60df5ff578cd04fdcdbe7839b97f21fe25fdd4c3a91532
MD5 add661cf25566872eda7e4d7370581e0
BLAKE2b-256 89046ad61b639717407c015799df95e0f337a7b44e94d68de3f7d25acd874abc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 80.6 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4be15932862bb5b97375ea89c4348e159b24217cc87b06d2b8d391982418d5e5
MD5 634edfd210b9a7d778706ea8b4c55ad9
BLAKE2b-256 f68419653c21d8950e685fcbbf18fb7afa52d831c598ae582883716918968566

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e83f15bd2e267b60f0a103dbd42afc9fa4b498d4d04c259cf9029aa19ccdece9
MD5 8f4cba09d66d75f9e298e46851b227a7
BLAKE2b-256 ff18995f3ddfb16735fb512e6fe22138c2ef8bf9a6ce1b9a0b7feaf0436b8f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9d306fd277096fa113df80835a167486a3c0835db0ee4ee8183641f044fdb629
MD5 0dfc52b0f29045e807e3437b042bcb10
BLAKE2b-256 0927355dd06363f131378affd96ccc0d35ea1aa1cc0a453759aeb3ed224ef24b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1b23ef3a1ce7917352178bf9a91ce6ee596a7c161dc44e4c0a9429ff0cd8b73
MD5 25429deb8771d41dd6a5d0d3b9b3cfac
BLAKE2b-256 93643a51e988b88c6d12aa572a4fdd739590ec0a4eae43d57f76430ff33cfa76

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9121abe408601014dcebd85a7cb8af53af2b0453c0ca5b91c76608a1d6548a83
MD5 40c80c949aa89e14a1bd82b5e47111a3
BLAKE2b-256 f7393175fb59d373752d405c552b87994a3205da4340109277d67c7d813d0a30

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 403eb8e107c32e9605294f8e0a481bb32bbeb67a83e439c64d85fc528d0f3317
MD5 096a751d8608c21db54553ac5c1a74d7
BLAKE2b-256 49f0b7b5a277702600ea9bc1e8ff3911b511dc768bed098e9255e9db109b4086

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5efeb8765a7d7b0ecba40e4881fc8decc55afe4457a50bbb4dd6e7d356b248d4
MD5 5c13c707d6a2efe3c2ccf9a53cd5d31b
BLAKE2b-256 ccef0ab4665b2c4074565e815a809ee8f40ea1aabbc77477b2fb908724e11bee

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5db8fad3fae578108264f7bc511d9ad9caee500edcae752df433ee796a455fc5
MD5 19c113cf588473754b004475d9c599e7
BLAKE2b-256 b809acbfb2833affd5c7f2f47a21c34287e6fa08740ecfdc35e7dbc7848226cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90792894502f471c864f315ec75827a53c086844d358abf69014cdbe823b97f0
MD5 2888c6a9e53b2ef7b5b4159b25a47d75
BLAKE2b-256 2d7fe0f5920cf8af5f341563f295f31d542c43bb952e35ac09a26689f460d2ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 81.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d7326dbdeb06b184efd73cd4d071ae18bdc41093e0a872f60f17cf199f50b757
MD5 fc949490eaed72728c622202a5cdb1ab
BLAKE2b-256 52cd2a70c08119df83900f96b1bf0c295f61cf5fc6f42e491f63d5a0138c7e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a42520dc8a4fd024e6754f30bf694465057095574b98d114c3907472ea0ea717
MD5 af9977a346ebfb3ec0c6422fff32eb22
BLAKE2b-256 53b16cfdbdaa9b00f6dcdcb01314a46671f32207febc2d6dd6e8c2dc9236321a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 79.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7d33082623f94425c2e68c9f4908cd8553094d14cf448d2f002aa6ce237aeab9
MD5 be8c26891f0154f1ecb591b0df341c2d
BLAKE2b-256 99546b7a281e17c803969ee1500fac78037bde3d071389391029086dcec02cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0ba2931fa9e26d1d8e9fde65943f373da13bd9d788e6518efb512b9ee56d873
MD5 55f7fbad44a93b3026e04ac8d7db38b4
BLAKE2b-256 3d4108cdd37b3b398fa1cc78d987850ff60f7e03bcd69ccaa26f2562bad9087c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b152d96d3d01cd9b62dbcab8895fd5e56df7780eda1a2fc5b58f406ef88b03e9
MD5 8146404fc37197a2dbd15ecd9909a9e4
BLAKE2b-256 82e56d5e023d31da2fb7e04c7e538a2cafb23827469c6ec1817484f36db1952d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff9812c57335b575ea468e80938fed0beacae8b51d1485401bd4ae40b6e0b2d5
MD5 765d7fc67997dcfdf2b5f61a3217f717
BLAKE2b-256 50728f7814192aa0d35fc2e80757f9d61c12062944c6031b2aa0e922e50d4c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fdaec3473365e95e2086dd026a4cf27701ac9e932527945671d8d80deacf76e1
MD5 d44a29da475ffedfcde13187b4f5fc43
BLAKE2b-256 98a078b35058e5ebc571c969ecfa9f22431f88732fe0ae006e2ff264d3d72a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f76ec585c0989e82bba68420734669f08e56639b24541a13dd053c826678594
MD5 d536ebdc1b6e7f62d0dcfd8bc1f3710f
BLAKE2b-256 a4770695054786bf86dcd909a77127493d9b349a4f2e46a751b54ad741aa6c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f9fc732bdec3e12ce41848bc5cf401324be8a5250d463e41392dc4a32e181bdb
MD5 e4a3d20afd2f41843c43712664d7b966
BLAKE2b-256 093c3888bd57d13a69939e20e548ee24688f0c04b5948a865d626145326787b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 801056ca6c7e5c91fec58abb4bdd0998347b55fc574990315f6fba86276dfcfe
MD5 5224087ace54aa40253a4389b1b92f6e
BLAKE2b-256 629e43541f8ec5b41706cfea0fa1e8ac4d266d9f478a41cf4d227378fd18d42e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5a360f731e4ea6c2a0a83e2ab281b0d5b994590cf1634f8b6148c6240f71427d
MD5 602fd3410c30246621d67c25958089d4
BLAKE2b-256 b3f986b16c04ab7f5b3dec87154287ed18621c621542128d0895ca090990cdce

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d17334346ab88cc9720ac5f3fa139272c5fead92af69b5a2cdee5f2a7429c872
MD5 dd7b79c55aa8faf0cffa9646da46b22f
BLAKE2b-256 b646dc3d5a2b370c1f6b8e4b20911dfcb8daf0f0ebfd34778f7908b13690ed8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 495fdd49c8519a9e35c21bfbf2fd9dde4cde6c67693f2fc30c645db177fdfe3f
MD5 772085fd2b65a817cecb1f094df3e894
BLAKE2b-256 aa78630882a430426af919488bea634194da2c41686597c77f6bd577c098a7c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 79.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 32d5934f652b7da573d38733855c4e2750decb31bf0364be6536ddf0b9a2cfd3
MD5 486b39ead16ba5b14c38b5a98a807bed
BLAKE2b-256 af6ea6f78abc8501c72bcdc5c02cf72093a226b8e06a054e50ca7c599bcd9fbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2269c44109141c6843d2da9f8b9dd02f31428fd41f6b3ae27b5d36c7f0924f58
MD5 fba1ca7a0359cc892e9ed91cd95b8508
BLAKE2b-256 34b26fbb753ac1a3d0513f8a10fa9aae59cd0c58369fd3d4dee93fa502ed7881

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b9e15b716365a952e3bbabd0b957508def828ca3fcfa416eebcf56e38eafa2f4
MD5 325d0301ec99823b25d7539008a1fc65
BLAKE2b-256 586091cacdfe06f668e2a9724ddde3b1c1c18965689c91e182fffef46391fab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dc971912cac42b2bfa97387ad4dbb466e91f8edbb164839deec2137fb524917
MD5 edc8e2bcbe3f5f85b8d93d77b768a4ca
BLAKE2b-256 2aa13239a222a764c951b45b8b7fac8c846e68b08033f79710a4d7d02db82b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5c3fbc400cfead6cdf0ccda555a443506f594a49132dee3b666b49b72dad0e4a
MD5 9efc9dab34ca6a51fa1925df183dd5b2
BLAKE2b-256 48a4adf95f1616cd35fc7bef1b0bc4a48ebf45895ba527d17a688142d47ce63c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77ea1f3bd07d87788e4c3c918d48bfb72c56ff788186e98abafba97294fa45eb
MD5 02632697ea3d5d7768fb8385f140887c
BLAKE2b-256 262993abc2882a715429e5309d7bfb99d17e3c6d203631774f0ae7dd4a9877fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fa0cc6de7b9ec5ead28d60991490d4397e25cca460f8a872b673a700acab2f9e
MD5 1eba10b728dbc2ceb0605cc6fa8b5850
BLAKE2b-256 d749a3ad2f71d09d2f00a8b645c3340a76672b6bd634411ea8e05637e9ae73aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2a8212c48e3abfca870727c90768328f94bb116f227e1112d18c873bace12d3
MD5 6653c6ed74365a9b6baaaf1a062e3bee
BLAKE2b-256 a312170cbaedef1de2bd0906132f48dcecf9a3a71e712313300a07d34ebb1511

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a4e7fcff646beae697b99173b6f04930de19fb99387ab59a00d130b579f0106b
MD5 14330bb2d93d2f1c27ec837aad8d74b8
BLAKE2b-256 f569a767978bf987b078a8ab58014ab3b8a0b80c529f32f7b5b4094a4fa6dc6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 81.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b03ef805df0d8ca99a8c3448e88289930322f77f3827397c4b5ffd27f0259fec
MD5 2b2bdb5365d66439b22ce7287cd42b0a
BLAKE2b-256 adb9c4c44fdbab6f6c1d557e63118d6cb4380f22a3f763b4e91485c1205801d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e82c12fe87833c99529a860a0fa33504c98ca61f5a4927e2d2a821e4abd59bf8
MD5 456af5fb2cefad5bbe3080b7c7eb1358
BLAKE2b-256 2aa912c23911074ec4e2e6fa999a5a60088a18b82454a37afaf3028a06fa5953

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 79.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d65e1345fcf3c08d331b9a9e46570323998e74c29c0f31d5e21bc367fac23ae1
MD5 27fca646cd31c59165c9b8913b509e70
BLAKE2b-256 f9e80581652020b4de9a9e0c0ada4eaf72c3395f97876d5808b60eb4a6912649

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b186c2a2a27f84b733a32811424177e94985a73aebccc1f8666009bf642c90f
MD5 0fc6185a35e1d2b4c0c993d95ecb0f45
BLAKE2b-256 7f9a11a7fa183d82ee64e35bcb766291d6f03162cc2b101fb3ea12fae6a0d57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 665bf18a4a99e155664f59028cd88d7d7042f764c1930e8a83c23fa76b83a6fe
MD5 e2775b1ab4874b7ef0225220214eccce
BLAKE2b-256 9b7541891837f18f2a4cb00e575200e25d453b9ccfc2e85e6f2f1e5a9beba434

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe82a89ae96796e1e20bff4333ae31886e5a6f3b3b93389b03e95c3054e31cfc
MD5 3095e82fcc5cf003098b87b8943985b5
BLAKE2b-256 ad16b0af6509181499dd13b1a80494e7da928e397c1dff2319abf8c5c83b46f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0aa8e22adc522b39f6050b35289059e2142eb0296a864e775876b5a9a9a58a88
MD5 ba8c3444794048f949dd0c0f46a8dd62
BLAKE2b-256 3c9309c9f0f84bfdcea7301579232da14578e162a99ad393bdaa1697a864c4f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 117eef6c505509ea5799ec71c973f4f540e9d6d5d1072cec392edff0beb854e7
MD5 506d2595470ce98fb13d58bc4699b10d
BLAKE2b-256 cdaf29a08852ce803ec3932426d9d3e13e3f2683651578742233ed44fd7ed270

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f721034a5a06084e289d6fd0059ce7b99b4355d69b77b2350751704c3afd03aa
MD5 c65afdaa5d89ee441f245317b0d0f866
BLAKE2b-256 b646b2b289c06ca22950a10068acd721ab94561b398a8104b7b61a63e78d8fbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be49524a966634860e9bb014fc9d955725a1f430136de5593b1023b1d865418f
MD5 24c07a0236dfeac2829e8b401a3aeb7a
BLAKE2b-256 81e004bd559a2a142ff2da4ffd03f73f93616f262ce04ddae318a07eec5874f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba0f9339eafafca92acb81b20bdfead1f64f1a66b3f861f7addab96888fb4ab6
MD5 4ceacf0adee68e6b7a85b9aa1ce0d78a
BLAKE2b-256 9f9924beba1e1b43eab0d99136a27bcdd46d11f43ec820659e6ed3740f175943

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 81.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 99bc5d81fbca0d3c577d6df03a38a41c7d4096832461685673d36d9f39f25b5e
MD5 bea1e6a4af9f6367140a76e1ca2e413f
BLAKE2b-256 cb875ae347029a0ada558fab3872cc1884bb2289269adff00cc70a26247936a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2901942a528ffa25545475ad81beb0d2f02df7c0b3b908d5bef32d459d678d63
MD5 186f4ebf58ad8ac6d0d6b0166a0289b6
BLAKE2b-256 e5954ffd7fff80d5f82823265a04b94bf5d127d0b58d81f0c7edb6b301b6c4ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 79.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ee406f0614ab9ddc7f3b8eba9f11dcfab746312fdafa49c3dfeacd84ffa33afd
MD5 24b160aea30c77242cd0f6327d63231d
BLAKE2b-256 b6d588ba534ca352773fd9a9039c35771db9b0c9550cd970f84259ec8f76bdb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c1df3b1fa64d8ac54e527b36630da2a92a630a0bfe60a2adad7ce6f1877671b
MD5 a9da7a07e320f60e50cba1acf77b4ea0
BLAKE2b-256 44d50714982fe2b803d2f18cfbc0aa32a465ba7c1e5d9e33a469284a4ac9114d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cae141d48d51eba4983e3bc753a68980fd3da3a842711022e63b80e91915f39b
MD5 41c3dfb89c0a114f5f9e505f070117bc
BLAKE2b-256 e591de446f0921da4b7f44cd7ed1927fbfb79bafbde973a730ea3db3e4c13ae9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed0118a7fb191bf0e03aac193480460bdf5c1c0a9ee2d1acdf79adce871f4611
MD5 a69650d8a95ed7c532d7fe7bf309ebe0
BLAKE2b-256 316ad2cba98ce6b9e33d8a7274d1414504d444f1e3345274b0e7c0735ee3ab39

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bbc87335dde6e3f01bf71e68451a19dee16365058240aac05090e50e85ef9744
MD5 5e4d5b797f7a15d0a4ca919f755dadf5
BLAKE2b-256 61d50b049b6b71fcbe517fcabba1636971b1045e3009e4b8e9e9469494eb49cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b7b8a4e25cc76431bdd00dd49c695f6f4e23f30d5661356eb4f7e3b29f3e897
MD5 bbb4312c827baa91a9fb08444e6f1c73
BLAKE2b-256 baeff681f4fb846b9d16e6e0946c0dab6e6aa7cf955a3302125ca7a7e289cfe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1ca7775e5de6132ac7aee7cd1c19b3c1d0f90cb05fead7077e9fe932c4ddceb2
MD5 272982811d376e5d36006cce7859a6bd
BLAKE2b-256 69ce29603428b8ab459df9a0582f7a17af24c535e48cf2a7fd68928b2afcd598

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27b83f4ceda384e3765fcf418d2b200aa49c46f906fe8fb91b315a6b8af74162
MD5 26c8935627a5ca3b448cec830c979398
BLAKE2b-256 2eb26d06ed6a6b51775f0f8413f4325328a84da590826ce131dcc50ec505cfbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4abe68996d0a15e4149cafd59129f4272d5d532f4bc4cd22dd8343242bcfdb99
MD5 f4a6eccd872f60c601369a1290e41fa2
BLAKE2b-256 3cf09a769d4859782b3ec2b6b6021abcf37410085334b304b1f7f4dafb71a0a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 81.3 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0d50cd91aa4ff931370a1732bddcdcfdf6839b7be0fb61bb2d5372a9014de993
MD5 f2ddcb4b3bddc14a407f262aacf24d0c
BLAKE2b-256 680bd67af45a006d2484069c70d4db4e0298049bd8d2cbd23189a88f016b663b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 82.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 817973408111b1809b95d08015d4e8a22fcedf6d77ea485b24d49502463af66c
MD5 b8f5d21a18f75f5332463edcbf9d7c79
BLAKE2b-256 624644a6cc5c7ad6f6857a7e63a3c0365c6cc68d5970fecc5e6fc76abdbe1bad

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 79.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b2badd9c5af51aae2d6f8aa532886da831a2601494a43a8e62ca032e7df71db2
MD5 9fd389b11bc074a70884dec34ef76b23
BLAKE2b-256 20c6bcaa65f16f75e495568c8c313a623f0251c5cca6a2afd6dcafc668d386dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55e47e57aed68c59a896d1ff9d2a7abc201145aed65628b9ea10c41fbe276e3f
MD5 6c9d7b0798f3f98cd7018eb1a28a1404
BLAKE2b-256 fc7525eb887cb698c6e0567964ba31a035d7c196acb289ca6b8f28131075855f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6cfe850c0395d79c4ee4a194cb59abb72d9e647c8d0b07117e258f791789b40f
MD5 8a9954d1bd7d2f02b8bb65842d8f3373
BLAKE2b-256 6bc635159469d9e9dc2eaad0555d4fd23ca8fc423071c5bbf7a508f2516fa898

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 351fb8e4ef61646505748da916bfe04286dfef3b09bc89fda3e70f209db9ad03
MD5 aa1116529296cb8d89c0ea2c09fde8fd
BLAKE2b-256 86e65e05abf143a7f14ef5cb14f724edb9807471d9df51f5549c7d6c2ee0f0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e8e9bdb0ddb41a18a25c910e9e939b25c24e030d50b73f90b6538fd6b9c953be
MD5 c29671a9d4bd8c9fe1fd0923404a5472
BLAKE2b-256 cf79c0907faad85c9eb9265067542d2e8587d4cabbb2ed955efb19890c551020

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcb30674605cc51f58b21e87449ef8d8c7f89889be5322e82290f008991b7b5b
MD5 c5a8cbdac3db3b11a09c0659e37bfa47
BLAKE2b-256 9add4bef62b20ef40a39236759498775fe8fa58ae1fbd2c70169c0650133a68a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4496a4be15d3742ce8c907ca9d5c98277113efaf39c669a4721c8d09411968a3
MD5 5b8a29b95aa648fe3738de98c23c0b94
BLAKE2b-256 7321ab2f97c06ff61d27c68d247d6498b3bb568c351257faca9b973b15ab986c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e65452ff94de170dcae03257f36daf1e674b94e5b5c0faddfbd4b6a0f892870
MD5 6e5a20b8d14b1ce38fc231eecab2a6af
BLAKE2b-256 a120a73d7b2e32e61c75d59d21b494c0a28942989b3d0b825c65dac7933a1381

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0.dev1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83c8c5fec067a1658088944015ddc2633362da977d8d6e1fe127568db774e121
MD5 d280f8b1bc3beec2134f6fb752d5fa51
BLAKE2b-256 dd3d32c134bc5b5679fa01d671f2dc014938ec8e74b18288cc2ba97012f116da

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

Release history Release notifications | RSS feed

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