Skip to main content
https://github.com/zopefoundation/zope.proxy/actions/workflows/tests.yml/badge.svg https://coveralls.io/repos/github/zopefoundation/zope.proxy/badge.svg?branch=master Documentation Status Latest release Python versions

Proxies are special objects which serve as mostly-transparent wrappers around another object, intervening in the apparent behavior of the wrapped object only when necessary to apply the policy (e.g., access checking, location brokering, etc.) for which the proxy is responsible.

zope.proxy is implemented via a C extension module, which lets it do things like lie about its own __class__ that are difficult in pure Python (and were completely impossible before metaclasses). It also proxies all the internal slots (such as __int__/__str__/__add__).

Complete documentation is at https://zopeproxy.readthedocs.io

Change log

7.3 (2026-08-20)

  • Add support for Python 3.15.

7.2 (2026-04-30)

  • Add support for automatically building and publishing Windows/ARM64 wheels.

  • Add support for automatically building and publishing source distributions.

7.1 (2025-11-18)

  • Drop support for Python 3.9.

  • Add support for Python 3.14.

  • Move all supported package metadata into pyproject.toml.

  • Remove no longer necessary setuptools runtime dependency.

7.0 (2025-09-12)

  • Replace pkg_resources namespace with PEP 420 native namespace.

  • Add preliminary support for Python 3.14.

  • Drop support for Python 3.8.

  • Adjust minimal required version of zope.security test dependency to 7.3.

6.1 (2024-10-02)

  • Respect PURE_PYTHON environment variable set to 0.

6.0 (2024-09-17)

  • Declare full support for Python 3.13.

  • Drop support for Python 3.7.

