zope.keyreference


Namezope.keyreference JSON
Version 6.1 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/zope.keyreference
SummaryKey References
upload_time2025-02-14 08:35:22
maintainerNone
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.9
licenseZPL-2.1
keywords zope3 key reference persistent
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===================
 zope.keyreference
===================

.. image:: https://img.shields.io/pypi/v/zope.keyreference.svg
   :target: https://pypi.org/project/zope.keyreference/
   :alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/zope.keyreference.svg
   :target: https://pypi.org/project/zope.keyreference/
   :alt: Supported Python versions

.. image:: https://github.com/zopefoundation/zope.keyreference/actions/workflows/tests.yml/badge.svg
   :target: https://github.com/zopefoundation/zope.keyreference/actions/workflows/tests.yml
   :alt: Build Status

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.keyreference/badge.svg
   :target: https://coveralls.io/github/zopefoundation/zope.keyreference
   :alt: Code Coverage

.. image:: https://readthedocs.org/projects/zopekeyreference/badge/?version=latest
   :target: https://zopekeyreference.readthedocs.io/en/latest/?badge=latest
   :alt: Documentation Status

Object references that support stable comparison and hashes.

Documentation can be found at https://zopekeyreference.readthedocs.io


=========
 Changes
=========

6.1 (2025-02-14)
================

- Add support for Python 3.12, 3.13.

- Drop support for Python 3.7, 3.8.


6.0 (2023-04-25)
================

- Drop support for Python 2.7, 3.5, 3.6.

- Add support for Python 3.11.

- Make the tests compatible with ``zope.testing >= 5``.


5.0.0 (2022-03-25)
==================

- Remove ``__cmp__`` methods. Since the implementation of the rich
  comparison methods (``__eq__``, etc) in 4.0a1, the interpreter won't
  call ``__cmp__``, even on Python 2. See `issue 10
  <https://github.com/zopefoundation/zope.keyreference/issues/10>`_.

- Add support for Python 3.8, 3.9, and 3.10.

- Drop support for Python 3.4.


4.2.0 (2018-10-26)
==================

- Add support for Python 3.5, 3.6, and 3.7.

- Drop support for Python 2.6 and 3.3.


4.1.0 (2014-12-27)
==================

- Add support for PyPy (PyPy3 blocked on PyPy3-compatible ``zodbpickle``).

- Add support for Python 3.4.


4.0.0 (2014-12-20)
==================

- Add support for testing on Travis.


4.0.0a2 (2013-02-25)
====================

- Ensure that the ``SimpleKeyReference`` implementation (used for testing)
  also implements rich comparison properly.


4.0.0a1 (2013-02-22)
====================

- Add support for Python 3.3.

- Replace deprecated ``zope.component.adapts`` usage with equivalent
  ``zope.component.adapter`` decorator.

- Replace deprecated ``zope.interface.implements`` usage with equivalent
  ``zope.interface.implementer`` decorator.

- Drop support for Python 2.4 and 2.5.


3.6.4 (2011-11-30)
==================

- Fix tests broken by removal of ``zope.testing`` from test dependencies:
  avoid the ``ZODB3`` module that needs it.

3.6.3 (2011-11-29)
==================

- Prefer the standard libraries doctest module to the one from ``zope.testing``.

3.6.2 (2009-09-15)
==================

- Make the tests pass with ZODB3.9, which changed the repr() of the persistent
  classes.

3.6.1 (2009-02-01)
==================

