Skip to main content

Module for decorators, wrappers and monkey patching.

Project description

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.

Project details


Release history Release notifications | RSS feed

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.3.0rc1.tar.gz (131.2 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.3.0rc1-py3-none-any.whl (61.9 kB view details)

Uploaded Python 3

wrapt-2.3.0rc1-cp314-cp314t-win_arm64.whl (81.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.3.0rc1-cp314-cp314t-win_amd64.whl (83.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.3.0rc1-cp314-cp314t-win32.whl (79.7 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.3.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl (202.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.3.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl (196.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.3.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl (210.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.3.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (199.1 kB view details)

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

wrapt-2.3.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.4 kB view details)

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

wrapt-2.3.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (207.2 kB view details)

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

wrapt-2.3.0rc1-cp314-cp314t-macosx_11_0_arm64.whl (84.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.3.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl (84.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.3.0rc1-cp314-cp314-win_arm64.whl (80.7 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.3.0rc1-cp314-cp314-win_amd64.whl (81.5 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.3.0rc1-cp314-cp314-win32.whl (78.7 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.3.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl (168.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.3.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl (159.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.3.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl (169.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.3.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.9 kB view details)

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

wrapt-2.3.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (169.4 kB view details)

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

wrapt-2.3.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (170.4 kB view details)

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

wrapt-2.3.0rc1-cp314-cp314-macosx_11_0_arm64.whl (82.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.3.0rc1-cp314-cp314-macosx_10_15_x86_64.whl (82.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.3.0rc1-cp313-cp313t-win_arm64.whl (81.4 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.3.0rc1-cp313-cp313t-win_amd64.whl (82.7 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.3.0rc1-cp313-cp313t-win32.whl (79.2 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.3.0rc1-cp313-cp313t-musllinux_1_2_x86_64.whl (202.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.3.0rc1-cp313-cp313t-musllinux_1_2_riscv64.whl (196.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.3.0rc1-cp313-cp313t-musllinux_1_2_aarch64.whl (210.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.3.0rc1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (199.1 kB view details)

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

wrapt-2.3.0rc1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.4 kB view details)

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

wrapt-2.3.0rc1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (207.2 kB view details)

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

wrapt-2.3.0rc1-cp313-cp313t-macosx_11_0_arm64.whl (84.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.3.0rc1-cp313-cp313t-macosx_10_13_x86_64.whl (84.0 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.3.0rc1-cp313-cp313-win_arm64.whl (80.2 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.3.0rc1-cp313-cp313-win_amd64.whl (81.1 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.3.0rc1-cp313-cp313-win32.whl (78.3 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.3.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl (169.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.3.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl (159.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.3.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl (168.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.3.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (161.0 kB view details)

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

wrapt-2.3.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (170.0 kB view details)

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

wrapt-2.3.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (170.4 kB view details)

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

wrapt-2.3.0rc1-cp313-cp313-macosx_11_0_arm64.whl (82.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.3.0rc1-cp313-cp313-macosx_10_13_x86_64.whl (82.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.3.0rc1-cp312-cp312-win_arm64.whl (80.2 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.3.0rc1-cp312-cp312-win_amd64.whl (81.2 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.3.0rc1-cp312-cp312-win32.whl (78.4 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.3.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl (170.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.3.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl (161.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.3.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl (171.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.3.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (163.1 kB view details)

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

wrapt-2.3.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (174.1 kB view details)

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

wrapt-2.3.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (172.5 kB view details)

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

wrapt-2.3.0rc1-cp312-cp312-macosx_11_0_arm64.whl (82.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.3.0rc1-cp312-cp312-macosx_10_13_x86_64.whl (82.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.3.0rc1-cp311-cp311-win_arm64.whl (80.1 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.3.0rc1-cp311-cp311-win_amd64.whl (81.0 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.3.0rc1-cp311-cp311-win32.whl (78.1 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.3.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl (161.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.3.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl (155.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.3.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl (162.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.3.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (156.1 kB view details)

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

wrapt-2.3.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (163.0 kB view details)

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

wrapt-2.3.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (161.8 kB view details)

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

wrapt-2.3.0rc1-cp311-cp311-macosx_11_0_arm64.whl (82.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.3.0rc1-cp311-cp311-macosx_10_9_x86_64.whl (81.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.3.0rc1-cp310-cp310-win_arm64.whl (80.2 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.3.0rc1-cp310-cp310-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.3.0rc1-cp310-cp310-win32.whl (77.9 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.3.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl (154.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.3.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl (151.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.3.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl (156.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.3.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (151.7 kB view details)

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

wrapt-2.3.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (157.2 kB view details)

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

wrapt-2.3.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (155.3 kB view details)

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

wrapt-2.3.0rc1-cp310-cp310-macosx_11_0_arm64.whl (82.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.3.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.3.0rc1-cp39-cp39-win_arm64.whl (80.3 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.3.0rc1-cp39-cp39-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.3.0rc1-cp39-cp39-win32.whl (78.0 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.3.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl (154.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.3.0rc1-cp39-cp39-musllinux_1_2_riscv64.whl (150.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.3.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl (156.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.3.0rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (151.5 kB view details)

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

wrapt-2.3.0rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (157.1 kB view details)

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

wrapt-2.3.0rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (155.1 kB view details)

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

wrapt-2.3.0rc1-cp39-cp39-macosx_11_0_arm64.whl (82.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.3.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file wrapt-2.3.0rc1.tar.gz.

File metadata

  • Download URL: wrapt-2.3.0rc1.tar.gz
  • Upload date:
  • Size: 131.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1.tar.gz
Algorithm Hash digest
SHA256 1fedd734b9dd384462f8c9b6ca7efff4f3a6762fb5473df22d981d5cf715e2ba
MD5 2269734f39e553249eeb7670e5d34768
BLAKE2b-256 6d89ee223837c902e6efe30b2c36f5227c8dfc5e81fac89efbbe426820adb930

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1.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.3.0rc1-py3-none-any.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-py3-none-any.whl
  • Upload date:
  • Size: 61.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 2e625906b6a8c3e41a55e1fb07251c16e8c349e1b0528d369705e12fb4777415
MD5 c66087b28a18fa1b3975357d75036089
BLAKE2b-256 34633ca4fa576d8e62e3d748a58406239dfe9971c02aba042e3141d7288cf8fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 81.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6021328f066845fa501317dd1a0252ee1a8cc49c0cfad1d9fbef72e236c6a152
MD5 92e1634048452ca4ff8a3ee5edad6dba
BLAKE2b-256 0be15aa39c715e9a2fac80c5b74db2811e212d66cf6893b268aed5b5e21b1acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 83.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 30ffe30371cfe143f47c54b48c255356d06d9c989ceb6e53ef435121287c925b
MD5 216520cfec118f40233cc23141a1a562
BLAKE2b-256 5f34377115ab1dbeb2cfbbd55a3a68d7c80085e4599c61af43aa208ce6fb2e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 79.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a2bf46dbd837bc232dc588bfdb91c740868f94172d32a2ec75edc955e3835060
MD5 2986b30077e6d619bacf6eff94a3bc9d
BLAKE2b-256 3c9c0b36dbd9ea14db2a4467f0d12dc7d0da07ed1d5e5345c4d7b991505307de

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e865800010011c5ffb4ad18728d7eae23d217c58b702926a88fc57766e005ef
MD5 e85eee17e9e40c2e90ff94520b79c167
BLAKE2b-256 c82b186a4fa195740abdc6f950bbbcd1beeb25ca0ea273eda1c0eb9120edfb01

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 52b3e50148c226484f75d5a2ca38927fa4b3d2ad9bad3f65f7b020c188724926
MD5 6b00f904a6c121dfe0262f6977745f70
BLAKE2b-256 3da785acfa65829504ca43956a3926b995e84d36edb521e1bd36c23a12616780

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78c814e71dce23f2c382d36486e51c3ed9c20efb22a975ae6daadf8ad1e40c2d
MD5 65adb783c7cc90e609c2bf108b1837f8
BLAKE2b-256 e28395729dffffdd7f071c8b59ff56f7b943fee25756fdc6f9633d1c5e2b73f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1035430e5a8ed60c95ca45f7c037427cec81a86d6468f7116b9e4a3088442fed
MD5 b37ab8c2a6b772f9319748714ce4c77c
BLAKE2b-256 695bd3105841fbcddd35914874d2318e1034d93db2d220377c71b43e9ed3a89d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87585cdacc579a4575635b5666a050cf3ee8aa691ac65cb3efe4d0a7a2826bb8
MD5 ba5746dee9463e5cd2659142fa956155
BLAKE2b-256 afa6caf318b5b9f59eae72920227bc189d54751440475422701b126c9a99c342

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 afa25c02307ffd3b149464b79b89a1301b130f0cf48a096bc0e5d972b6c39757
MD5 206a634ddfe9d05429235f72107d86b4
BLAKE2b-256 069ce9685c7addfb9015a794c0d59a89c62fad37ea8bbf5ba7ac26de1cd6cdb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4c9e9d89681ee5aef716c83c57a93a54af8037650f8ebbe2f353b9f164dba1c
MD5 4fe15f08966687fe64af745dc5e44b02
BLAKE2b-256 c693143ea532e764d289e9f403d01f29f4c7e02586a653de1f92f1ab70308348

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 87190ed232565c4bf240770f12faf8fe5f47ef84f4e5b5966112c93650809ede
MD5 e8755101f15be6df247d84d722b999dc
BLAKE2b-256 35d47ebe86d9da9571ebfc7ce6b70d0bff2562e0ebab2bd0c14f7a9b34d01961

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 80.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ec03b6652919866cdafc32c683620f0ad7fe0c6575794c9f0af05f7259bd16c8
MD5 358610982ec28e49eab0b5075f5d7bb5
BLAKE2b-256 12b9afb2ad7cc18369f7135422f3e53d5da217e18e143e946cdc9e30cf60631e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 81.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c1112ff79bd25f848f65008d361e963e805bd7be36ba053cc9c41607278f58cd
MD5 c9703886b991d38808869b221867bc98
BLAKE2b-256 3a86c1a15ab7f2ca962847c004d48b8ec76ab9fd16f410b298b19a5f23a8b927

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 78.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b6d5df4750d38fed4f260c1b1a135718f981dbe94d684fb6f90d2a8d07af79b5
MD5 1c276124d3235d9e0f4ff603622b4a6c
BLAKE2b-256 67191cf5d818211157db8a19e108351a4e732fdb8263410aa668e660a7e08612

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4eea2cdf1e8836022090d0698c6bdb7a6162f74872523ada25900d21827284e5
MD5 d25e301a427f61b42514ae62b1a75de0
BLAKE2b-256 12291120b0739b348541ebac06663026a50ebb5d1da81165fa9299eae7188e92

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8a9ac770216df31e52d25ead72fc9a2483134b2689a2679f9514903c9a6e5028
MD5 8a6ce3988b2e0ec4cc42d72543c6065a
BLAKE2b-256 1651fc5a93ab4697720e09ca7c4a912dcfc9f01765b8438842300e1456e0f788

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bf0da631cc3c5eec5300f50d2f8d3e7e89b6f6aba8504c9b8934948288e7cbe
MD5 9833c48adf72f1b9a931d43e9abe568b
BLAKE2b-256 1307afb548f20abd14a1b4a6385db2849db18c5efca3e47b2ffe3dc2da231006

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5c86e84116ef772ed4eb9ce52603a655cb746be76951e8e6b7872324165f0c61
MD5 1bf44c0d03402dae029d27f0d1e0e1b5
BLAKE2b-256 2d67ae44287ab0e12df576cd098efbf1a61b7aeffd4a22903a246b289ce80b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b232a94f840e0edbe8d4d06811d3a346ec612e0c959b6da82b188b20e2c04ca
MD5 34c60f147223b1f9414a145e4b17fd19
BLAKE2b-256 6d28573b9dcda9144bca84ab6f973e1acc7db008fff2ff733106de690565b3c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bed872135361af05b3761157cf098bfce7b24fd02ec363247752ae9bc287bc02
MD5 d8bc4142c6f48e08ac599cf49de10a81
BLAKE2b-256 d14fe99a6f3eda84e3881e03681aecb92a8506e01b324088047ffefd0764da2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4505bcd731232528bd262dd026353ff8a94e5ff7a5035084b1ec930cdf53b7bc
MD5 6916f14e5d8876bee4486d7de3054f7a
BLAKE2b-256 88aa75b4c48ff52fce46298fc214b03bed04268981b2eb7d09e502631f58d468

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 433154f96eca04ad6f47ee66aaf6f6ce149f7c97cd011994e0f1778f08330daf
MD5 0ee6e8de4a8aee229ebe3b6240678d0e
BLAKE2b-256 b04733f5b141e6dd41056ce824cc35a2de8d8dff11848e4c678f903ecc633692

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 81.4 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 227126c49f093b3e7703db326c1bdee75869a4b7e43d24c9c3c36dea5bdbcd5b
MD5 4d827b7be91e7618b9850592f74b4269
BLAKE2b-256 7085549f65a5ff3c92d5a118a9d034b0c81b55deb8fe35acf93ad98099a9cbe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 82.7 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b2bd617c93528fea931296b8df7c1f8a12adb351bae9adacc381ac95082b790e
MD5 8c50110a1c446a7cbdfeaf2981b6a558
BLAKE2b-256 2698633546040cf93f1c8c4f17c5941edaf281a042e738d31c776c843d83d985

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 79.2 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 95646a7916588da08b3cc87a176c02dfd831122724eb9e6ca8e321f10f568cf1
MD5 da3c21097062c9da2c0eabad95216c50
BLAKE2b-256 bb2f45196e63932d548261d8cff168561ae7688c459546fe68cfaa7123c727b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da925781390f447644cb9a46582315dd6d8ec11e1779120b3f7922dec62cefe2
MD5 0e224aa4626b6f508cecde86cc46ee32
BLAKE2b-256 4263d126cafe0db4fd13a54ebd6bf5bdd99b1fbaec54d402f723c2a671708d6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5ff9627a7bcca3fa4116c0f1f0652be750222c4bf03ae2761af954e5ee3a3841
MD5 8d7dba1c7f73ccd113bec4c4d69cf92c
BLAKE2b-256 7afa3d63bb5301d4d592dad2ece596ad3f6d4d4c49721edb5a52eee7cfbdf47c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90aa1342b9c8998e3fb5d737e8d87e102aa86818a365a6666341bd4429879035
MD5 01804a45bfac94f1fc951ae9c08c241c
BLAKE2b-256 1bb0a1a3631f67aa9f1cd81c0f78fb3185aab9ffb1b79a73af08a4d0c3bebf7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fe5773ef5c6e3277feea7ebabb3631241c0ead041a2715fac26e9b484789239d
MD5 76022750ea2adeb25d7de7330a4ec77c
BLAKE2b-256 ea422a1e8b40dddc87708cd7947d46198001cc788a59bba657b99fe29aa32f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bca7b1d5c9a1235957b05083b40db7c87048426ebac376517ab55b856c4b2d0
MD5 02cb8530031484b0b132843fbb47a6b7
BLAKE2b-256 64e4fb3e6013b69ccd0539af98c2c7bc9e0bdc17ced327f8a24862717af0976c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1f73460da13e87850f04362f412e9dfe86330df0007ae9bd05a49d3f6155ec1c
MD5 917de31137d19269348b36a5f4de737c
BLAKE2b-256 6b4f46cce788a895414b7847c95b8de2cc4c5de0a24a1096a39998ce201548db

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 419d26540e3535839beedd0de85faad45e3791b89ac48890a17e2252f064a3de
MD5 dc3e8ed45ee2f9d4deb4cd9b6271b22c
BLAKE2b-256 ccc48879c6b9a0e84803cc9445b9d8f8d56ab56228622ccb848e9c3a83484afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bcb8f5b26a6ce0a4ea4d7583dcf512fcc91c321d0694799dfac7fcf3f0d4ca2f
MD5 1e54271c889bdc4e3dac0bb1711d7ca1
BLAKE2b-256 382d14d46e3f77f3abd1f21f8dfa7b07d3e03ef260b09a7382c466dba75f6400

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 da04a08d2619df42b5273b28cb78e2a426eab6239be738363829f065d2f9a83f
MD5 cb110ff9b09997998b1e64b9385c3540
BLAKE2b-256 11fd9789574806bdc96080686e978a12baaf917d064c21d7f195a9bd4430b4aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 81.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4538321ec99845f68e98de4c50802b959b6169f84bc8785292338c6cf8861423
MD5 c945542523acb101d7af43d4e26bb4be
BLAKE2b-256 2a6e503066d8e8d5474c62045248a71a84e12ea44005dffb7fe7c9624fc02a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 78.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 efb5e35575efe5992e6d1bb7dc40601d01b25ef25e2f94941bc4969dcf8d8d17
MD5 124460441bc67da993da0ff2bae059b7
BLAKE2b-256 23fb2beef91f08e1d16983f939e514b16f82ac85d546c3da908f415a9d94eda1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40b7ad6e1b75a1173ea889f8abda98fa1b1d1bbcec6ff42b90473c9a245cd4a7
MD5 4f5e4da0394a70e590a8b0f9a3a78889
BLAKE2b-256 1c03100d1f71768a3eb9c9a36897240446f248054fdcc70a4d01afeba151bb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bcec111c0e4289d7be68ca6a80754b5abf25a715448a02538588dc46c5eba754
MD5 fccd1622909d15944866bf8fcd122f90
BLAKE2b-256 574413be2eb75041aa518d2afafbd7df032ce849eecd098133fcdf44995190eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c838f7092a6b04423011c7054835970f0f7f344b004df3924ad5c4e66df2a432
MD5 499e1dde30b655ad76e236ff5aae3d68
BLAKE2b-256 32baca39b2606209da64c42cfe14d1d3ece6a90678feeef4b387d34ada84d299

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0b6d297eb16dc6a9d8bde620caaebcecf4d6d146a6334586094f53f0a3e8cfa1
MD5 157324847180af60c1328e342b018a6c
BLAKE2b-256 a75d55cc0e7ffba7104d673a1ecc85970d7164d8868a06e689773dfa70c41b0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f4f13a151cc9578c676fe683d7763073c2e95dc08a336af9059fd79ac1e273d
MD5 6cd662329070150522e0616008bbf34a
BLAKE2b-256 945ea29a941de25baf1d6d78b33bbbdeb65f8edf7436854b32cc580430fd1006

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a1929cbffbcdbb442a86b614875ea3cdf39a54287f969495379b57d6007dbf76
MD5 f8ffc2071fd79ca59dc2070820fd18d1
BLAKE2b-256 ede3a9b7c169bdc1af4297928d20b193cc4feec7cb5cc2ab2d88dfbcfcfa3dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b4ba95553fd1146481e37b1ecdd661751187da9028981ebed7613fdbc943dc7
MD5 bd5c13a307ff06664f235f07adbbcefc
BLAKE2b-256 eede207f188f43e9736c21e9aec7257c67a3499159abfed779751132a7609714

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a52cb22c0d9c4285e252226f922fd5cbb577a3b9f96d5e2e5dd6a163954bd1f2
MD5 966d4379b2786332ef7d5ea080765d75
BLAKE2b-256 78f36cf5fc932842e608bfc70618573ee690355c763cb00dc3a375ccdfaa0b44

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a492228566f50b2db372bb76ff9a817ea62b2aa5ed416dfe9bc1fb57f209e5e2
MD5 c78540fa794c44842dc81e7ab2a97bf5
BLAKE2b-256 48d9e96e2663325e6163a05f60f76612b2efb24add41fc9bb5cdd8ca05f314a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4961b0ae0c555c39604c63ae878a77d4040403e695c11a825a9597cb4c191fe7
MD5 35627ebf5a0d91573a17c5737c9e733e
BLAKE2b-256 2e3f8c3f0de25324c542e013694e437b01b1ec2541b6008ac6ad340cf3ebbcff

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 78.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d44a7f2110bf0a4a9841126cec25aac31bc485591daab69c72d9ae40884b9dd0
MD5 c0723b77c4a9d92bd94ceff307bf5360
BLAKE2b-256 642316dff260aded4282707bddc7b4519a55fb293af2d1a0c866c3c017c43961

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 765a8c2887a3ef5a827dd0d39a61c2a05da49030e616e01fa93baf26023a9e3a
MD5 f0c37ee35fa5f83e67a5b8639ecb18de
BLAKE2b-256 a0927e34cbd315745de2a7c35c0c396ac34969f1af508d3cc883bfe4fda92b2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9579428a345d7630c89689c2bfd68a1242c9e649ecfdddb1259350be33aaf7c1
MD5 bfac0e349549e13559af3bd613a01b72
BLAKE2b-256 1856833e50f802d3ee53609647cf817ef92440c5143f7843aba1ba4c770d5128

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f38a4d0579ae30477ff8d2552c959819d35a22a9df4de7dcb8cd9ff593ccdfa3
MD5 06c9555109178c3fab9cffddb22d2719
BLAKE2b-256 4a6856d1a1ab315cac349d82c5f0bd67f89c84abe2ba1aed6d7664245181b814

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 211cd42f2f1f3b8efd4b44bc57b810e6de3c8b8b5a5a9d8e1db6475663ffe183
MD5 344798e6773b6b77bce4cdefada052f8
BLAKE2b-256 508b55341ffb3992736bb5624b84272780e85f761b002ea2d53086743045ccf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbe35fa2be3555d2219249da130bff51c844a9b560f91902c7abbebe85e1eff0
MD5 098f9a4503859eedd1d60fc47c030170
BLAKE2b-256 4294fd423f306967f05163bf5536a243ed6f660768735328b0c2b65443801ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 98bff6356f62938be449981ea94644fab1cfa041229997bdf09fc944b2218ef7
MD5 f79ca5bf4dabe11d7c506bce09e11447
BLAKE2b-256 878b818cccb235510c9d6c309abe680af38c986c0d19407cdacdc2c959ad4ac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1525ec074b302f7e00dc1e6620604cef3937cb1061a9c2e894ffcd893feb92cb
MD5 e815e1a8ad4d56aac3662a1126afabb6
BLAKE2b-256 69eb3bce61a1edb47cd18d7b7991e7d158688529c6c5f87260cb3e535ac7b616

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 92d89c237864e1425820dad5ad77f7109800d227abc955b27bb6db16b2258ccd
MD5 1e9617ee0ffd9342cdf368146a3a91b6
BLAKE2b-256 927fc35fde2b2067ab35553bb378eb56e21778bf36fef425a980f0fb0a366bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 80.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b7465b26c3c176603a4edcf82ceb08834b3e93cd5ae9b38cfd9362303ca99fc0
MD5 2b4f404e0056c873775b61c59b93003e
BLAKE2b-256 73df7b8bc7f569e9e14ca998ba36b6c11a115090ff9fac71d80400d32f87560d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 81.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9933fff602dcb893e17f47fbfdb003f685a4cd48b033901ff7314f3c3d4b6ece
MD5 dab57417fe33b7df5f29509cdcea00c1
BLAKE2b-256 785d715fa57e27e1df540465bd02225ab1ddad14b445fbe59bde99fca3be332a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 78.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cbf3f5f3b5f6a8657592273b3bfa6b1ae76b4d7a9adf752e1266759ca07de55c
MD5 d0e80e3ae6397fdb36a89916d27a99e2
BLAKE2b-256 7826e19ddc755a838ce679982a20f5bd312b8a361e590935bb715fd8e7814914

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ba64490d5a69cd62b803fcce7c3bc42ccfdabd74e0fc554c871ab209ca24a2c
MD5 87ba57b96fbb501656690d8fe2ed0794
BLAKE2b-256 73834a480183f82e1cf604dde1d276df0fea61817450ce8e8fc6c25a27c76f94

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 33a0db0cd54df4051bef42133e76da6d4b69ada133e3c4889d1f505a77256f8d
MD5 3b460349bdb00ccb7612ef61a323ffd8
BLAKE2b-256 211352eac854b9a80e804cfbc438cc5c3e43331aaa7c6d218bb04b6d2a196f46

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de3e00c40e60102419761408245bf05031dc4f9bfb9c4bb5397fc2c326de15ad
MD5 ca44941c6eda3bfa425d9e6f1d82f535
BLAKE2b-256 f502680b3af3df8b0aa3b7cae4f4ec485cf2debed7bc335f9569757e04ce5edd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d38bb118ce9d894ab2de3ad8d50f213dd9ad4657edab7a9bfcc9d035216a4d05
MD5 83f428c2196c7ea25bc3f6246272b910
BLAKE2b-256 c6f0d1d2b93842692ceddac5a0dba00c0cd8c30acd3fa78acce6e09bc9594c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f15994e2034f8934e696fe78624b0cebebece7032a8a5bfc0870b4335ca2eea
MD5 859295849d84a77bcc74ad8ae8e74f8f
BLAKE2b-256 e435d49d030a112fa6d8907e35db7204bdca68ddd6bb525e6ae884f0fbf0601a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4ccf602eacbbbf2821102495939334593dcceda6e6922b8f8bf4b8f6dcdbcb8b
MD5 386935fd36132aa006b617c8dcb32278
BLAKE2b-256 f22df47c72e70e9fa787c8d4ee5296891d0bf417dd1e51f5626970202e8e7e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db78a66737c7dbddde800875bec64d7e6f29300861f0b8fb85526d821c2ecc6a
MD5 e114f480185a63e702508961ab38dee6
BLAKE2b-256 b7c63c128755b8d9663d0b267bdbdb477b4c6687f9a06280cb5d42068e99e041

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18f1cd8d82b67ee384cf32eb122cc2cc7354574e24d3631f8cdc9592291c6728
MD5 0871ea10138efb2cbbec98f7c8680351
BLAKE2b-256 fc5c372b24c426970cc0eef0c03ffaa21c48b28130038ad4dd7c0e4869bf5ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2bc0ba7cf5cb18849b4efec1dec1c69875db0d08e68c6973d4616804117281f8
MD5 25cd6e8f76b3e89fda70f407ae7ff3a5
BLAKE2b-256 93051c70db106b9e518ed6543d1326d194fd53d68e3a07cda802074c976562c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ddf433c451ccb5632ff096e162f2e1220b9f474d4ecaa2c77e72989514641102
MD5 c8a54a004a5332605b2ceb07850bfdc0
BLAKE2b-256 c03635cc1a923f1571b190d9ad007554c8df99554e2d71228a39e1c6b100ec60

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 349f45b7600d63ed26e0448d526805a8c2b7d9680da1972c3e6445a4b0bd5eee
MD5 893ad4c00776143e10f3f05b9bfd3fe1
BLAKE2b-256 1099ffcb2ad6332d0f448586190b75b1ae4de47256fefd7886dd3fb204e99364

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89e8403c424ed9ca80dee639c720a3a7363ffac3cc3386884f59f891ca4706ef
MD5 797a636f2b5caf54c7d4443d0b6255b8
BLAKE2b-256 5f073805c6dfa773f4ff9f120d498624fc3439f88c71a7682de625ea7cd07b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ff6fb96a151b61a1e867a14a32502943ea29b11d24e3ba4910f9f1f48c4b4911
MD5 6489fe22997e9a83d1a291ba580e6a70
BLAKE2b-256 88a254cff1214604381dd63b2db7eb6336a5d5b049bccde064f27a6205930620

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df6380412b7ea467e45b88a75be438d4dc4535a1e4468ae7624dc82deb3cc3ab
MD5 ff662e540b8028983e2fd0cd8b5b0553
BLAKE2b-256 ec42a76368b82f0666222c29c0fe8772a82c3fff75356ee56755b001326fc028

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7dc6e5cb8bb3e65455d49c1d143420df6c8a4d97b479ac2810d6e9b890e81636
MD5 3d530754e202eb249867d498e4ebfb7b
BLAKE2b-256 08a37486546a3b288b4c6d9cbc0de5986a7da5b00753c3a8bba08abf32168c73

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5100e28027b661809f7248b020d85ef1406ae83d1cd3dd707d0d1ced4eac4d73
MD5 066b4c7f25b1281d5e83621eb199bd99
BLAKE2b-256 94a40b01cfc90855b7dde17ddd73cd86cc6b151a0fa87425c59ab35df474ea4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e1f648539ad01926674beda931619a42223d864c705c4d31ae2754d61bb51c7b
MD5 53c199e2f583879214d228c428600391
BLAKE2b-256 b439d47010428cb271efb520a0d068e2df4f23d0c1a1a81a79278135728fc94f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1a64baf4768204fed430e46b01bc91c970666b2a3b3c9d27facf17ebcbed0f9
MD5 388d14474bca508183146e82293290e5
BLAKE2b-256 c3f4c858ff0851c9ced33ac855d8f8a95073b5bc6469aa71787e1298aa1029c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ecaeefc2240c055d30610d9a4d7ba2d00ea1ccf26959ffca4ae25b91c1166bd
MD5 5f5092592b54c691a0e8605e2f53020a
BLAKE2b-256 9edb59db86e321480f524d25c81f5c3118664b16b2911c36fbf206e4cd0bb801

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 80.3 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4d3bd048d79a4f960f0d9a78ed1e6d0cb63e79584fe1acf1c0d8f4abfb06335d
MD5 a5167b4c4d6246dd2066090f44b89c69
BLAKE2b-256 24fd8b5867de2340ccf22c5f0fdb2be23111bdd9c8bb96990d670fa4656b7160

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 53bda99d69909030dc911c8d9896d9ed7250e2591b1489b2f10f44b5fb22b26c
MD5 8845c8fee0e2ea6159743f168311280d
BLAKE2b-256 2af7c5b3f160e5e170211b0ab6d0c70208617438fca946aef28df9a05c47cfaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-2.3.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 78.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0b6c947c733639e0bef3f2bdf765cb54dee8327c888e017103d00b6ea558aaf3
MD5 8c28af8be465d3536a61a5e695603393
BLAKE2b-256 0e1ddd0da7ed5544270fb34032f43fa9f513de2b74951702a156672f8cae1dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23fcb1ccd21beb07da7c28c6f4a5e41c1ae1a75236d7b2aa98bb2f85c35616c0
MD5 8908fe0eff909f43568c9bacf54b0268
BLAKE2b-256 c285a71f35f1772cdff95c208333cabe73d113e100098d37abdb690d8604e1b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d339cb99a0609d5893a11554b05a4968e8d3e041408c4ae682f389b8a790967c
MD5 2237a3505f27b31b215722dce028dd69
BLAKE2b-256 1d9e1e23d9084a3145f5181077a2d8593a4ccfb3fc63ffa01bdf0e340acc6933

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 185f804750b2474d91813bd80043d70d3167ae4e2bc609a1959a76bdeea9f786
MD5 fd586fefa2ec789e62abcf8add0a5d80
BLAKE2b-256 58eb4c62c6cf880714282d51490be0d879ef4156ee4552b96931876be715ef06

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 95f46e2b99dc3acc616b48e7377346a1231996101a38fbbf0798396ef6c3579b
MD5 c0697e35d5d6442ed518078277580af1
BLAKE2b-256 492631b442d02fb40699e2ab6e33d657a793eab28ede8d43d70eda18c9c4ca07

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55741fad98e9ac89005fd730edf76bd33e31d1f1609b8ef587d3556b880cbd4d
MD5 44074964c98fd8409e713a13fac9732f
BLAKE2b-256 e6ac64b7f033e638f42bd874544f2b12c68ffab6678cceef55cf700ecbf15b79

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 62c3f827fd7d7dfe076f72abf58bbaadf770fbc78fad5a0dde286b66944f4220
MD5 b1d87b09381373957332722e7d58dc6d
BLAKE2b-256 4bb7343f70f703d837572e384df78d5edf327d0015465936467c380baef4641e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 990e739775ba126ee1a279fd6a408c49b984ae5db73f23048ecf4c6650edbd9b
MD5 642cd054835d7c137dcb570c3b6abc74
BLAKE2b-256 39f5c2e7730ec777e7f931793acb468ddf90de73119e5ea904113f0605000749

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.3.0rc1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.3.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f246255d4bc7b21e55b0919a8927bed04924d528e4b64e89f8d661b04e36264
MD5 7886ecb80c0eb8868118b5577a3f3377
BLAKE2b-256 bcee5d289d1ecf86c1d79005936a739d5a747e03b5901d567c93e3dcb2794c83

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.3.0rc1-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.

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