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

This package contains a generic persistence implementation for Python. It forms the core protocol for making objects interact “transparently” with a database such as the ZODB.

Please see the Sphinx documentation (docs/index.rst) for further information, or view the documentation at Read The Docs, for either the latest (https://persistent.readthedocs.io/en/latest/) or stable release (https://persistent.readthedocs.io/en/stable/).

Change log

6.8 (2026-08-20)

  • Add support for Python 3.15.

  • Fix DeprecationWarning on Python 3.14+ about returning non-None values from test methods in test_picklecache.py. (#235)

6.7 (2026-05-26)

  • Add preliminary support for Python 3.15b1.

6.6 (2026-05-04)

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

  • Add support for automatically building and publishing source distributions.

  • Fix compilation on free-threaded Python 3.14t: replace direct ob_refcnt / ob_type struct access with Py_REFCNT() / Py_TYPE() API macros, fix Py_BuildValue format strings for Py_ssize_t.

  • Fix infinite recursion crash in Per_dealloc on free-threaded Python 3.14t caused by PyDict_GetItem internally INCREF/DECREF’ing values in the pickle cache dict that holds stolen (uncounted) references. (#229)

  • Add CI testing for free-threaded Python 3.14t (Linux).

6.5 (2025-11-18)

  • Fix setuptools configuration yet again to build missing cffi extension module. The released wheels for version 6.4 will not work, they are missing a compiled extension module. (#226)

6.4 (2025-11-17)

  • Move all supported package metadata into pyproject.toml.

  • Add support for Python 3.14.

  • Drop support for Python 3.9.

6.3 (2025-10-07)

  • Fix setuptools configuration to build missing cffi extension module. The released wheels for version 6.2 will not work, they are missing a compiled extension module. (#222)

6.2 (2025-10-02)

  • Add preliminary support for Python 3.14b2.

  • Move package build requirements from setup.py to pyproject.toml.

  • Drop support for Python 3.8.

  • Make Persistent’s _p_oid representation follow the same format as the ZODB.utils.oid_repr function. See issue 219.

6.1.1 (2025-02-26)

  • Use Py_REFCNT to access cPersistentObject reference counts in assertions.

6.1 (2024-09-17)

6.0 (2024-05-30)

  • Drop support for Python 3.7.

  • Build Windows wheels on GHA.

5.2 (2024-02-16)

  • Add preliminary support for Python 3.13a3.

5.1 (2023-10-05)

  • Add support for Python 3.12.

5.0 (2023-01-09)

  • Build Linux binary wheels for Python 3.11.

  • Drop support for Python 2.7, 3.5, 3.6.

4.9.3 (2022-11-16)

  • Add support for building arm64 wheels on macOS.

4.9.2 (2022-11-03)

  • Update Python 3.11 support to final release.

4.9.1 (2022-09-16)

  • Update Python 3.11 support to 3.11.0-rc1.

  • Disable unsafe math optimizations in C code. See pull request 176.

4.9.0 (2022-03-10)

  • Add support for Python 3.11 (as of 3.11a5).

4.8.0 (2022-03-07)

  • Switch package to src-layout, this is a packaging only change. (#168)

  • Add support for Python 3.10.

4.7.0 (2021-04-13)

  • Add support for Python 3.9.

  • Move from Travis CI to Github Actions.

  • Supply manylinux wheels for aarch64 (ARM).

  • Fix the pure-Python implementation to activate a ghost object when setting its __class__ and __dict__. This matches the behaviour of the C implementation. See issue 155.

  • Fix the CFFI cache implementation (used on CPython when PURE_PYTHON=1) to not print unraisable AttributeErrors from _WeakValueDictionary during garbage collection. See issue 150.

  • Make the pure-Python implementation of the cache run a garbage collection (gc.collect()) on full_sweep, incrgc and minimize if it detects that an object that was weakly referenced has been ejected. This solves issues on PyPy with ZODB raising ConnectionStateError when there are persistent zope.interface utilities/adapters registered. This partly reverts a change from release 4.2.3.

4.6.4 (2020-03-26)

  • Fix an overly specific test failure using zope.interface 5. See issue 144.

  • Fix two reference leaks that could theoretically occur as the result of obscure errors. See issue 143.

4.6.3 (2020-03-18)

  • Fix a crash in the test suite under a 32-bit CPython on certain 32-bit platforms. See issue 137. Fix by Jerry James.

4.6.2 (2020-03-12)

  • Fix an AssertionError clearing a non-empty PersistentMapping that has no connection. See issue 139.

4.6.1 (2020-03-06)

  • Stop installing C header files on PyPy (which is what persistent before 4.6.0 used to do), fixes issue 135.

4.6.0 (2020-03-05)

  • Fix slicing of PersistentList to always return instances of the same class. It was broken on Python 3 prior to 3.7.4.

  • Fix copying of PersistentList and PersistentMapping using copy.copy to also copy the underlying data object. This was broken prior to Python 3.7.4.

  • Update the handling of the PURE_PYTHON environment variable. Now, a value of “0” requires that the C extensions be used; any other non-empty value prevents the extensions from being used. Also, all C extensions are required together or none of them will be used. This prevents strange errors that arise from a mismatch of Python and C implementations. See issue 131.

    Note that some private implementation details such as the names of the pure-Python implementations have changed.

  • Fix PersistentList to mark itself as changed after calling clear (if needed). See PR 115.

  • Fix PersistentMapping.update to accept keyword arguments like the native UserDict. Previously, most uses of keyword arguments resulted in TypeError; in the undocumented and extremely unlikely event of a single keyword argument called b that happens to be a dictionary, the behaviour will change. Also adjust the signatures of setdefault and pop to match the native version.

  • Fix PersistentList.clear, PersistentMapping.clear and PersistentMapping.popitem to no longer mark the object as changed if it was empty.

  • Add preliminary support for Python 3.9a3+. See issue 124.

  • Fix the Python implementation of the PickleCache to be able to store objects that cannot be weakly referenced. See issue 133.

    Note that ctypes is required to use the Python implementation (except on PyPy).

4.5.1 (2019-11-06)

  • Add support for Python 3.8.

  • Update documentation to Python 3.

4.5.0 (2019-05-09)

  • Fully test the C implementation of the PickleCache, and fix discrepancies between it and the Python implementation:

    • The C implementation now raises ValueError instead of AssertionError for certain types of bad inputs.

    • The Python implementation uses the C wording for error messages.

    • The C implementation properly implements IPickleCache; methods unique to the Python implementation were moved to IExtendedPickleCache.

    • The Python implementation raises AttributeError if a persistent class doesn’t have a p_jar attribute.

    See issue 102.

  • Allow sweeping cache without cache_size. cache_size_bytes works with cache_size=0, no need to set cache_size to a large value.

  • Require CFFI on CPython for pure-Python operation. This drops support for Jython (which was untested). See issue 77.

  • Fix DeprecationWarning about PY_SSIZE_T_CLEAN. See issue 108.

  • Drop support for Python 3.4.

4.4.3 (2018-10-22)

  • Fix the repr of the persistent objects to include the module name when using the C extension. This matches the pure-Python behaviour and the behaviour prior to 4.4.0. See issue 92.

  • Change the repr of persistent objects to format the OID as in integer in hexadecimal notation if it is an 8-byte byte string, as ZODB does. This eliminates some issues in doctests. See issue 95.

4.4.2 (2018-08-28)

  • Explicitly use unsigned constants for packing and unpacking C timestamps, fixing an arithmetic issue for GCC when optimizations are enabled and -fwrapv is not enabled. See issue 86.

4.4.1 (2018-08-23)

  • Fix installation of source packages on PyPy. See issue 88.

4.4.0 (2018-08-22)

  • Use unsigned constants when doing arithmetic on C timestamps, possibly avoiding some overflow issues with some compilers or compiler settings. See issue 86.

  • Change the default representation of Persistent objects to include the representation of their OID and jar, if set. Also add the ability for subclasses to implement _p_repr() instead of overriding __repr__ for better exception handling. See issue 11.

  • Reach and maintain 100% test coverage.

  • Simplify __init__.py, including removal of an attempted legacy import of persistent.TimeStamp. See PR 80.

  • Add support for Python 3.7 and drop support for Python 3.3.

  • Build the CFFI modules (used on PyPy or when PURE_PYTHON is set) at installation or wheel building time when CFFI is available. This replaces the deprecated way of building them at import time. If binary wheels are distributed, it eliminates the need to have a functioning C compiler to use PyPy. See issue 75.

  • Fix deleting the _p_oid of a pure-Python persistent object when it is in a cache.

  • Fix deleting special (_p) attributes of a pure-Python persistent object that overrides __delattr__ and correctly calls _p_delattr.

  • Remove some internal compatibility shims that are no longer necessary. See PR 82.

  • Make the return value of TimeStamp.second() consistent across C and Python implementations when the TimeStamp was created from 6 arguments with floating point seconds. Also make it match across trips through TimeStamp.raw(). Previously, the C version could initially have erroneous rounding and too much false precision, while the Python version could have too much precision. The raw/repr values have not changed. See issue 41.

4.3.0 (2018-07-30)

  • Fix the possibility of a rare crash in the C extension when deallocating items. See https://github.com/zopefoundation/persistent/issues/66

  • Change cPickleCache’s comparison of object sizes to determine whether an object can go in the cache to use PyObject_TypeCheck(). This matches what the pure Python implementation does and is a stronger test that the object really is compatible with the cache. Previously, an object could potentially include cPersistent_HEAD and not set tp_base to cPersistenceCAPI->pertype and still be eligible for the pickle cache; that is no longer the case. See issue 69.

4.2.4.2 (2017-04-23)

  • Packaging-only release: fix Python 2.7 manylinux wheels.

4.2.4.1 (2017-04-21)

  • Packaging-only release: get manylinux wheel built automatically.

4.2.4 (2017-03-20)

  • Avoid raising a SystemError: error return without exception set when loading an object with slots whose jar generates an exception (such as a ZODB POSKeyError) in setstate.

4.2.3 (2017-03-08)

  • Fix the hashcode of Python TimeStamp objects on 64-bit Python on Windows. See https://github.com/zopefoundation/persistent/pull/55

  • Stop calling gc.collect every time PickleCache.incrgc is called (every transaction boundary) in pure-Python mode (PyPy). This means that the reported size of the cache may be wrong (until the next GC), but it is much faster. This should not have any observable effects for user code.

  • Stop clearing the dict and slots of objects added to PickleCache.new_ghost (typically these values are passed to __new__ from the pickle data) in pure-Python mode (PyPy). This matches the behaviour of the C code.

  • Add support for Python 3.6.

  • Fix __setstate__ interning when state parameter is not a built-in dict

4.2.2 (2016-11-29)

4.2.1 (2016-05-26)

  • Fix the hashcode of C TimeStamp objects on 64-bit Python 3 on Windows.

4.2.0 (2016-05-05)

  • Fixed the Python(/PYPY) implementation TimeStamp.timeTime method to have subsecond precision.

  • When testing PURE_PYTHON environments under tox, avoid poisoning the user’s global wheel cache.

  • Add support for Python 3.5.

  • Drop support for Python 2.6 and 3.2.

4.1.1 (2015-06-02)

  • Fix manifest and re-upload to fix stray files included in 4.1.0.

4.1.0 (2015-05-19)

  • Make the Python implementation of Persistent and PickleCache behave more similarly to the C implementation. In particular, the Python version can now run the complete ZODB and ZEO test suites.

  • Fix the hashcode of the Python TimeStamp on 32-bit platforms.

4.0.9 (2015-04-08)

  • Make the C and Python TimeStamp objects behave more alike. The Python version now produces the same repr and .raw() output as the C version, and has the same hashcode. In addition, the Python version is now supports ordering and equality like the C version.

  • Intern keys of object state in __setstate__ to reduce memory usage when unpickling multiple objects with the same attributes.

  • Add support for PyPy3.

  • 100% branch coverage.

4.0.8 (2014-03-20)

  • Add support for Python 3.4.

  • In pure-Python Persistent, avoid loading state in _p_activate for non-ghost objects (which could corrupt their state). (PR #9)

  • In pure-Python, and don’t throw POSKeyError if _p_activate is called on an object that has never been committed. (PR #9)

  • In pure-Python Persistent, avoid calling a subclass’s __setattr__ at instance creation time. (PR #8)

  • Make it possible to delete _p_jar / _p_oid of a pure-Python Persistent object which has been removed from the jar’s cache (fixes aborting a ZODB Connection that has added objects). (PR #7)

4.0.7 (2014-02-20)

  • Avoid a KeyError from _p_accessed() on newly-created objects under pure-Python: these objects may be assigned to a jar, but not yet added to its cache. (PR #6)

  • Avoid a failure in Persistent.__setstate__ when the state dict contains exactly two keys. (PR #5)

  • Fix a hang in picklecache invalidation if OIDs are manually passed out-of-order. (PR #4)

  • Add PURE_PYTHON environment variable support: if set, the C extensions will not be built, imported, or tested.

4.0.6 (2013-01-03)

  • Updated Trove classifiers.

4.0.5 (2012-12-14)

  • Fixed the C-extensions under Py3k (previously they compiled but were not importable).

4.0.4 (2012-12-11)

  • Added support for Python 3.3.

  • C extenstions now build under Python 3.2, passing the same tests as the pure-Python reference implementation.

4.0.3 (2012-11-19)

  • Fixed: In the C implimentation, an integer was compared with a pointer, with undefined results and a compiler warning.

  • Fixed: the Python implementation of the _p_estimated_size propety didn’t support deletion.

  • Simplified implementation of the _p_estimated_size property to only accept integers. A TypeError is raised if an incorrect type is provided.

4.0.2 (2012-08-27)

  • Correct initialization functions in renamed _timestamp extension.

4.0.1 (2012-08-26)

  • Worked around test failure due to overflow to long on 32-bit systems.

  • Renamed TimeStamp extension module to avoid clash with pure-Python timestamp module on case-insensitive filesystems.

    N.B: the canonical way to import the TimeStamp class is now:

    from persistent.timestamp import TimeStamp

    which will yield the class from the extension module (if available), falling back to the pure-Python reference implementation.

4.0.0 (2012-08-11)

Platform Changes

  • Added explicit support for Python 3.2 and PyPy.

    • Note that the C implementations of Persistent, PickleCache, and Timestamp are not built (yet) on these platforms.

  • Dropped support for Python < 2.6.

Testing Changes

  • 100% unit test coverage.

  • Removed all ZODB-dependent tests:

    • Rewrote some to avoid the dependency

    • Cloned the remainder into new ZODB.tests modules.

  • Refactored some doctests refactored as unittests.

  • Completed pure-Python reference implementations of ‘Persistent’, ‘PickleCache’, and ‘TimeStamp’.

  • All covered platforms tested under tox.

  • Added support for continuous integration using tox and jenkins.

  • Added setup.py dev alias (installs nose and coverage).

  • Dropped dependency on zope.testing / zope.testrunner: tests now run with setup.py test.

Documentation Changes

  • Refactored many Doctests as Sphinx documentation (snippets are exercised via ‘tox’).

  • Added setup.py docs alias (installs Sphinx and repoze.sphinx.autointerface).

Download files

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

Source Distribution

persistent-6.8.tar.gz (124.1 kB view details)

Uploaded Source

Built Distributions

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

persistent-6.8-cp314-cp314t-win_amd64.whl (131.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

persistent-6.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (276.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

persistent-6.8-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (269.8 kB view details)

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

persistent-6.8-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (262.6 kB view details)

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

persistent-6.8-cp314-cp314t-macosx_11_0_arm64.whl (153.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

persistent-6.8-cp314-cp314t-macosx_10_9_x86_64.whl (151.7 kB view details)

Uploaded CPython 3.14tmacOS 10.9+ x86-64

persistent-6.8-cp314-cp314-win_arm64.whl (127.4 kB view details)

Uploaded CPython 3.14Windows ARM64

persistent-6.8-cp314-cp314-win_amd64.whl (130.3 kB view details)

Uploaded CPython 3.14Windows x86-64

persistent-6.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (245.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

persistent-6.8-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (242.3 kB view details)

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

persistent-6.8-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (233.8 kB view details)

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

persistent-6.8-cp314-cp314-macosx_11_0_arm64.whl (151.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

persistent-6.8-cp314-cp314-macosx_10_9_x86_64.whl (149.7 kB view details)

Uploaded CPython 3.14macOS 10.9+ x86-64

persistent-6.8-cp313-cp313-win_arm64.whl (126.4 kB view details)

Uploaded CPython 3.13Windows ARM64

persistent-6.8-cp313-cp313-win_amd64.whl (129.3 kB view details)

Uploaded CPython 3.13Windows x86-64

persistent-6.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (246.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

persistent-6.8-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (245.1 kB view details)

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

persistent-6.8-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (235.1 kB view details)

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

persistent-6.8-cp313-cp313-macosx_11_0_arm64.whl (151.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

persistent-6.8-cp313-cp313-macosx_10_9_x86_64.whl (149.9 kB view details)

Uploaded CPython 3.13macOS 10.9+ x86-64

persistent-6.8-cp312-cp312-win_arm64.whl (126.4 kB view details)

Uploaded CPython 3.12Windows ARM64

persistent-6.8-cp312-cp312-win_amd64.whl (129.2 kB view details)

Uploaded CPython 3.12Windows x86-64

persistent-6.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (246.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

persistent-6.8-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (245.3 kB view details)

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

persistent-6.8-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (235.3 kB view details)

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

persistent-6.8-cp312-cp312-macosx_11_0_arm64.whl (151.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

persistent-6.8-cp312-cp312-macosx_10_9_x86_64.whl (149.6 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

persistent-6.8-cp311-cp311-win_arm64.whl (126.3 kB view details)

Uploaded CPython 3.11Windows ARM64

persistent-6.8-cp311-cp311-win_amd64.whl (128.9 kB view details)

Uploaded CPython 3.11Windows x86-64

persistent-6.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (241.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

persistent-6.8-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (239.3 kB view details)

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

persistent-6.8-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (232.2 kB view details)

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

persistent-6.8-cp311-cp311-macosx_11_0_arm64.whl (150.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

persistent-6.8-cp311-cp311-macosx_10_9_x86_64.whl (148.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

persistent-6.8-cp310-cp310-win_amd64.whl (129.1 kB view details)

Uploaded CPython 3.10Windows x86-64

persistent-6.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (237.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

persistent-6.8-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl (235.4 kB view details)

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

persistent-6.8-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl (228.3 kB view details)

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

persistent-6.8-cp310-cp310-macosx_11_0_arm64.whl (151.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

persistent-6.8-cp310-cp310-macosx_10_9_x86_64.whl (148.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file persistent-6.8.tar.gz.

File metadata

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

File hashes

Hashes for persistent-6.8.tar.gz
Algorithm Hash digest
SHA256 2e7ccaa1b1ab5346be903980bf74ac301e5a7be4e6949c93cf9f2a716add8b18
MD5 81983e4e9bfd45f297cbfaa0cf1d5e73
BLAKE2b-256 0374380a2f383aef6eb787a5b9c925b7f170c3e8b2e59232891e15a28404590d

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8.tar.gz:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: persistent-6.8-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 131.9 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 persistent-6.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a23eeee15c3cba29dd7e7b3b9d67a28077af14f66f36f33501ef3edb09e5e9f4
MD5 755f2342093d72f9798a491c034575b9
BLAKE2b-256 14d203b569934e7e21dc9c55c59492d052add4c8bdc365f63c2b98aba5befc0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314t-win_amd64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9224b5482f9e1932edce100c4361a78a280e91d95e25210f457dc88fb2e9929f
MD5 0831de71698b47d1dc3713e0710f5fa6
BLAKE2b-256 1c23c2eb7294eb1a320dfb64e4073ee95ed741bed1b3adce1d9bb8f9a1474323

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b3e2149598b5e3c00acf5b85bf1bb426b602ae60d09445076c4a60319bd7915c
MD5 f7d9356ac0c00f40aab3785351f83129
BLAKE2b-256 1ba93aa217c37f2bbc236f1b273d298c0996cfee995b213bf7f78a8ace8a4571

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f3122dd82e9425e49744da5eb4ba1e26cb6e998e687aa9db0f38f2a21a1e0fec
MD5 ee962d479188afa9b03a2e13190a892d
BLAKE2b-256 a0743791aaddbaabadecc0645c643e049d1b1cf80a2d1c3038930acee27355e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ff729f8dca4bca7b922a41c62dfbb7a03de5bc31aa26b61fca77ef32fa3f5aa
MD5 1338a0323fb0c4e2693d3114ecc12beb
BLAKE2b-256 655c2d9d3475a8d553a2f2489d87cb9820d3ed7bf1705b2bb7fa5b695fa546c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314t-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314t-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b01052e9bab562248282504b2a2dba7830c01379d82377ffbc2612274dd64d3
MD5 57658d652f5ba3336975a1405c59b846
BLAKE2b-256 495e2d1ac5ac0ad5752656e12e1b2fa17ddfcc8d695be6ec3ccc8aac5cd05ff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314t-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: persistent-6.8-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 127.4 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 persistent-6.8-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1a2f8ad0b1b90bd2baa0f4090ff05425e05c72109ec11ea4fa2ca52da8d28698
MD5 49a3124d18aad6d905f60d9a5ffb5162
BLAKE2b-256 4e9e8c1276fbe5b915a77877df2d749a7e7be879c8cb4075e6cc43ffee2019a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314-win_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: persistent-6.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 130.3 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 persistent-6.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9668aefafed2bf975a578e95c627171072cac088ea88e9f8003e777896094658
MD5 3d64eeef06721ab7812fd14b948314c7
BLAKE2b-256 e4d242fccdd35f93adcb5e81beadee3c7424cb2e421a536ca9dc6d716589c2d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314-win_amd64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 76c35a64edd09e6593ea79cc1ab8e9ef2c77670cbdfc89100b22921db872848d
MD5 9a74f3bacdc8c2650db220cfd6aa5d86
BLAKE2b-256 f7c77bc066f36c581d566f40510775ba0849809b952d94530b93c3aac2120498

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-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 persistent-6.8-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 76efad3e465081174f6bbdff73429c5c7067db4832525fc39b0f945826a5f649
MD5 fbff2ae4b4955f7776a4ca358e5c11cb
BLAKE2b-256 5d9b5679509a24f1802a46a4f799599294231b55609f9d73cfe5d96a8b32907e

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f300d2cabdb8b67dd48ed13b9f4f0c076b002b9c5dfa2510392b7c80c7070578
MD5 6ee4cb0ddb8ed2c3717179e11eddd5ac
BLAKE2b-256 c4961d8c272bbbe426181fdc66e420cce977a61d15064f29aadbe825dd104121

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12b30d3324854d0ff350c0c6d147f822281e88050e4c9761e612a497f5a4ae3d
MD5 b48fa4ad166d3654e4cb06188bafcb27
BLAKE2b-256 17dad59fc0127fdd7467319bc86e35373c2e08c13bf710bba22e1b036d5d2605

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp314-cp314-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp314-cp314-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed5dbf48284d7f3ca469de3f9343f86511f62af39c8f7378206b960e6a3413c0
MD5 d6183727b61ae745390363504c90b2ec
BLAKE2b-256 92c1ad913a878def644405d09ffdcc8722d17898cb1affa8eb812eba5359d917

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp314-cp314-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: persistent-6.8-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 126.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 persistent-6.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ec1df5d75bf61b1ce9cba445af87bd36252e188e9eac154303d23bfde9202112
MD5 9641dcaeb14b71fdeb60d52864e2e07b
BLAKE2b-256 3af8617ff39c31444e17eb2d8ce44f6bed927d9dd337b043d8a2ed0e38872cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp313-cp313-win_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: persistent-6.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 129.3 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 persistent-6.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 64bd12644ec9cb60b67f7b557344edf7c0f3063c84c8572ab0852010319cd29b
MD5 b0b8674f61583b9c4d00910d17430051
BLAKE2b-256 d8d04a41d99159489c91f4163cef5ac3531469e8f5c89b833f6abea6aad52833

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp313-cp313-win_amd64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2cd494c5792480b3869e3e24c82c3d86734990d3149b8f8a6213afec6ff6d2f4
MD5 f14497e63b9635d945ab455980662606
BLAKE2b-256 aaab269cf1bfeee7cef84cea08de4c983c01a90094c28c10a2fd70d43177e9c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-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 persistent-6.8-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c45c4833dd2884f742f616af5acf437bbd786c8bc51983b6430980450c8a361c
MD5 7afacdaf26c7874783bd37b2055141b9
BLAKE2b-256 d68231948b377d502236ff1f264080f3dfc23ccf64a4bb73703448ce991e0917

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cd69753f40bece2cfc139e5a7ef01f920ce2802142f18393bbeef5404b0fba47
MD5 5420e058204b98442866f83b8de7c25d
BLAKE2b-256 7b266423eefd85fcf89823962f1e830939be2a5a46074bd28f3ec783a918137e

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ef87194cd5c700c7395b90e6344836c64224faef0adee4e5b171c978a53e66f
MD5 859823a7220e71ed21feebff59ad63fc
BLAKE2b-256 a12f65ab7ddb504a4c463989ba0596fba31df5041f0af8f201c402de9c7e06ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp313-cp313-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp313-cp313-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fba478261ac3a03fc02dc8e9cd15b40923ad03b74e049c88df225ef3b70aa18
MD5 98c6e35788002566f4602162077be460
BLAKE2b-256 ddd0d2a1fa65f620f36d5a24521546beab2e959d6522330b4b791ff1fb6b9af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp313-cp313-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: persistent-6.8-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 126.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 persistent-6.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1bbb542d9a227265a5633d97b59de006bf2a2037fbfdb643204736eed3a88dc5
MD5 c252df76b04ead7ee4c4235ae915722a
BLAKE2b-256 9bfe8aa8283e001fff32748624d92246cc992da29156939ddf4c5f7380c608a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp312-cp312-win_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: persistent-6.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 129.2 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 persistent-6.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e96b15c85cb78f868d1f8cd5858d163dca46bee6753604d0f3e874273415d8e8
MD5 51922240b41075e3c438141a66fa6e87
BLAKE2b-256 f2fd73ecac62c778ea698349afa25ac55ba39a42fe7d529cf4142b0eefb899bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp312-cp312-win_amd64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 491d6ee76d5e006b10f08189a17be31259d66207f5f20a4e464de0362bca567b
MD5 85f9de2f8b967b3498bdf348e215dfd2
BLAKE2b-256 95700bcb830bed2272de67ff5aaa9029eb5f5304432e052d8e06174926852d53

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-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 persistent-6.8-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cc07d44e4357323d6073711e2197c7ea9a5c57e38f28d3248b225b8fee87fc19
MD5 0b51b731ad65d57dda052c2e62d4a4d0
BLAKE2b-256 88bd5babed418c45fee7c4a138a64879d1820f5fd91a598cc6ddc06d3642157d

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 eeb25b476c33a63f28d9d86ca5a41bb95212f73bf21702073462254b27ce84bf
MD5 307b9c15b07ed42dd9a0c8998fca892b
BLAKE2b-256 a95763e0189510ea9c370adb351d583b92e3e9438723f09173099ae1a613fa76

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b4c01322ab2b33643636f4748cbd0d80c4db744ffd33ba20c6c6b2a187fb5a6
MD5 9d27c11f1a10baa1c214535ef7b1ecbd
BLAKE2b-256 ec6bc4e460340ef8f8d33adf23e1f7b1bd4be944db5b95f4b8baf119506219c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a77b2eb82e76ab3a9e38c26d6e5847b14d11453257481c19331a609c9fea7b22
MD5 205f8374652db4b00b847279403e626a
BLAKE2b-256 947192568342567e51c9beb62711c613ba79251cd37031234b1a4855a45ad51f

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: persistent-6.8-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 126.3 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 persistent-6.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 93b6d711160f57729a38fefd15b026fe9e7004d678878db0c9831bbc52a4b898
MD5 d11f3991a04a66f5b45b3c7846fe3fa0
BLAKE2b-256 6c1ddcd70c9c49064fa8cc9691d219de981d7f9882fd6a9f27743a0287c69dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp311-cp311-win_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: persistent-6.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 128.9 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 persistent-6.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46e16a49b1287b45e3158e22dfa8022a8a4bb28374bdc1ccf95b914ae2dd853c
MD5 106cc0d73dcfc1d0e9157b84eea965ed
BLAKE2b-256 95c28f451b58d82655d81a3596a16a05f6ce4ca6ca1fa18a3de6b69fa998e753

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp311-cp311-win_amd64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b3b0b283dfb5acd8c37874c881e3c18c56a856154835963471cb6a9aa0198527
MD5 2578fe87eba7ca1ae91a152c774bffe9
BLAKE2b-256 bd48055c91d71f7ec41c5bc159593350bb343d67af297f6c6c448b03a9cde85a

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-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 persistent-6.8-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 89e0fcbd4131088a72a8bb4f2b2c7f5169abb98a24369848db746f7eaf8ad1b4
MD5 1696144537b6bc1cc8d6be87043fe5c7
BLAKE2b-256 9976320811a48e11fc75eda3b5977f0b0e851c23c7d259c05ef0f5365f79ffb0

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 29115131faf116e4774656a76338549c8e977c60e91efab90fc8fa6563e853ab
MD5 a145298143a4daffeb0d5a813e81aee4
BLAKE2b-256 9c101e4625176038c08a4a7f247a7588c9e747150004ec73037858fb11918b4e

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1be636202e3bf17a29d0272b239c3247179d42a394daefec43029b2a86e96efb
MD5 c3f8d29be3ab6dfd9ed7ca8c70fe060b
BLAKE2b-256 ca5bfd0a03f7835b14149a7d5d060f4aa73901fdf8604db1fae0c1b9b8be0199

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4a117ff6b0958ea8264960c5e0dc50f8b01b3f2ef6716f3eda8a20f8a3318e2
MD5 1ad0a37f53fd070a3e1f12e1f6cc3c63
BLAKE2b-256 79a382f8a16c1b1ecf2a3cee452f29bf87ccff3f38169a8d994863c97b55f0ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: persistent-6.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 129.1 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 persistent-6.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ff65d255fd83f9040a8a34350bc267de9530f4ec9687b623b90a0d4604e248ef
MD5 90a4c3bfad9bcd129cd2d42012c5b47f
BLAKE2b-256 16148b3a2e0d35c3970ed4e463aca92eb946c9a9906649d313ce64e943dd6776

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp310-cp310-win_amd64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 93a0c7557c2d143ec24cb6776ddb3b868ba9f30bc4f42db8e2cdbc2a2367cad0
MD5 00285118f996365e4c8905cf88a7fe02
BLAKE2b-256 672cf66c1c741f884dbb234f14f2391671a4e8c78ed95bd329eebd4658e0697c

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-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 persistent-6.8-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3b99361b468b54e0ca7a427f94a4752131556102a43f6faf8e2e019782f008f9
MD5 612ff21540f472f07cce0082ebc14928
BLAKE2b-256 99e5e45f1b23f1f2b190d6ec97870e2faa48950e45be79e47d6437efd3ae868c

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 775560b96981083e2c898ff58b688c324e2e2047e100f9bbab635e8450f71c67
MD5 c66beba58efd3a93d1badd67a198a0e0
BLAKE2b-256 3f28b8643376c5e74dac580e8a4746b67ef490b9283df89cef6ff9df310876d8

See more details on using hashes here.

Provenance

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

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d6223a74c08226392cad417eafd260e318ff77b4d9d282ae8871bb137dc14c1
MD5 5fddc2e0b00fe29f94991b4ca4e676f4
BLAKE2b-256 71cf966d7f8e3d21f04fd84bf03d34816931028268b601b5bf064efb01def742

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: tests.yml on zopefoundation/persistent

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

File details

Details for the file persistent-6.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for persistent-6.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 366e6d7c27beb36df1f2b83b71cb75522c0d06b693a6b0814afd97e80c823f36
MD5 5ca505b58321845a4a471b5f6174e1e6
BLAKE2b-256 0f1dc70e1c51d485408ddcc9bdb39b80222268a07b4dc8368e7cc1bb45862174

See more details on using hashes here.

Provenance

The following attestation bundles were made for persistent-6.8-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: tests.yml on zopefoundation/persistent

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 Sentry Error logging StatusPage Status page