Skip to main content

Generic Transparent Proxies

Project description

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.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.2.tar.gz (40.9 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.2-cp314-cp314-win_arm64.whl (39.7 kB view details)

Uploaded CPython 3.14Windows ARM64

zope_proxy-7.2-cp314-cp314-win_amd64.whl (40.7 kB view details)

Uploaded CPython 3.14Windows x86-64

zope_proxy-7.2-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.2-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.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (67.2 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

zope_proxy-7.2-cp314-cp314-macosx_10_9_x86_64.whl (38.4 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

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

Uploaded CPython 3.13Windows ARM64

zope_proxy-7.2-cp313-cp313-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.13Windows x86-64

zope_proxy-7.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (38.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.9+ x86-64

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

Uploaded CPython 3.12Windows ARM64

zope_proxy-7.2-cp312-cp312-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.12Windows x86-64

zope_proxy-7.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (38.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

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

Uploaded CPython 3.11Windows ARM64

zope_proxy-7.2-cp311-cp311-win_amd64.whl (40.2 kB view details)

Uploaded CPython 3.11Windows x86-64

zope_proxy-7.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zope_proxy-7.2-cp311-cp311-macosx_10_9_x86_64.whl (37.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zope_proxy-7.2-cp310-cp310-win_amd64.whl (40.2 kB view details)

Uploaded CPython 3.10Windows x86-64

zope_proxy-7.2-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.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (69.9 kB view details)

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

zope_proxy-7.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (38.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zope_proxy-7.2-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.2.tar.gz.

File metadata

  • Download URL: zope_proxy-7.2.tar.gz
  • Upload date:
  • Size: 40.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zope_proxy-7.2.tar.gz
Algorithm Hash digest
SHA256 a44ea34ced433dca665b5e8c300e83e40d2ae6821668f57aef38c11593e56f58
MD5 55b76a02fc30db73f3b563339f5d236c
BLAKE2b-256 7d8e1dc4d525e4f8b892369e98461214a7a6ef8a21c5c0acc1d4b82d03ee5f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2.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.2-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for zope_proxy-7.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2277c9b207265cfdb4392cede3db7e153efb0bed91ae3c436a13c3ffcc24a9ed
MD5 73a62cddc0485c508802f7720e82712a
BLAKE2b-256 a929d5acaf645dddabe1589b51464c347bb06a83d609e2fcea07c75792b3925a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for zope_proxy-7.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 94810b015a9a23a92284d81ef8280d9f2434f7ecb0986a02db08cbd5db58c81f
MD5 8559736bb6c295eaa41c2cd920c00904
BLAKE2b-256 acdcb0ab8b2d4ccab18dca0204c8c9e602a7d0e160e35f1306190a04131830ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 604572b8be85ba18fe4a8d0c6cb843a55ad3df73813a4251e70c232a99d631d7
MD5 f5274208d5c8a033372cd98dba0f978b
BLAKE2b-256 3e2f380969181086bfd5ecb3f8698720ace5106427d7c74291dd328af72d85ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-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.2-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 87a1a8195b05c57a09fa81a8ac2de4c1c826ba4769337c99521db6dc0c12144e
MD5 6cb82a122fbcddb513ab90aa95a6d69a
BLAKE2b-256 2563420b4867c52b88b9e47dcb6b98ddd23ed6513377ef03e651f46bddf5d917

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e72b5c4ec02ea222c7a92fe9e4fb4d56c1c3b182debace561bf63b4607b5d260
MD5 6e8d0c7c72eb0bc2158b3521c75bcadc
BLAKE2b-256 d3403ba06dc1bc72a5e32cfa861ae9dd2e7a1ca8114c5ae83043355fdc3ada5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51b9ab9073efbff0dda598fd14333fd18593e5fd5f4aa66ecc7d5dd97cf4ec79
MD5 c741a8970d23ece0fb89ca00c563a979
BLAKE2b-256 b01ec1c833d6466c9f69c7563d4b53da5e67a00e805cf3ff5b074290600025fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64918e3d6e04175dacc38e2e14630033e7945f982b31ed1538d6b46089f46e9e
MD5 34765a4a0d7614432e6687fc60d300ce
BLAKE2b-256 8007d808494e3ec5dd73f1fffb974e53036c105ea1c653efddbb7dbd2a458cff

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: zope_proxy-7.2-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/6.1.0 CPython/3.13.12

File hashes

Hashes for zope_proxy-7.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 132b309c521d5e17f99e4955abecde21930656c12ca0d74ad1bfca54b1a79ccc
MD5 31f91db493a8ddef007d602bd9b93f57
BLAKE2b-256 3071e352604aa85a6052af3b63c8267dd73a91135ca70b17a0bd758100aa4e9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for zope_proxy-7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2186c37ad13dfc8651ec3983b1497bb833e30abfe2f953fc62c19e6cd949053f
MD5 8580600b72ce969227d503673404aa92
BLAKE2b-256 5febcc3661c5646b178e5d96c117569360acc5a2a017432f7743234cb2d6af45

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 60fb806b25d6341e4dbe9464df028628c4e060b2725f305c01f42b81b73ee121
MD5 da087288d87a9c4b91ca19021a4116da
BLAKE2b-256 0e9922c259f358d07709098030c3b487436ece9006ea18feb3dcf84ad65cc639

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-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.2-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 68bc96396d421ad7ca26c1099654f1c05e8fca8baf187f02a156b364cb515ed0
MD5 6c36c9ecd86d7fd791629d9e440d2ccf
BLAKE2b-256 16466a3c66b9504a8886fe17634fda5a482777ea70c6c8af6f959b8f8de3105c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ba7a5a740630395d95c434b6426020bbcf1bd7a1093a54b73c59114942998bf4
MD5 f09b23dd96629f628715f3d0322c44d0
BLAKE2b-256 4e5bee246c7606402fc0bedaa2c90d6b597d477d8a34e5926298764d29864a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46c329bee99e0668fcca3b527449efa704e3b3ac2412408bae7425048b9af83e
MD5 e52ca0297129337dced4da41492b315c
BLAKE2b-256 f5ba6608fbf5c3c4cb8b55f716db30ee927997ff52527c81b25044056373aafe

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa6fa2005349241ee01f99e8297d4e27b2f0f786678993efae95f63d4eb98e92
MD5 886daeec31fd288318cc714079402de1
BLAKE2b-256 70943d5e5f17227026f34c594f46292b4b66298e067797608798185b60b79177

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: zope_proxy-7.2-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/6.1.0 CPython/3.13.12

File hashes

Hashes for zope_proxy-7.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 012d389f91ec184b69f1c84ac3f3db0fba4a665686683cb1326ee675efcdc634
MD5 86c017d3581143a66a587173cb20ac90
BLAKE2b-256 9de0b4d633f8d4032509adedb7dc68f37ec142d6ddc95b58973b248b543f81f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for zope_proxy-7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ca991d5a8ab53e6fe5a986c5435544960959c5e5a96c1d22bd8b17a24c989f8
MD5 e1857c110e492427477912a4f64faf73
BLAKE2b-256 c0f5f806e7aa8b6d329fc3f32b3fefc5c0742ef7d7d8a29e34b41a1790625665

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 49a16892208e12e1e2d4433a3c3e5b93a4e7ea6448671890b899e934b7a506c4
MD5 2a4c5c755c0eaff214cd6f1692f8f020
BLAKE2b-256 cdfa7223c0e472d1a573c6088f73baf6b0018a50b853d33fafd2d8f3c76a212f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-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.2-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7d67031461c6c4d75f2f3731d22d56ce55a1c45d03f338b3528b01ccd610443d
MD5 65966208f371dce4aad1ce33f833d6bd
BLAKE2b-256 610bc55e3766a1494147d0fca0d13d937c5a623f062ecf0827911bffac784dd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9d7b35bde39a9efc51c1b8d495c4c1758eb3098ee2460359a6d4ec28aafbfefe
MD5 1c56a50c9e72f4bc4606f78a78e0f240
BLAKE2b-256 63d1e3620afeec2e3e7b1fdcef06595a34b6011d842d2f1f7ef340430608b173

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ad468d0a1f4a816ad50e4a7f35da67d2045e9b2518990598e7ba2039350dfb3
MD5 698b7dcdd6e99d84dba1b1140fbde6e7
BLAKE2b-256 86dd9300b4b98a5ad2e9c05537789553c25bc8efc4e43908c09e41508d411464

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 175076588d6c987d478db86986823a71b25a93fb3289aef2257ba020d5cd965f
MD5 e09363d4e4b0d3ca640e123fcc8fdc94
BLAKE2b-256 ecadb08ced5a1717a4302c8caaa9d34bda2597c4d927648e67858090246cca2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: zope_proxy-7.2-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/6.1.0 CPython/3.13.12

File hashes

Hashes for zope_proxy-7.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c7fd2a529c4caabd58cd9da033497d9c653d7ff02365437aaa70770c49e9c592
MD5 f996640fa388cfe09b95c040ebbbd1f4
BLAKE2b-256 5624738092ec99e39df766805aa77796c8c04e9388df56bf2f83ee09b33c9085

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for zope_proxy-7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4eb6cab0588aad6821ab3d7f964766a613c0e8878667109e724248bfaee3699c
MD5 67752dff4c9ab9c51ecae7a6bf9abbfc
BLAKE2b-256 7e3c831f881b4ba1c6bf2d9aea2caa5f9b5a67dc73b007bb5ff1aa9ca409fc47

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 bb11b582a63733b82d226682a1d68aff232e6bfc414fcb810a459c6491f3883a
MD5 bbdfd10b52aec8a910108e81238a4a75
BLAKE2b-256 b02ef1f840c339536ea7ae83352ade4d6aead8307bc1d5155d2d9b44b8f9e4ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-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.2-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8c87522adb6e2d5325ff0dfd5e952598493caadaf2224bf7ff1b46705c86ca54
MD5 e92c0e7ee4b9a577489214d72e057fc3
BLAKE2b-256 5c23b47b8aed4dc70f55121055d274e0924dcfe538b98f70fe286d62e90952b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b6a91305bb557633d91cb290351dbe83b8db36b5a2d2a778dcdb9a55fdf7e2d1
MD5 468e536b853064d96532d2c62637c31b
BLAKE2b-256 82a4e755256fc9eef6a8d4d41a4e81a44f680589ac630068aae57ae932b6dd09

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf797c94a6ab753af351d3c9a5f7a700dd4d4a5cbbec8b2d4d2563ab71c93b5e
MD5 626f7b64d7cbd1dd6141d2868c066631
BLAKE2b-256 a8d1b996cd85331d3d52900de3516322b4e84c0a862a6ef307e02f376c90d8ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 586ed612f4c729c2d134b6cc54d51e4789a6bb69c17927a45c8b2a1f1d5fb073
MD5 30b2eb3626586e6439cd42323f5e8e8a
BLAKE2b-256 6e91d9ee3999c246e0e234376da20fdfe884d5a90994a61c9da64bfb1097d7de

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for zope_proxy-7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5c489f4ca271f3f16195733142ae403ded889fdd66d89c5fda8b2d6198233fac
MD5 15df65e5b8cdd884b1ab10b10a947702
BLAKE2b-256 8bfd5046942a30e1b3e5daf43a5d22422974053df0e70a3923917aed70b64df7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 046af4d1bf967b5c876d8c102f8d60fa10f55dec80eba84d4c8c114471397931
MD5 61894f6c27200348f3b23f801597a683
BLAKE2b-256 8db05ddc397a3422a04e6b559c85c5abaf5e613c216b00421bd1f08a5224dc8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-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.2-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8a5fbcbd601df97ebb7fb0a6cb6272446feb4d94e929b19a34998510ca7babbe
MD5 2d2cbf797c489b1914973b99331382ef
BLAKE2b-256 50574782e5e0450d25172faf400f7b7370b0ea0d3af74141333bea0875647294

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e6168093fcdb29a2b24213613b8117439d39c9782d1944c9084c81793662f1f2
MD5 65da3bedae4681126617452143935955
BLAKE2b-256 31d0f4856d3b678bae7dd38d29daa77d13878876a6267734657b6c11f9b4192c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1d25a443e2fe57caaebe9ddf71bd96c53fd0855d6a5ec26a1b4cc57ec48fa4e
MD5 f6e0cc44c09d1c81b7a71cb64f7119b4
BLAKE2b-256 315bf20c75c40f3703d906fb4803e0293ebe4b297aede2644f2ecb2ecb2f2be8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zope_proxy-7.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13eb95593da9dad7e1c90448825dba2f57595944b3cd0ae48da9003aef35086f
MD5 36353cbe2d2d52bd45769570e11b080e
BLAKE2b-256 9a838949c9338520eef6793df8c652394bfa65cc1296b01160daa26275892ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for zope_proxy-7.2-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.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page