Skip to main content

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.1.tar.gz (164.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.1-py3-none-any.whl (75.3 kB view details)

Uploaded Python 3

wrapt-2.4.1-cp315-cp315t-win_arm64.whl (98.5 kB view details)

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.1-cp315-cp315t-win_amd64.whl (102.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.1-cp315-cp315t-win32.whl (96.2 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.1-cp315-cp315t-musllinux_1_2_x86_64.whl (271.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp315-cp315t-musllinux_1_2_riscv64.whl (254.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp315-cp315t-musllinux_1_2_aarch64.whl (282.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (256.8 kB view details)

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

wrapt-2.4.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (287.6 kB view details)

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

wrapt-2.4.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (276.0 kB view details)

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

wrapt-2.4.1-cp315-cp315t-macosx_11_0_arm64.whl (102.6 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.1-cp315-cp315t-macosx_10_15_x86_64.whl (102.0 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.1-cp315-cp315-win_arm64.whl (96.0 kB view details)

Uploaded CPython 3.15Windows ARM64

wrapt-2.4.1-cp315-cp315-win_amd64.whl (98.9 kB view details)

Uploaded CPython 3.15Windows x86-64

wrapt-2.4.1-cp315-cp315-win32.whl (93.9 kB view details)

Uploaded CPython 3.15Windows x86

wrapt-2.4.1-cp315-cp315-musllinux_1_2_x86_64.whl (225.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp315-cp315-musllinux_1_2_riscv64.whl (218.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp315-cp315-musllinux_1_2_aarch64.whl (235.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (220.7 kB view details)

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

wrapt-2.4.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (238.3 kB view details)

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

wrapt-2.4.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (237.8 kB view details)

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

wrapt-2.4.1-cp315-cp315-macosx_11_0_arm64.whl (99.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wrapt-2.4.1-cp315-cp315-macosx_10_15_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

wrapt-2.4.1-cp314-cp314t-win_arm64.whl (98.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.1-cp314-cp314t-win_amd64.whl (102.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.1-cp314-cp314t-win32.whl (96.2 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp314-cp314t-musllinux_1_2_riscv64.whl (252.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (281.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (255.4 kB view details)

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

wrapt-2.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (287.1 kB view details)

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

wrapt-2.4.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (275.6 kB view details)

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

wrapt-2.4.1-cp314-cp314t-macosx_11_0_arm64.whl (102.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.1-cp314-cp314t-macosx_10_15_x86_64.whl (102.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.1-cp314-cp314-win_arm64.whl (96.0 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.1-cp314-cp314-win_amd64.whl (98.9 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.1-cp314-cp314-win32.whl (93.9 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (225.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp314-cp314-musllinux_1_2_riscv64.whl (216.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (235.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (218.6 kB view details)

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

wrapt-2.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (238.0 kB view details)

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

wrapt-2.4.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (237.4 kB view details)

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

wrapt-2.4.1-cp314-cp314-macosx_11_0_arm64.whl (99.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.1-cp314-cp314-macosx_10_15_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.1-cp313-cp313-win_arm64.whl (95.3 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.1-cp313-cp313-win_amd64.whl (98.6 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.1-cp313-cp313-win32.whl (93.4 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (223.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp313-cp313-musllinux_1_2_riscv64.whl (212.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (232.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (214.4 kB view details)

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

wrapt-2.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (235.5 kB view details)

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

wrapt-2.4.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (234.6 kB view details)

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

wrapt-2.4.1-cp313-cp313-macosx_11_0_arm64.whl (98.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.1-cp313-cp313-macosx_10_13_x86_64.whl (98.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.1-cp312-cp312-win_arm64.whl (95.2 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.1-cp312-cp312-win_amd64.whl (98.8 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.1-cp312-cp312-win32.whl (93.4 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (225.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp312-cp312-musllinux_1_2_riscv64.whl (214.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (234.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (217.0 kB view details)

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

wrapt-2.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (237.8 kB view details)

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

wrapt-2.4.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (236.3 kB view details)

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

wrapt-2.4.1-cp312-cp312-macosx_11_0_arm64.whl (98.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.1-cp312-cp312-macosx_10_13_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.1-cp311-cp311-win_arm64.whl (95.1 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.1-cp311-cp311-win_amd64.whl (98.7 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.1-cp311-cp311-win32.whl (93.5 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (215.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp311-cp311-musllinux_1_2_riscv64.whl (211.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (226.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (213.5 kB view details)

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

wrapt-2.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.4 kB view details)

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

wrapt-2.4.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (226.2 kB view details)

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

wrapt-2.4.1-cp311-cp311-macosx_11_0_arm64.whl (98.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.1-cp311-cp311-macosx_10_9_x86_64.whl (98.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.1-cp310-cp310-win_arm64.whl (95.2 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.1-cp310-cp310-win_amd64.whl (98.5 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.1-cp310-cp310-win32.whl (93.4 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (206.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp310-cp310-musllinux_1_2_riscv64.whl (206.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (217.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (208.0 kB view details)

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

wrapt-2.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.3 kB view details)

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

wrapt-2.4.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (217.0 kB view details)

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

wrapt-2.4.1-cp310-cp310-macosx_11_0_arm64.whl (98.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.1-cp310-cp310-macosx_10_9_x86_64.whl (97.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.1-cp39-cp39-win_arm64.whl (95.2 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.1-cp39-cp39-win_amd64.whl (98.4 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.1-cp39-cp39-win32.whl (93.4 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (206.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.1-cp39-cp39-musllinux_1_2_riscv64.whl (206.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (217.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (207.8 kB view details)

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

wrapt-2.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.3 kB view details)

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

wrapt-2.4.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.9 kB view details)

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

wrapt-2.4.1-cp39-cp39-macosx_11_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.1-cp39-cp39-macosx_10_9_x86_64.whl (97.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file wrapt-2.4.1.tar.gz.

File metadata

  • Download URL: wrapt-2.4.1.tar.gz
  • Upload date:
  • Size: 164.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.1.tar.gz
Algorithm Hash digest
SHA256 fd6390aab9e8aa40c52eff3c180f098e8d9f5894b1fd4c4fd2c207067b33ed16
MD5 cb2ad46e47667cc722c87d3f682d01ce
BLAKE2b-256 42a66375d56c44d590ef24acf0f8f5bf7ed768ff7a510b959306ec412611e90f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-py3-none-any.whl
  • Upload date:
  • Size: 75.3 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1e84ec5d89a0a07a0ef6bcd343f5c8ecdc95601d71de3058cdc63274e86c193c
MD5 068dba1cb4a34b05de74027a31275b2d
BLAKE2b-256 4fa2edcfc8d9a30375791b775715f8501364588f65b494ec4f6930568a19e765

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-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.1-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.1-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 98.5 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 ac1939ccf3e1c33f463706fbf52db5075f5eefb6042bcc1f9cf48c2c20ef478c
MD5 036271504de6bf362756666148173f55
BLAKE2b-256 2ffd3f4ac5c4754948355e050f952ae7a64cdca94891e49fe9927c3f90a73334

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 102.7 kB
  • Tags: CPython 3.15t, 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.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 3593b43fabab6b59fe77e38f7e40974aae120c30cea3fd1ceaea6621ee96be00
MD5 bca0fa9986a494ffdb976f4ef0059a8b
BLAKE2b-256 f72e1785e6d2696db08b07c053b1f4ccb2b5e8f9d12e9bf2c7497693be6b4504

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-win32.whl.

File metadata

  • Download URL: wrapt-2.4.1-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 80afa3b7010e82899044a2a189c468a0cd8c89980398a59ba3b96b451a6dc5e9
MD5 a6a6d7ea3c1489f8e8e1ac66af46e809
BLAKE2b-256 bd7cd63758cd7fa0d18c415a87312a07cdd9f0102eb824aaab5c7450b3ec08e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2286e8e4a937966706463d1bcea30dfefee529e6e73e097a18e9e066a07ae6c2
MD5 4e612987ba0b6adff95bde1fc3b5ba61
BLAKE2b-256 1253fe1f251a89f471ca7c5e17f2edbd8efd48fea6f1c08430dcf60986ea4183

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a1e4870d3368c6c918f38e308d5dcea970ea5b908ce889c21412f3a517ebf0c3
MD5 05db7fa325105d3e77c5e64985520112
BLAKE2b-256 be0d30317d738b9898a7fbedc193657f151a468b0fa7235f4abd58a646a99cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b19e71c914c435d2c5652caea386c9bf2807979e957183f5bb06d5ed5fa8b55e
MD5 cc8104603eec608ee4ae2955965eb743
BLAKE2b-256 aaa80f78cc7e7fc6313cdba32df06f4b29a45a4a2aed3499040d6c1628d3f339

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8e82a1669d63b79a2b53041bbb6ea096b5763cab3ca698ed7ac244b3acb7cd51
MD5 b1be44f5c0a397a738e36a948054c494
BLAKE2b-256 1cd99937bbd61ca4e7f58a7e8a38f5ff3562334f741de51b87f0e031df441254

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb7c0f8bdd21e954bad89d554cfb7431c2f8179842853f199841ab90cbebe914
MD5 1fd4f2551c5869a50b3999ee3c3a30ab
BLAKE2b-256 561ebd043b2bad2943336e090583ff6cea2f3e8776bde02f073ccf760b16eee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 432f402f9b6014403cacf9fd18a6bf089c77964330eae951a155131ab0414f5d
MD5 6727c2ff5e60ef33aa91c9c4446286a5
BLAKE2b-256 a13fbd462010ccbbe298479f320bf2bb02996706003e9c20a15790b65a186f8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef19a2590b195ac294deff8ee350a027a479afdd2ef2170ce3900af92406e110
MD5 acb6df6ef198c06559f3132cac964d83
BLAKE2b-256 8235fb809c95bf5512196aeda4c640aabf4e92f607340b8b2556555690a52b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f5990f5db090f069fcd577cc61cc8d463db73cde132abba9033b0a264fc06d0
MD5 05ec4435eb6ee4dfbb1074d9cef85bfe
BLAKE2b-256 8d48baf784cc9f1fe554f96daf15af06c7c466d76469d5540e357cf564755606

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315t-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.1-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.1-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 96.0 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 ebf3b703752b53366fd02b7fbd8c447428e0349c9af3fc17c7a05076dbdd749a
MD5 e88650ac029f6b510f00e5012f5d74a5
BLAKE2b-256 83216865f976c6a1082ca61e2792bc6a2d6a0ed03cd750a46f837753127191f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 98.9 kB
  • Tags: CPython 3.15, 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.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 ee437bd7fd050823ef731aad20e968ca8fe670b95e1841f5d201bfdbad4a4e96
MD5 9cee1426c7fad087772511f7c65e31ba
BLAKE2b-256 8daaafe7484a0f7232e87f2ebb65286c1025d43cbe1de4e4051b127b024a92f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-win32.whl.

File metadata

  • Download URL: wrapt-2.4.1-cp315-cp315-win32.whl
  • Upload date:
  • Size: 93.9 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 47c267617551e906de72f6e7265aa3bce84c63d44513d2d2e735e943422aa0a2
MD5 c8b781b71a2340ef3c7109cd5f0ac0bf
BLAKE2b-256 77c664f138aef50b5ea1dfacca2a023b32ba3e41ef087bbd92e8997a95f4a0b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a524ca32f0bcdde2b728d9f81f9527d4dd24b13f15d180f05d08cdc01d1cebe0
MD5 f334e1dd7761ae06819b09e71a0ad81c
BLAKE2b-256 78aacff7670ec1cfa75b951171cfb41d45c7bdb94e928620a1599ec2b00cd2dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b0d38d9cc23e9781e6584f303e5c5a9f0d45b85de92ad45678c4dde8d49d9535
MD5 1a0b98570ce48a2b9a5038e0bcd4e698
BLAKE2b-256 69afac4aa9f795721a54a21bac329201f7df1b199b71ef064187a266d4d29836

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a54744b1193505f19016194979b773ee3754a199e9ad90db18f2e9a18fffa16
MD5 26f8a8935f70831ccec6e67649104134
BLAKE2b-256 431fda7844c7a3f7c01f3496e690e15ce9d01c0949278c64d4287ec472c90f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2cedb743dbdfb9b6d4f11acd8cb6329460264429777e81ea2e86b1b72ea503af
MD5 8ce809be43836d893b7ed31a495159d6
BLAKE2b-256 915b47b2f2f08b90d9d3b4e1790ccae0d4e4de40e73f6614c9a52465a04f02a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20327e162ef7953fae56b31a43ca457f94ed1fc7a206d01e3d5c8412d1b91572
MD5 d44e710714690e3a32a996da8ea753ec
BLAKE2b-256 0f379c1c876bd88fef8d065b3e8bf125cad9291d70ed3695cedb41b36b2453ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2f725af353bb3319c528ee69dbff838599426974288b281a3258d5397b18cb63
MD5 b57b4d5a1b87e2599a0253745d299bfc
BLAKE2b-256 a1c7fa768261966d587650004ac37bef541540014b1fe23fbf4919c497ebc98c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b21924949dedc3ac63725e09b9b0a130e771975f03432789344ed3422c46008
MD5 c8dd7e2b8e7c402d45d12103f67ab522
BLAKE2b-256 87265ad9bd421b8cdce0b2227a61f09586423765da3c284f8bbf0f69fc149fdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 96a5023fa63ca2f095f7776c8bfaa1694547577f762646c375abafd8f8ae649b
MD5 0c165c4e77d8a44ed75b4598d9b25779
BLAKE2b-256 7c1c03bcbc3dbf6ac11231f0434f2494aa7b80657b130be1a1a639192a3e44c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-cp315-cp315-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.1-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.4.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 28cb1c2713b4377bf03ddcb3e76d8216e4bb334199066c6122be7eed2f72de8c
MD5 dbd6a782905e5148c480e9835d8dfbc3
BLAKE2b-256 21a6977441bed5e5afbffe7a789067ac2f5fd2e9f848884122a23db9ccae6a70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 102.7 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 707d2bef68deddd0fc74a81103d91b286a69ac5a9ff0f0a6dad66f8787e86697
MD5 5c4b96f96f4e5d23840d88bfc4017c8e
BLAKE2b-256 092848f0651547a125dd84e312b86268d4150c565a29f81ff9ca6fd81eba4be4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 96.2 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7cb3035b332bc9d21478600ba82c7c71e2d074ed9b4e76364297f54598792227
MD5 82196d13510c5b9b4909ebe02d0ac173
BLAKE2b-256 68a3952337a153e634f530079334c47dcc935b20f8ea22f364729fc2a8cf1821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68a403adbeb4dd2654d6d108e43e69f0f90e6d34cb7588e0e6589109f6985e67
MD5 7f43e434e0584103bd3fea7f26ea8f85
BLAKE2b-256 68d7f6bc5703061598c4a2ad4f7a2efce696782be6e9d5afed714a59f5902ead

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 42d01574bd4bcafc3476e77a95c6c0dd6167101991401325fc5591e2db21a91d
MD5 c1e09ef404669985272a99d0c8aa55c9
BLAKE2b-256 bcc74930b6a369d9b3da59f5ada4ae9e659e2d4a68fe72c5d1ce15e5bead2d24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 898513db90d55a4ed3009312d41c12932b8163edbae3535280046d47aaff774f
MD5 747b57aabeee3fd82e6154cbbf6d88a1
BLAKE2b-256 8bdfc63a36f0f03d70c7b92f60ec1ad3757088167914e1a262f5dcc7df233d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e32c5951c36fed88b6c603dc0bab209a62dc3217bd8762413634725fe28f2f3c
MD5 522ad27265e8d2b0660bcdd0b1389fdc
BLAKE2b-256 c2b824274ec01b6ab6d0672f4312bfa29b5f1ffd9d56f16c8da67d5683883956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c15c4ede3fde08723cabab0a892d4b75d35b5a6f0a51c84e6542ac0bdc0507aa
MD5 76d57b1b81951adf0192f7ece62fc6f8
BLAKE2b-256 7722f3b5f4428ae679b1e2c0d4833519045d8983a9df0ad24df96b195d44dd1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-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.1-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.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9ecdeb8a1ec13397421e6f925412186bd87ab86d63517e6825b6d7bccf781f26
MD5 75a817ecaeaea8f8fd1e256ee384b193
BLAKE2b-256 7ba7cca7fe0f26aa11cbbf09b2e6f4f774db167feeca43ad22fa1772afdccbad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0a518cac3e789443af54fc77f23e66f17d80192c281b160b42058f11fabccc5
MD5 efb3d2ffd3f3e808f57fa6ea808fb688
BLAKE2b-256 72267435de516099b528e2232770b459d6706002736f41d8f092bbb11ea01575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 37ff91b390400463ecd4d080ea823314510b6843ac53e6e35cc09bba1805d466
MD5 ad411e3d40c38f48b156a3a0d3c49931
BLAKE2b-256 b191d29a063c2ca6e779305cd444dd5acaac60833d73b2d94c7b1d0820c27e3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 96.0 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3152b2e94d733a9bd70dbd1c95f148266f079a70e9ffca2a9c5dc421ade1b4e6
MD5 dc6c6272f5b9f1646b0e3331b5f54fc3
BLAKE2b-256 1d59b3169c3bcdcff70a6d02ed2b6366097b083d31391d616c407efe9a943a82

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 98.9 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d2d6f9abaa52de05090a2b4a4c1d0e858a268c4de69eec277506af9fbcccff91
MD5 9eff5b6f95ccf22f4c989859d257be13
BLAKE2b-256 a1001a1bf4d8b60b9e7ac009969595438549ae6e33b2e3e174b78d26a833aad3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 93.9 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b0ee076be124406a7f97ca663c4a3ba32b6bcdd9102ca82497feaca79e9cb33c
MD5 471c3ba9290e00c87deb99e5e2f12606
BLAKE2b-256 5a48d72d051757fb7955021d8174014679f951fd5067187d2faed95520e1f8d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 094a606d0bf1c4b847b3a743d22fc69cb164015b8c70cf6f20a534d30889ed47
MD5 7fbb19a4ffffb0f11e8eec030a187cce
BLAKE2b-256 8b523a4dab8d4803df595de82f19775535d28c036746340c1b498fc8ecba39aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f1556a96b20d5bfdc9cb5dcd0a3ec65cbbac8a4eebcd3cd34efdc91c9519f660
MD5 b2fd946dc6f3bc07e23a2e806425c954
BLAKE2b-256 4268acb7cba46e0f662eaae421487807d2fed28ba52df9a00a3f04db16675e38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb5b3f94258bcf71db902795f4a71151c7a74d9fe21fffa00752d2bd286866f8
MD5 e679c731476ed98bf19ccff9b9cd5df9
BLAKE2b-256 e16161a6f983737ba81008561ab634373bba25b986761d3a0f0aded8352ae3e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8c4b44e4be7680fc496816e824b6ed134d781c4da296e44b75399196e5c248f1
MD5 a3991884ca725ddaa044b81a70308188
BLAKE2b-256 fa9da11a3e1eb18ae1d9adef1c39f8e8e36fd5b86db33938bebf8e6bc5fd9b06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d60702ebc914d0bb01aa48f5c1785ceaaaa505e0a841b444a69d6ceb5de4097e
MD5 5a3df45694de45579071e475610406e5
BLAKE2b-256 8a2b503835d183c1ca99268e0b5a98af8f487d528ebabb124f4003cd96e73b1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-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.1-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.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 78af62413095d0a57077606654ce85e273deda8e2bfa28fdb04257b962d94ef2
MD5 4861df965f3431afd8b3700932600668
BLAKE2b-256 f57a518e5f3ebd18472652e5332bf37728cd6634ff81a0aa568969d05cc66099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b9df84f0a96763159cccb8e3b0ed83cc950c7c8bf82d6e45428372a805b3224
MD5 188affe6cdb5788449b54bd4f29194a7
BLAKE2b-256 f15ff8bf07c3b9a2ad01d28d5ca419e28819bb16937d129167d97c446c05875d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c6c35541cc729964c65c2b9b1f9cf317811039abc2da13b4557f20f21cdc292b
MD5 030e4bd5f082e4545ac9d25db0f177cc
BLAKE2b-256 0805ed5aa8991c5e9969e2ca17f0e44eb324a9757f44fa982bfc13844cfe9e1d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 95.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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0c974c36e8205255a3947dad9c2fe000431b57dd522946e56c192174a7f92a0f
MD5 37dd4706242d9e269da9d4fb33d9ad9b
BLAKE2b-256 e81f759d0c522918f9dfb620136622d8e1ce619570adda0de8fa2cfbb55cbb86

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 98.6 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1fe758b9c2d49138231ec3efabd106fec665f86fec50b3d02d7edd75f08a69ca
MD5 5f6dab7e56e3dea60371b0def9c5da8b
BLAKE2b-256 b71dd53bcf5910209a45191c8bc173ff0e00830416547d8038772dc444932ee0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 93.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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bc67d4872af5ab2dc1b88904097b92ac00e7658fdf010dee36807807fe882ac4
MD5 45b91f1679d7c1730689217fc43b1c39
BLAKE2b-256 aa36013dce1c687f8f1c87b1e78f403d04c80ae9b2ae77de4ddba16069a3e7d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a23b89621cfeb3329b1a290596bf402e61d7d5a647a65ca8ea735e48771b71d4
MD5 c3ba29fc50baf8899b9342655625361b
BLAKE2b-256 b82b0c5de10d7259e07c478c44bf2fbe179c6878727d09edf0632b97884801db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a0c3b217332cf0c4df085fec41c126bf7507d6c1ca0efb3ba8d2b3fd234d4e73
MD5 7ba8541ca5dfe8df5d60fd0bc8a9a2b0
BLAKE2b-256 86fb17668b1ca572c44b458c09d76064d35f5f57d5ac7629248871604bef816c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bfc6907ebed560d2d3f677c3b17bf6199679163b6c6e475035c9dca497d1697
MD5 f30d704c9f3ad416103fe0a44d7b1b8f
BLAKE2b-256 6a2ccc5b7503843399087db3106a7cf60d60d0900f69539e96148b9fff116291

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fdc997819a6df4c65bdb0a1c5601c98b479ee34cc2f94ffa98a767034ad6366d
MD5 00339f40c3b98c6eb0bcc3bd1e700967
BLAKE2b-256 fd80436ef1df620ef8edd9ef057b4d55a0cd704435ff66852a0ef26cbaa02a58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03b5598edd435373278731d0d53449ce7a9626bc48d5548e4a71124ee3e526a1
MD5 59f0687864e9f6ac73ceb4825f62712a
BLAKE2b-256 76254ce4d02dd95ff9ed972a2fc396d04fec636daa5a4ac18cc73a3dc20aa6c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-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.1-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.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 be6cdd7121adc89a6f52e3c2f4e26a2d4dcdc1c0fde47e3156234db8939e4cdc
MD5 a38e5f3a41c73b7c445958e73c7ebb02
BLAKE2b-256 08c20e772a570e8d75c1b3ec45930a3023492fa68223f8f5e3485af4844c10c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53e15cd74bd6b84d7fa90b93dda7334d85f4641fae97632de8aa61d268dfd145
MD5 eb7f1a6d09274c8225f1fb6969eebccb
BLAKE2b-256 fe07dc98150c2f9ee5b5fcbd841765e178ea6cc6c43733ab8d1f5181a4fb9f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 55f36bb1461f93beaf18d818e568b5de343dd8fade7456773d201a38ee723bd3
MD5 d37f4ebaba83ee1b4cc0af5fb881df2c
BLAKE2b-256 5c1a9b5aa3c2391aa6d00fffa085c2219e8fc91cd4d2b9b080d2b4e4b6b93f42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 95.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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 38819761401baa2d11916d7265b82f23265f8fe5a31c431dd7c24a8863c65f88
MD5 8dab9885618e0e9bde112bd0c5991954
BLAKE2b-256 d7ec40e4c9735626afd1dc0eeb310310278361f192800503cda0f5b3d8d24db4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 98.8 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4e7efdd476ac631a0181551fd9aace844765ea3ce2b5133b194fae4421e8ad0
MD5 a1bf2499a4c741cd06197a2b4242068c
BLAKE2b-256 d42a47be56772bfb07ef242d6e924049688e38384af2b2fc99b0f31180988448

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 93.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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5d83e412665aeb1e854eefbf1564d0d67872d9994b502a0bce96e6ff7f4970b7
MD5 881456f515f3423a61a9c62f5c6a3a0a
BLAKE2b-256 90025b2bf7b35b008a39939a2908e85dba3b867596e535fc9f12ddf3ba1fcaf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edd03758a7578526642508b8833d43496fdfba0f64e0025dfca153a7c1777735
MD5 9f14c887f62379ac9721a2b99992c84f
BLAKE2b-256 7910248841cb30107f6f32c53a02662e1c3e0c7c06bea0b8ebfaaee94885dcee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4dc92697444ee380544fbb43c86612d8486529aadf917c22b5524141d4af074c
MD5 47c42480d4bcff6dbad7ee0b66cfe2e4
BLAKE2b-256 51327cfa1e070dcda76ea56a3e252341cba1cd1e9412baf23cd7adfebf1114e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f86e328c482bc5383b4eda5094be0bed3617fc3076aa9225ff1a9eb6372de9b
MD5 8246229b5858935a0602296c0da363f7
BLAKE2b-256 3a55ec72991153a2ae8b40238bc44cec7c3ddf7706ef6e2d314b0c6f5c7febce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8342f332dada211f64b74609e332d727b13315e9a83177f7918bf68c59f815f2
MD5 bc4f57868af4e4e5e21e2dc255ece367
BLAKE2b-256 755d26c1740299b29e190d5f4b4a99eb001401042a9d9ab338e3f8e1ce140ecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9356dbb59199a0e4709de35fa4a1ac1a88ef6da99711a397f5b009233faff326
MD5 2cf7f1b594f163efb5f835f97eed68c9
BLAKE2b-256 01ca4700eb008a34bf02de328806ddde15fc84c8d1e65d3dcafb92a935a50319

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-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.1-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.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 30d11c289b013bf384ff1a1a6553f150d0b855901708a9bef667a5680f8247c9
MD5 8a2c306641ad131402fe4acd1065e3df
BLAKE2b-256 a34f17a89a580cb0082e61b8375074d5c9e5d38e4aa83ee19b6174ee472d17c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24389748f0b9d5b67e478fad4fc8b3f1108422ef80716e48eead6cebcebbff08
MD5 d13a61cbc86998f69fa8c79fefbd6381
BLAKE2b-256 686ceb45660fd4d92cce11ec923f55bb2e647a6c18d30e53734eb07a3c530e31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e86fbc2ac8a363ea04abf631fad82720e16b17a25020f32dbe9b24a2ed2b0e3
MD5 c08790f73861e5564109ba1039123b4c
BLAKE2b-256 9f1fa2f3225c5ecf522684c1d051aea8ce8253f240e55be75826b787777afd6c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 95.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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7ff549316d94c404999f96bb0a6993222566231ff4bede1b6f68908d1958a08f
MD5 75e1ddd82a38a5d3ac0264c0eafa661f
BLAKE2b-256 a56af7565da9ab1323b2aa5fb4a83b919b6519cc0f4ea4b91ec8f2d25f5bcbab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 98.7 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1f1851be0e593d65e68d7c1bc9d3b971e19fefa219f617e490d75e80e467ee14
MD5 3475c27c2e90da7bb35e524107b817c2
BLAKE2b-256 d9105f7d2dd40c97c5e572dce771b8d4c1c78d46a90cfc24c7b25f158253215a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 93.5 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e78c0f6d66a564bab245faf170d55595df6fc237117b99d97fd838678f0906f0
MD5 ad8f1e8edb69a95cea3d72444bd5a734
BLAKE2b-256 3cb526214472915eb447725982e2735c593131c5bae0c3fd582ad61e7b965907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f5577fdc702427698c81c8c9c3b8479cbecb3dfd0f697be8c1d09c89f5838cc
MD5 ced6cc04a726da484eb571caefdc6c8f
BLAKE2b-256 9660c01efb0e8049a9df379b04ebc589eeef995d6cf184b1d8be9f1b84b4d5f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2e2e694057bcfd46f43e28f7b50fad8f5fec7113cc6445fdf251219539a08f28
MD5 37fddcc7a104b6d1a8d722eed4007479
BLAKE2b-256 05b3aedc046bbd8ff2333c2ce9d5267db42117221d4192ac13c66e871b528d9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bc7ab495e564449f39db2f54c1033d7190c944736d525f3bd06cefaf0134df0
MD5 dd1d8fee813275b5d2607f7dc25550c7
BLAKE2b-256 42a8d4b4d6ac44cb2c7d4a882499786fd96758c97feb6b1539ba0ed5c823849a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3d5c8f3b4eae814213d4097f134be03aeb23816e6358213454ec5e62e8449fb6
MD5 dad02ba52af57d005f1185aaf4786160
BLAKE2b-256 cf5e7593f3fe527260ff3e8eb09ed26ff8f0bf51cda5702a75fb5969b689b4a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba66eccadd4b857a845e309c08457bb71fa8300000e508e3a86cd695bf9c7515
MD5 788a2ebe948d395b515aa0b612b3475a
BLAKE2b-256 003c934e13c7e27680760fa74e25e4b291b213fd607aa42333d883f732de6d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-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.1-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.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8ec7aeb92e956810eedc268fe75f8c11f05d6c3d864d0995a53eb6623b3b6a51
MD5 d314500d84117d47e218826328566d0b
BLAKE2b-256 7bafc54bd0bf32ef3c5f6d2d50af6bd9d88c040ef53d9f8e113e065337d76788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b86bfe741840cec6d8d5858b1eb53a325f564f08d7e6fb5694981961edcec230
MD5 c9fe510632310ae1873999b94feaf486
BLAKE2b-256 4fece77ba77fdce732f39522382a6a9b968e5abf3471f352d51670120534e271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6ea396edcfb305698f44ef0a47b9adaca15d30386ce093ca606844f776d7236
MD5 1849e48f72d0e7b9e5b218b353a82354
BLAKE2b-256 c6c65e08ef1e8ad5ff518354db77b7a303666c7e0652e2a569116b5ccb72b690

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 95.2 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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6f32a45d0e883918387aabf5384952e5a93ae40be0a6fb5f1eddc8281af4c714
MD5 ed54bbe1a9fc2a6a40e8af68d0bf329a
BLAKE2b-256 e304c7eace579b4c397aa3651c550c216b05d3561cff56bcbeb726c8ab3faf4b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 98.5 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0aacc1af512e040fb0b3c4593a8bded9aaa04235025f08a54eda9d8c1103d3c6
MD5 1c4081da1490a331cf1022e18c680adb
BLAKE2b-256 2a01c200bbabb0c46a431c9d965fff78e6bf08c1598fa970bdf105362aeba969

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 93.4 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5c0217b8c12952bf4d137a19ff2c61cc9b626f52c09c43f0289769c9f5f808aa
MD5 bd41c7b874d4ccbe030af598ef66f259
BLAKE2b-256 b74706e483462e90a50250f51da3ffa1f1c67e457910078b36aad55805202886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de5d2d7f12557c9e994b4037330efa5700fccb9f2b9df0bd4ccf384eaf73c254
MD5 22059e678583f98313342529b9ee8b52
BLAKE2b-256 bbe58b5af45e8e7dc102b78a40b077f071466a0f584898fe57ce181bbca2572b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4d48f1720569b4f6e2df97783fd270554abc4c6ebd74b2e5f15e5110283aaf78
MD5 1b586dd37ef340a93f23295a61c16a29
BLAKE2b-256 8ca734b1e65e490ae886b057ac813e86e16399b7dae91166b5bde5fc9f86c2ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b78dd8d058468156003ee8c212dab334b6eea18cd9c5db3b81f6c90a9408afcc
MD5 9c97c907596100bcd8fb3dfb1573f9ab
BLAKE2b-256 89249ae249d4922408cb28bc31e8dec86e918350261cf61e38fd8bbfff8bfd66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0cbee8d00840ac89846f6567c75506260a15fbb4dc74de180678fafe09458d47
MD5 890cb4976bd98d2d8f2da369511e103f
BLAKE2b-256 4221af01e7d55ce47df290e60cc4c0acccd439ccb95f30be63e46ba013e4f212

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7ce62ee24eddb76c317ec790c44f4fbe9f34ee0a5dae37b30c65a2b8f3e3604
MD5 cd92846d0a567cebe7f2dda140692739
BLAKE2b-256 fb0d867f5a1955de8e04edfbdf32891376443629d94c3e31ae2ea2ba101d6d31

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-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.1-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.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2945f4bce1518e09eb25458dbd09800f7aa3fee81a5a5cefe66c4e82fe8cb69c
MD5 f4566817b514a6293816cdcbe96af5e2
BLAKE2b-256 3ce92c1a482052cfabd6906887096993099afa2db738e7597c30e4f2b9922718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d67b916f2f777a6d31067e842598e059f1a0e29022c86454564fc9efb9a0c19
MD5 c5feb737b2c09f7c1b7c219d71e216c4
BLAKE2b-256 e2cb08025a4402bd6f34ac7c07e4d5c75e4f32e595cd7424d697c6fce1663bc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7aaff952dd6930fc87b52d44bf72ac8426e45e90058fe0f2da446889738eff44
MD5 28f010bc2302f482f5dc102d76485d24
BLAKE2b-256 9c45fe4524dea5a15a6f64522745a96618fb2f874c11c4060848abacc4f85232

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 95.2 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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 730195aa58afaa7dbb5d351e8728cec6763be2605ef82eec9f134950e3c8618e
MD5 dd6f654f9414420fbd339254ae9e0345
BLAKE2b-256 63f6a1de4b16a2409450d7e3c86409c836417b7f2df07409abaabcf54872769d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 98.4 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7033c3c5eb7cd301d9bea8a01660fbe9561c9a3a069d1733e9a712917def0aa2
MD5 f035748ab4626992cb3183dd1fb258c7
BLAKE2b-256 3178d60064492ab1259af905812177fa79d968707ace60a2c98e2465ca22a6e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 93.4 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c57abea6aa7de8c584b32958d8f606a08d659d3a5a1296ba2038ea9c185a417e
MD5 c17532ddf92b4935d066a75c63265027
BLAKE2b-256 b61ba16252e5dc7c874a01d0053abab05eb9cbec7d1798af07eb2eda58c6ed53

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 206.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4935ad7324d8637715f7cefc35ad65be80900f91d1631947b01bf70651daa328
MD5 5363cca2414ba7ed68cfdb953cbaae7f
BLAKE2b-256 876e2bea1a6d40ab7f381f2f8a91600b0d263a82cef3e275743484b7fd36da65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7c89bdfe72c2b96bbe431764a90a25723570a896b605d08e08bca6fe150b8a33
MD5 938ef734fbbb6422c2f4f62d70108a31
BLAKE2b-256 6e7c514a73bba206f520b81a5f931e603e37642aa26e00567528e015baf99100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5b347c2184906daedae9a2f9fac67cf02c61f7b6498f09cafdcdd6b404ea9be
MD5 d3c7f76d1821799dfeb96c521a7cb901
BLAKE2b-256 1f8be0fc8f7f69d37387ed7b5bc87ecfbe71c4e9fbf858b9dd74e0d5dc9e57b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e59f1d5db7bba65f57a2b121eea839214465e878d957d9ab29ad039279ec2a66
MD5 0acaa5de29295151e93003e3a2c3c4eb
BLAKE2b-256 50c7fd6fdc9d9e9e4a7ef4f97e757a607ca945a434e5ce29a7a1359b000c48b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52e474424ea1863199e8635a3915b279164929e71b81af97f2105cab1ce78ef2
MD5 a5237d487bc18be5a16d5051c2a7c99c
BLAKE2b-256 a511c37b226ee2a1ed0e5305a1a25419e63ea97dece30543f7bb5431afdd504b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1-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.1-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.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 355e766371657ceca791041b82a7943aa3c8a0d879359c112e63bf3c1c8cfea7
MD5 d7c6a019f81580731c987ee0aff3653e
BLAKE2b-256 ac2d7525bd66f30f2686805aacf1055f1a06b3df87698cdac6bd0df4346adc4a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 98.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69fa244ddc1f9c3e8d390e169ebbf018eee53c2e05bda61c980418df89585ccf
MD5 f6ef7d0ed29400b7bef5d16382eabd21
BLAKE2b-256 20e39ccff309c219323057b903e1be1696f9890f6740402624fb72f778e30846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2ab24ed5d3a19f31fb815419a61b27904b5b0222eaacac5e1853d5361035df8
MD5 a3765359558d6e17917234d0fef3d70d
BLAKE2b-256 5175ad42e73a3513d233eb0e26807ca7b0e846dee4737f783c22224a028af961

See more details on using hashes here.

Provenance

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

This release

2.4.1 This release

101 files

2.4.0

101 files

2.3.0

90 files

2.2.2

90 files

2.2.1

90 files

2.2.0

90 files

2.1.2

90 files

2.1.1

74 files

2.1.0

74 files

2.0.1

107 files

2.0.0

107 files

1.17.3

81 files

1.17.2

79 files

1.17.1

72 files

1.17.0

65 files

1.16.0

70 files

1.15.0

75 files

1.14.2

30 files

1.14.1

74 files

1.14.0

64 files

1.13.3

51 files

1.13.2

44 files

1.13.1

45 files

1.13.0

45 files

1.12.1

1 file

1.12.0

1 file

1.11.2

1 file

1.11.1

1 file

1.11.0

1 file

1.10.11

1 file

1.10.10

1 file

1.10.9

1 file

1.10.8

1 file

1.10.7

1 file

1.10.6

1 file

1.10.5

1 file

1.10.4

1 file

1.10.3

1.10.2

1 file

1.10.1

1 file

1.10.0

1 file

1.9.0

1 file

1.8.0

1 file

1.7.0

1 file

1.6.0

1 file

1.5.1

1 file

1.5.0

1 file

1.4.2

1 file

1.4.1

1 file

1.4.0

1 file

1.3.1

1 file

1.3.0

1 file

1.2.1

1 file

1.2.0

1 file

1.1.4

1 file

1.1.3

1 file

1.1.2

1 file

1.1.1

1 file

1.1.0

1 file

1.0.0

1 file

0.0.0

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page