5.3 (2024-08-07)

  • Build Windows wheels on GHA.

  • Correct return type for wrap_hash (fixes build on i386). (#61)

5.2 (2024-02-09)

  • Add preliminary support for Python 3.13 as of 3.13a3.

5.1 (2023-10-05)

  • Add support for Python 3.12.

5.0.0 (2023-01-18)

  • Drop support for Python 2.7, 3.5, 3.6.

  • Remove proxying code for names that no longer exist in Python 3 like __long__ and some others. (#55)

4.6.1 (2022-11-16)

  • Add support for building arm64 wheels on macOS.

4.6.0 (2022-11-03)

  • Add support for Python 3.11.

4.5.1 (2022-09-15)

4.5.0 (2021-11-17)

  • Add support for Python 3.10.

4.4.0 (2021-07-22)

  • Add support for Python 3.9.

  • Create aarch64 wheels.

4.3.5 (2020-03-16)

  • Stop installing C header files on PyPy (which is what zope.proxy before 4.3.4 used to do), fixes issue 39.

4.3.4 (2020-03-13)

  • Fix a compilation warning on Python 3.8. The slot tp_print changed to tp_vectorcall_offset in 3.8 and must not be set. Prior to 3.8, it was reserved and ignored in all Python 3 versions. See issue 36.

  • Remove deprecated use of setuptools features. See issue 38.

4.3.3 (2019-11-11)

  • Add support for Python 3.8.

  • Drop support for Python 3.4.

4.3.2 (2019-07-12)

  • Fix error handling in ProxyBase.__setattr__: any the exception raised by PyString_AsString/PyUnicode_AsUTF8 would be silently swallowed up and ignored. See issue 31.

4.3.1 (2018-08-09)

  • Simplify the internal C handling of attribute names in __getattribute__ and __setattr__.

  • Make building the C extension optional. We still attempt to build it on supported platforms, but we allow it to fail in case of a missing compiler or headers. See issue 26.

  • Test the PURE_PYTHON environment and PyPy3 on Travis CI.

  • Add support for Python 3.7.

4.3.0 (2017-09-13)

  • Fix a potential rare crash when deallocating proxies. See issue 20.

  • Drop support for Python 3.3.

  • Drop support for “python setup.py test”.

  • 100% test coverage.

  • Fix indexing pure-Python proxies with slices under Python 3, and restore the use of __getslice__ (if implemented by the target’s type) under Python 2. Previously, pure-Python proxies would fail with an AttributeError when given a slice on Python 3, and on Python 2, a custom __getslice__ was ignored. See issue 21.

4.2.1 (2017-04-23)

  • Make the pure-Python implementation of sameProxiedObjects handle zope.security proxies. See issue 15.

  • Add support for Python 3.6.

4.2.0 (2016-05-05)

  • Correctly strip zope.security proxies in removeAllProxies. See issue 13.

  • Avoid poisoning the user’s global wheel cache when testing PURE_PYTHON environments under tox,

  • Drop support for Python 2.6 and 3.2.

  • Add support for Python 3.5.

4.1.6 (2015-06-02)

  • Make subclasses of ProxyBase properly delegate __module__ to the wrapped object. This fixes some zope.interface lookups under PyPy.

  • Make the pure-Python implementation of ProxyBase properly report the zope.interface interfaces implemented by builtin types like list. This fixes some zope.interface lookups under PyPy.

4.1.5 (2015-05-19)

  • Make the C implementation proxy __unicode__ correctly.

  • Make the C implementation use the standard methods to proxy int and float.

  • Make the pure Python implementation handle descriptors defined in subclasses like the C version. See https://github.com/zopefoundation/zope.proxy/issues/5.

4.1.4 (2014-03-19)

  • Add support for Python 3.4.

  • Update bootstrap.py to version 2.2.

4.1.3 (2013-03-12)

  • Fix interface object introspection in PyPy. For some reason PyPy makes attributes available despite the restrictive __slots__ declaration.

  • Add a bunch of tests surrounding interface lookup and adaptation.

4.1.2 (2013-03-11)

  • Make PyProxyBase.__iter__() return the result of PyProxyBase._wrapped.__iter__ if available, otherwise falling back to Python internals. The previous implementation always created a generator.

  • In PyProxyBase.__setattr__(), allow setting of properties on the proxy itself. This is needed to properly allow proxy extensions as was evidenced int he zope.security.decorator module.

4.1.1 (2012-12-31)

  • Fleshed out PyPI Trove classifiers.

4.1.0 (2012-12-19)

  • Enable compilation of dependent modules under Py3k.

  • Replace use of PyCObject APIs with equivalent PyCapsule APIs, except under Python 2.6.

    N.B. This change is an ABI incompatibility under Python 2.7:

    extensions built under Python 2.7 against 4.0.x versions of zope.proxy must be rebuilt.

4.0.1 (2012-11-21)

  • Add support for Python 3.3.

4.0.0 (2012-06-06)

  • Add support for PyPy.

    N.B.: the C extension is not built under PyPy.

  • Add a pure-Python reference / fallback implementations of zope.proxy.ProxyBase and the proxy module API functions.

    N.B.: the pure-Python proxy implements all regular features of ProxyBase; however, it does not exclude access to the wrapped object in the same way that the C version does. If you need that information hiding (e.g., to implement security sandboxing), you still need to use the C version.

  • Add support for continuous integration using tox and jenkins.

  • 100% unit test coverage.

  • Add Sphinx documentation: moved doctest examples to API reference.

  • Add ‘setup.py docs’ alias (installs Sphinx and dependencies).

  • Add ‘setup.py dev’ alias (runs setup.py develop plus installs nose and coverage).

  • Replace deprecated zope.interface.implements usage with equivalent zope.interface.implementer decorator.

  • Drop support for Python 2.4 and 2.5.

  • Add Python 3.2 support.

3.6.1 (2010-07-06)

  • Make tests compatible with Python 2.7.

3.6.0 (2010-04-30)

  • Remove test extra and the remaining dependency on zope.testing.

  • Remove use of ‘zope.testing.doctestunit’ in favor of stdlib’s ‘doctest.

3.5.0 (2009/01/31)

  • Add support to bootstrap on Jython.

  • Use zope.container instead of zope.app.container.

3.4.2 (2008/07/27)

  • Make C code compatible with Python 2.5 on 64bit architectures.

3.4.1 (2008/06/24)

  • Bug: Update setup.py script to conform to common layout. Also updated some of the fields.

  • Bug: Honor pre-cooked indices for tuples and lists in the __getslice__() and __setslice__() methods. See http://docs.python.org/ref/sequence-methods.html.

3.4.0 (2007/07/12)

  • Feature: Add a decorator module that supports declaring interfaces on proxies that get blended with the interfaces of the things they proxy.

3.3.0 (2006/12/20)

  • Corresponds to the verison of the zope.proxy package shipped as part of the Zope 3.3.0 release.

3.2.0 (2006/01/05)

  • Corresponds to the verison of the zope.proxy package shipped as part of the Zope 3.2.0 release.

3.0.0 (2004/11/07)

  • Corresponds to the verison of the zope.proxy package shipped as part of the Zope X3.0.0 release.

Download files

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

Source Distribution

zope_proxy-7.3.tar.gz (41.0 kB view details)

Uploaded Source

Built Distributions

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

zope_proxy-7.3-cp314-cp314-win_arm64.whl (39.8 kB view details)

Uploaded CPython 3.14Windows ARM64

zope_proxy-7.3-cp314-cp314-win_amd64.whl (40.2 kB view details)

Uploaded CPython 3.14Windows x86-64

zope_proxy-7.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (72.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

zope_proxy-7.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (72.6 kB view details)

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

zope_proxy-7.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (67.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_proxy-7.3-cp314-cp314-macosx_11_0_arm64.whl (38.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zope_proxy-7.3-cp314-cp314-macosx_10_9_x86_64.whl (38.5 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

zope_proxy-7.3-cp313-cp313-win_arm64.whl (39.4 kB view details)

Uploaded CPython 3.13Windows ARM64

zope_proxy-7.3-cp313-cp313-win_amd64.whl (39.9 kB view details)

Uploaded CPython 3.13Windows x86-64

zope_proxy-7.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (72.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

zope_proxy-7.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (73.3 kB view details)

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

zope_proxy-7.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (67.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_proxy-7.3-cp313-cp313-macosx_11_0_arm64.whl (38.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zope_proxy-7.3-cp313-cp313-macosx_10_9_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

zope_proxy-7.3-cp312-cp312-win_arm64.whl (39.4 kB view details)

Uploaded CPython 3.12Windows ARM64

zope_proxy-7.3-cp312-cp312-win_amd64.whl (39.9 kB view details)

Uploaded CPython 3.12Windows x86-64

zope_proxy-7.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (72.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

zope_proxy-7.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (73.3 kB view details)

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

zope_proxy-7.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (67.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_proxy-7.3-cp312-cp312-macosx_11_0_arm64.whl (38.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zope_proxy-7.3-cp312-cp312-macosx_10_9_x86_64.whl (38.3 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

zope_proxy-7.3-cp311-cp311-win_arm64.whl (39.4 kB view details)

Uploaded CPython 3.11Windows ARM64

zope_proxy-7.3-cp311-cp311-win_amd64.whl (39.8 kB view details)

Uploaded CPython 3.11Windows x86-64

zope_proxy-7.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (71.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

zope_proxy-7.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (71.6 kB view details)

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

zope_proxy-7.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (66.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_proxy-7.3-cp311-cp311-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zope_proxy-7.3-cp311-cp311-macosx_10_9_x86_64.whl (38.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zope_proxy-7.3-cp310-cp310-win_amd64.whl (39.8 kB view details)

Uploaded CPython 3.10Windows x86-64

zope_proxy-7.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (70.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

zope_proxy-7.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (70.0 kB view details)

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

zope_proxy-7.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (64.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

zope_proxy-7.3-cp310-cp310-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zope_proxy-7.3-cp310-cp310-macosx_10_9_x86_64.whl (37.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file zope_proxy-7.3.tar.gz.

File metadata

  • Download URL: zope_proxy-7.3.tar.gz
  • Upload date:
  • Size: 41.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for zope_proxy-7.3.tar.gz
Algorithm Hash digest
SHA256 a2c00ff84d416b5008bbcdd7337eb800ade8bc083312e8b5e0ecd7d0c0d11cf6
MD5 524013a5f1c22258e36fd7a1bb6f4174
BLAKE2b-256 6f1f8069631c83895d694dce611425b6c801381ef2d2e1d0eb6174ec059c8f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3.tar.gz:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 39.8 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 zope_proxy-7.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2a6ccbeb7c4aa0feeb144f6c09fc919846fe2b7f827b8e55a4bce954c12270d9
MD5 62d67fd95a3314f31eb089508ca7132e
BLAKE2b-256 ca37f785870a992df8c9be4ae7621332864f8a27d0c47cbfcb76d9b5353f4cb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp314-cp314-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 40.2 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 zope_proxy-7.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 258d0d5fc1b6e2c9ec29b3e8bc40e6f623f7ee24e206db998337ccfbe4de474b
MD5 2625cce430ae76e593a64767afb2826d
BLAKE2b-256 1cd5c26f4391d70ff5c26f4ae8a259fc7c3310d53a4bf86cf957943786a953dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp314-cp314-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a6c5dd00fe7ff5a9fae00c12654fc6a6493833382f0be99fcf7b5a055fd720c1
MD5 15bb7ecb5443fed76f3c0ff4d067b8d1
BLAKE2b-256 b8ea1b28d62f0d9766a1f7f5d36600d099c46ef30e8f8ff28a5ab2273f16cdef

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6ed0a8accacab45594b64eb9749426181068a5c67b02efb7b8d8b1d92ff85ee8
MD5 fe8f1eb43390b442390a72ad3f4670df
BLAKE2b-256 2d10dd77f92e81455b2b4dbff5be8a86087707c2f9447d8607079c2bb49664f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 08d18d627457015a63fb14d9f3bf5ef1cdebd063f0664c2f214e51ad680ad466
MD5 1542b154e1d2618d130592483e0e2913
BLAKE2b-256 d0b3e110f712aa9eaf01f451b49f0ca4c8aa5cfb698a43d20655fb039d3d7f6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1702fd1770b3d1555e9ec9bd738b3c16fd7ec1baa97bf6182c04a086f5b8c07e
MD5 f1ca181cce653d4dc7bde7f86eff35f2
BLAKE2b-256 f86353b5e429718a9ee5853aa1b0ef63bbf45388a8e55dff83cbb68ebe404efb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef07bccff1a4c1e9e6b6e9c21858069f7818c7ad60ac3a9b1ade42f1a0cc2cce
MD5 df208816ba633f47f29f2cd0bdc9f330
BLAKE2b-256 ed69a5da6599371db99e7e6065f8781913f427eab4aeac502bdc5b1c69f21d7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp314-cp314-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 39.4 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 zope_proxy-7.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c1459f84fd4fbfd0f71eb1499af29b6e2366f73ba86c49b0c8b9993e9837019d
MD5 e8ea38bf9755ae7d5928d6394451af87
BLAKE2b-256 a4c14baf8f1d5ccccc9ca1a3302d0b763152efb3da9bb025d2c9c28d613ef860

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp313-cp313-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 39.9 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 zope_proxy-7.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2024e745f06d58cd26a5a70b4b0820b3e9924417bc7dde67c6b882c064e8d677
MD5 784a9dfeef1cbfc21c9b6ca7a1565919
BLAKE2b-256 17708139b85df8a55de29021736bcf0c5c96bc93c741e2d12fcd420d475313f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp313-cp313-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4bff4a849d83fe910bac8f5627cecbcc9fa6f37ec28a2a6bcbdcc3b1d7bfc324
MD5 b9c4286853bbbb169f3c206c17198f12
BLAKE2b-256 8d2b01ca889c0a4600f0e2f347c5c9530c14d6ab023d3d746819d7c81221f0e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1fb265379ec806b069599bdf4eb39b2c09d2450b44b5ed985ef7770002784c95
MD5 703e6156fbbffcfcc990067dffd38201
BLAKE2b-256 5887cc15c18fb7adbbb03484af672f6f309aec5112eb69e0e6d147068cb9f9bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a5a2ca4339173bd998c47bde5d06ab6bcf780f303de2187c9df6705c7e4b12c6
MD5 16d48936e52f46a42a492895e7dab7f2
BLAKE2b-256 84980a89d2e9c7d7477a114d17474bf4b3432106e6b978eb7bc291566e7aaaf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d51467de0442d985ebf992fe506ee6da6ba24da96e25326e231f4be51a7d622
MD5 86e9a515706a12e3ee5a5c10ec714a45
BLAKE2b-256 a14551c45ec1aa05121e39bb828f36568f531cdbf6bbb0ed1df3b853d5731d6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31b52e8abb7f8a66440af27f3267e7357d97f5588fa3a5e7ea9baea6656c0873
MD5 dc53831cbae5693fc59355c5b068cff4
BLAKE2b-256 0a302f72d9c5501aab73c0befb81dab2d4188aafdcadade11097bdb00f4aa285

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 39.4 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 zope_proxy-7.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4321ee5cebbf6446aca5e5430367db64f42ff6010ad3aa7e796f369a6052cbd3
MD5 d4cef0b9fb199e67e771fa1f0ea8181b
BLAKE2b-256 5472f360fa263252dd0122f4b6ee4afd474059f53c0d2af3763af218f33d7ef2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp312-cp312-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 39.9 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 zope_proxy-7.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 892ff999f48173812a6047a0fa206232cd0888df639c32565f8e461c30e906e2
MD5 fea2458c2a0ed167c95e86359b5ea347
BLAKE2b-256 6a84c92966dbbcafbb14a61a854d6e9b3d506f637f93ff80e3baef66932d08cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp312-cp312-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9fe0992cea7cc9fc03f7361700cf1d7534d85c525ef12ec426280575f579af98
MD5 867ae24492c0934f64bfa65207184b56
BLAKE2b-256 a019c513bec563de912ffb0f9e7b9e36b419d53b5d248191508e7b0f68b5dfca

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d300fcedb94ffa05e01644b054182e43467ced5c7953d72f4f5d5607c9beadfe
MD5 3c4f546b6be4aea7ee4aca20f9d73d77
BLAKE2b-256 343b052a4d942a1ea53da8e7cce713bd2556540df32e061af94eca12c6157d63

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 df65e918118f54ae74ccd76f255ffea5221b330d980a22d0448e0a90b9897971
MD5 48df8c5c933cd2aa922deb4fee6e20cd
BLAKE2b-256 86e3cd55cb9c9945437af93c1d802245ae2669c9a9f89c74f88c0fb0e829c29e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 927f84295a63373720e4c8e5014b6dc4529612f3510e530dfb4e3f094067251a
MD5 3a03b2b5db8ea26246509066f956f0f8
BLAKE2b-256 d9501903fbfd988d71c52ccd42003e328e4e7f58d780fe0e7f83976598e067eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4111a1a12c8ea1a3db888dc6cbeec6be47e1ad1152d2dc608fec15c8fe8a56f2
MD5 7a45f356f9d99c974e9462dc4dceed9b
BLAKE2b-256 e01c99997e328e3f33bb8c9c2594e969235ed0c2d4f4977d56b97b1689ee3621

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 39.4 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 zope_proxy-7.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 db14ac54ff44b479cac63ca5162269222079d8338b8fe0b4f20ad7fc2bf3b361
MD5 49b7b9f70c70dd385c6c74c8e856a6b6
BLAKE2b-256 aed6676ad51cba9e49b09901f7983f5a97e3889f3f9b5bc3e77b020f52662eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp311-cp311-win_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 39.8 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 zope_proxy-7.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e90d3f075e9b36448b8735efed9d58f5f7ffe2f7a45b4a7e3a954f7c53c46633
MD5 bb1c1e1a82fe494355e55a8b6ac6b34a
BLAKE2b-256 ebc30371bb84540a4c6cac19db01b034f4d2fa311c442a6b5af0ca8ce2732e96

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp311-cp311-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 be46540eb5ef70c092573759569dad62b183afd3e2486dc920221ad0af63830c
MD5 e2e57deef1e91001027e4e1709bd6128
BLAKE2b-256 b18fa3a49709be92b517d535910666e7604759a01b75f39e8d7334a4aefaa113

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c2b7b396b6db9dcc18f8d530d9743b1a03dc5d27d96ca2033191483725c38e61
MD5 cfe7188932e3e36600e67dbd62eb695a
BLAKE2b-256 38592681e6e855e5988c66ff8eb5ca50f3d9788a7e7c21047ef91abb97aff702

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 add3b41fe5c209801f664c45cada8e584bbacd2b225477722d1f278a2369f837
MD5 74d358e736316868205d36e911e96283
BLAKE2b-256 ac9797183c52eacf38c3758aadf21584669406af50cceb1c3e7c4d1b4946b9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b27566a9aeabefb032e9ba46ec7924eaea60d64c9524dd5c7f08935e0f81b120
MD5 82b73e7bf736ad11b51820ae14d6fad8
BLAKE2b-256 699915539d539638b0dbc54d51d3ead0da71d058a001605b4f158863b7fcfc21

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da03eca92dc82c982fe947ce556028c9e8032fe4c5530a0047cb4a0e04ed4a4c
MD5 d87abffa3449daeb17535d2ec861712a
BLAKE2b-256 2be6886ee52bf918164d05745f50a056c9e21a7c4f7a838c7cc63cd94c4fed03

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zope_proxy-7.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 39.8 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 zope_proxy-7.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 df062e571ef38db5e6cfeabca69a658367efea38054c13c883763edf410648c5
MD5 0a3352c71cd52f581573b21fcdf64d97
BLAKE2b-256 a422aca0e26e214302ff3f410173d07965b94ecabd714c2c1027f8233d56e91b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp310-cp310-win_amd64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 92c80d26e0c7930b4b3257c624c5e0c7e92552014d45791afc6aaafebce22135
MD5 87ed41e8f9921cd2452c1c2be23ede74
BLAKE2b-256 a36c610bcf3055f5df5885a1a4baebf4c77be6238b35120e30c6166543352f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 52c5ee7792b4e2f86a7216193d29ad416b2020ec861c12f5f6fa574e989a8345
MD5 f91648324ef7bce39b08b90f267f8ff6
BLAKE2b-256 dac50e4940078c0d4db911d29ddce84f0eef27c40ade15dc2d87d7cc43489825

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 7355bb4a23e52ea6033922f13848ddb83835f2351da73ae2672956184feef3f2
MD5 f6bb28196cb49c2e1ca2314e53acc884
BLAKE2b-256 126ddf7ac4fd9b6314e74fb15c605641e18468c3be215b1a8d54642521b812f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecb40e3491a3f64b8bf33dfccc5e97bedbe8dc8b0556e6befa53281a4e7be5c8
MD5 bfac7a291858191bcab88a43f37238f8
BLAKE2b-256 e5ddacadb73c168bd8462172ac7d06f6f8e34e9f8c180adb4547d8e843dcf1e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

File details

Details for the file zope_proxy-7.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 475f61972c063cf708218abbd98a675733a8c433fe2f5330c46c0b0e3c583045
MD5 4dff80c027e006565c27c6047d7eb408
BLAKE2b-256 150d148923dcb0acd1456dcb0396b5c52c1e17272975735fa0442a8b4667ca91

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/zope.proxy

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

7.3 This release

35 files

7.2

35 files

7.1

31 files

7.0

31 files

6.1

37 files

6.0

37 files

5.3

36 files

5.2

36 files

5.1

32 files

5.0.0

30 files

4.6.1

36 files

4.6.0

39 files

4.5.1

38 files

4.5.0

36 files

4.4.0

30 files

4.3.5

40 files

4.3.4

40 files

4.3.3

39 files

4.3.2

11 files

4.3.1

11 files

4.3.0

12 files

4.2.1

17 files

4.2.0

21 files

4.1.6

21 files

4.1.5

21 files

4.1.4

21 files

4.1.3

17 files

4.1.2

17 files

4.1.1

17 files

4.1.0

17 files

4.0.1

17 files

4.0.0

17 files

3.6.1

11 files

3.6.0

7 files

3.5.0

7 files

3.4.2

7 files

3.4.1

7 files

3.4.0

8 files

3.3.0

3 files

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