- Load keyreferences, pickled by old zope.app.keyreference even
  if its not installed anymore (so don't break if one updates a
  project that don't directly depends on zope.app.keyreference).

3.6.0 (2009-01-31)
==================

- Rename ``zope.app.keyreference`` to ``zope.keyreference``.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/zope.keyreference",
    "name": "zope.keyreference",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "zope3 key reference persistent",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.dev",
    "download_url": "https://files.pythonhosted.org/packages/12/fb/4f94049928e2dd91c3920c73763dd26f466e1808c6dfcbcb6b76d54b6f40/zope_keyreference-6.1.tar.gz",
    "platform": null,
    "description": "===================\n zope.keyreference\n===================\n\n.. image:: https://img.shields.io/pypi/v/zope.keyreference.svg\n   :target: https://pypi.org/project/zope.keyreference/\n   :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.keyreference.svg\n   :target: https://pypi.org/project/zope.keyreference/\n   :alt: Supported Python versions\n\n.. image:: https://github.com/zopefoundation/zope.keyreference/actions/workflows/tests.yml/badge.svg\n   :target: https://github.com/zopefoundation/zope.keyreference/actions/workflows/tests.yml\n   :alt: Build Status\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.keyreference/badge.svg\n   :target: https://coveralls.io/github/zopefoundation/zope.keyreference\n   :alt: Code Coverage\n\n.. image:: https://readthedocs.org/projects/zopekeyreference/badge/?version=latest\n   :target: https://zopekeyreference.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n\nObject references that support stable comparison and hashes.\n\nDocumentation can be found at https://zopekeyreference.readthedocs.io\n\n\n=========\n Changes\n=========\n\n6.1 (2025-02-14)\n================\n\n- Add support for Python 3.12, 3.13.\n\n- Drop support for Python 3.7, 3.8.\n\n\n6.0 (2023-04-25)\n================\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n- Add support for Python 3.11.\n\n- Make the tests compatible with ``zope.testing >= 5``.\n\n\n5.0.0 (2022-03-25)\n==================\n\n- Remove ``__cmp__`` methods. Since the implementation of the rich\n  comparison methods (``__eq__``, etc) in 4.0a1, the interpreter won't\n  call ``__cmp__``, even on Python 2. See `issue 10\n  <https://github.com/zopefoundation/zope.keyreference/issues/10>`_.\n\n- Add support for Python 3.8, 3.9, and 3.10.\n\n- Drop support for Python 3.4.\n\n\n4.2.0 (2018-10-26)\n==================\n\n- Add support for Python 3.5, 3.6, and 3.7.\n\n- Drop support for Python 2.6 and 3.3.\n\n\n4.1.0 (2014-12-27)\n==================\n\n- Add support for PyPy (PyPy3 blocked on PyPy3-compatible ``zodbpickle``).\n\n- Add support for Python 3.4.\n\n\n4.0.0 (2014-12-20)\n==================\n\n- Add support for testing on Travis.\n\n\n4.0.0a2 (2013-02-25)\n====================\n\n- Ensure that the ``SimpleKeyReference`` implementation (used for testing)\n  also implements rich comparison properly.\n\n\n4.0.0a1 (2013-02-22)\n====================\n\n- Add support for Python 3.3.\n\n- Replace deprecated ``zope.component.adapts`` usage with equivalent\n  ``zope.component.adapter`` decorator.\n\n- Replace deprecated ``zope.interface.implements`` usage with equivalent\n  ``zope.interface.implementer`` decorator.\n\n- Drop support for Python 2.4 and 2.5.\n\n\n3.6.4 (2011-11-30)\n==================\n\n- Fix tests broken by removal of ``zope.testing`` from test dependencies:\n  avoid the ``ZODB3`` module that needs it.\n\n3.6.3 (2011-11-29)\n==================\n\n- Prefer the standard libraries doctest module to the one from ``zope.testing``.\n\n3.6.2 (2009-09-15)\n==================\n\n- Make the tests pass with ZODB3.9, which changed the repr() of the persistent\n  classes.\n\n3.6.1 (2009-02-01)\n==================\n\n- Load keyreferences, pickled by old zope.app.keyreference even\n  if its not installed anymore (so don't break if one updates a\n  project that don't directly depends on zope.app.keyreference).\n\n3.6.0 (2009-01-31)\n==================\n\n- Rename ``zope.app.keyreference`` to ``zope.keyreference``.\n",
    "bugtrack_url": null,
    "license": "ZPL-2.1",
    "summary": "Key References",
    "version": "6.1",
    "project_urls": {
        "Documentation": "https://zopekeyreference.readthedocs.io/",
        "Homepage": "https://github.com/zopefoundation/zope.keyreference"
    },
    "split_keywords": [
        "zope3",
        "key",
        "reference",
        "persistent"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ad3b63a44a1411a24e1eb91ad827b974f8f0fbedab79849c475f054b7f793b2",
                "md5": "b8970f6426720d9282d09cba60d44ccc",
                "sha256": "b3ee50e620826b01f2dccdc922bc99fd10d5ad4989c6f970780e4ddb2f34f188"
            },
            "downloads": -1,
            "filename": "zope.keyreference-6.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b8970f6426720d9282d09cba60d44ccc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 13305,
            "upload_time": "2025-02-14T08:35:20",
            "upload_time_iso_8601": "2025-02-14T08:35:20.119644Z",
            "url": "https://files.pythonhosted.org/packages/4a/d3/b63a44a1411a24e1eb91ad827b974f8f0fbedab79849c475f054b7f793b2/zope.keyreference-6.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12fb4f94049928e2dd91c3920c73763dd26f466e1808c6dfcbcb6b76d54b6f40",
                "md5": "034bb907e59fc39a0773ba684f1327b8",
                "sha256": "845f2b2106cec31ee159654f428ed504db716a7740b61dd88af122cecbecea23"
            },
            "downloads": -1,
            "filename": "zope_keyreference-6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "034bb907e59fc39a0773ba684f1327b8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 20550,
            "upload_time": "2025-02-14T08:35:22",
            "upload_time_iso_8601": "2025-02-14T08:35:22.521810Z",
            "url": "https://files.pythonhosted.org/packages/12/fb/4f94049928e2dd91c3920c73763dd26f466e1808c6dfcbcb6b76d54b6f40/zope_keyreference-6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-14 08:35:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.keyreference",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zope.keyreference"
}
        
Elapsed time: 5.53989s