zope.keyreference


Namezope.keyreference JSON
Version 6.0 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/zope.keyreference
SummaryKey References
upload_time2023-04-25 07:23:37
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python
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.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": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "zope3 key reference persistent",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/ee/35/645eadc95947896dc999a33cf4ce2e1927b716fccfef17e4525e3d3773ce/zope.keyreference-6.0.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.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.0",
    "split_keywords": [
        "zope3",
        "key",
        "reference",
        "persistent"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b68f989b9a7b87693c74696853dc02aaab32affd6e7a7877f5133fc208c1e11f",
                "md5": "4713c2a637595a0c2f96dab70fac5717",
                "sha256": "5a28c157df5417b259bde0925d3c13890c809714cd6557601d3ed8fd9cc107e2"
            },
            "downloads": -1,
            "filename": "zope.keyreference-6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4713c2a637595a0c2f96dab70fac5717",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 13305,
            "upload_time": "2023-04-25T07:23:35",
            "upload_time_iso_8601": "2023-04-25T07:23:35.207892Z",
            "url": "https://files.pythonhosted.org/packages/b6/8f/989b9a7b87693c74696853dc02aaab32affd6e7a7877f5133fc208c1e11f/zope.keyreference-6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee35645eadc95947896dc999a33cf4ce2e1927b716fccfef17e4525e3d3773ce",
                "md5": "91698394509c3a805ba4b033939c3387",
                "sha256": "a8242f4115befe9181d0b8f4ff847d213246f2c24a6a334f0cc8d103680c14d5"
            },
            "downloads": -1,
            "filename": "zope.keyreference-6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "91698394509c3a805ba4b033939c3387",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 19451,
            "upload_time": "2023-04-25T07:23:37",
            "upload_time_iso_8601": "2023-04-25T07:23:37.362749Z",
            "url": "https://files.pythonhosted.org/packages/ee/35/645eadc95947896dc999a33cf4ce2e1927b716fccfef17e4525e3d3773ce/zope.keyreference-6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-25 07:23:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "zopefoundation",
    "github_project": "zope.keyreference",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zope.keyreference"
}
        
Elapsed time: 0.06134s