SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for python2-zope.interface-4.5.0-lp151.3.1.x86_64.rpm :

* Thu Dec 06 2018 Tomáš Chvátal - Fix fdupes call
* Tue Aug 28 2018 tchvatalAATTsuse.com- Version update to 4.5.0:
* Allow registering and unregistering instance methods as listeners. See issue 12 and PR 102.
* Synchronize and simplify zope/__init__.py. See issue 114
* Avoid exceptions when the __annotations__ attribute is added to interface definitions with Python 3.x type hints. See issue 98.
* Fix the possibility of a rare crash in the C extension when deallocating items. See issue 100.
* Mon Jun 19 2017 okurzAATTsuse.com- Cover building python3 packages as well
* Sat Jun 17 2017 okurzAATTsuse.com- Update to 4.4.2
* Fix a regression storing zope.component.persistentregistry.PersistentRegistry instances. See issue 85.
* Fix a regression that could lead to the utility registration cache of Components getting out of sync. See issue 93.- Update to 4.4.1
* Simplify the caching of utility-registration data. In addition to simplification, avoids spurious test failures when checking for leaks in tests with persistent registries. See pull 84.
* Raise ValueError when non-text names are passed to adapter registry methods: prevents corruption of lookup caches.- Update to 4.4.0
* Avoid a warning from the C compiler. (https://github.com/zopefoundation/zope.interface/issues/71)
* Add support for Python 3.6.- Update to 4.3.3
* Correct typos and ReST formatting errors in documentation.
* Add API documentation for the adapter registry.
* Ensure that the LICENSE.txt file is included in built wheels.
* Fix C optimizations broken on Py3k. See the Python bug at: http://bugs.python.org/issue15657 (https://github.com/zopefoundation/zope.interface/issues/60)- Update to 4.3.2
* Fix equality testing of implementedBy objects and proxies. (https://github.com/zopefoundation/zope.interface/issues/55)- Prevent duplicate doc package generation- Cleanup duplicates in build tree
* Sat Mar 11 2017 okurzAATTsuse.com- Convert package to singlespec
* Tue Nov 15 2016 dmuellerAATTsuse.com- update to 4.3.1:- Support Components subclasses that are not hashable. (https://github.com/zopefoundation/zope.interface/issues/53)- Add the ability to sort the objects returned by ``implementedBy``. This is compatible with the way interface classes sort so they can be used together in ordered containers like BTrees. (https://github.com/zopefoundation/zope.interface/issues/42)- Make ``setuptools`` a hard dependency of ``setup.py``.- Change a linear algorithm (O(n)) in ``Components.registerUtility`` and ``Components.unregisterUtility`` into a dictionary lookup (O(1)) for hashable components. This substantially improves the time taken to manipulate utilities in large registries at the cost of some additional memory usage. (https://github.com/zopefoundation/zope.interface/issues/46)
* Fri May 15 2015 benoit.moninAATTgmx.fr- update to version 4.1.2:
* Add support for PyPy3.
* Remove unittest assertions deprecated in Python3.x.
* Add zope.interface.document.asReStructuredText, which formats the generated text for an interface using ReST double-backtick markers.- fix documentation generation- pass -q to test to avoid spamming the build log
* Tue Sep 16 2014 tbechtoldAATTsuse.com- Update to version 4.1.1:
* Added support for Python 3.4.
* Sun Feb 16 2014 os-devAATTjacraig.com- Update to 4.1.0:
* Updated ``boostrap.py`` to version 2.2.
* Added ``AATTnamed(name)`` declaration, that specifies the component name, so it does not have to be passed in during registration.- Change source URL, .zip not available for this version.
* Thu Dec 19 2013 cooloAATTsuse.com- BuildIgnore our own name - required by python-repoze.sphinx.autointerface, but of course not needed
* Thu Aug 01 2013 hpjAATTurpla.net- add unzip to BuildRequires
* Thu Aug 01 2013 speilickeAATTsuse.com- Ship upstream tarbal (zipfile) and fix Source URL
* Mon Jul 29 2013 hpjAATTurpla.net- Updated to 4.0.5:
* Fixed a bug where a decorated method caused false positive failures on verifyClass().- Updated to 4.0.4:
* Fixed a bug that was revealed by porting zope.traversing. During a loop, the loop body modified a weakref dict causing a RuntimeError error.- generate documentation in -doc package- enable tests
* Mon Jan 14 2013 p.drouandAATTgmail.com- Initial python3 support
* Mon Jan 14 2013 p.drouandAATTgmail.com- Update to 4.0.3 version:
* Fleshed out PyPI Trove classifiers.- Remove duplicate files with fdupes
* Sun Oct 14 2012 douglarekAATToutlook.com- Fix spec bugs- Updated to 4.0.1
* Dropped explicit DeprecationWarnings for \"class advice\" APIS (these APIs are still deprecated under Python 2.x, and still raise an exception under Python 3.x, but no longer cause a warning to be emitted under Python 2.x).
* Automated build of Sphinx HTML docs and running doctest snippets via tox.
* Deprecated the \"class advice\" APIs from zope.interface.declarations: implements, implementsOnly, and classProvides. In their place, prefer the equivalent class decorators: AATTimplementer, AATTimplementer_only, and AATTprovider. Code which uses the deprecated APIs will not work as expected under Py3k.
* Removed use of \'2to3\' and associated fixers when installing under Py3k. The code is now in a \"compatible subset\" which supports Python 2.6, 2.7, and 3.2, including PyPy 1.8 (the version compatible with the 2.7 language spec).
* Dropped explicit support for Python 2.4 / 2.5 / 3.1.
* Added support for PyPy.
* Added support for continuous integration using tox and jenkins.
* Added \'setup.py dev\' alias (runs setup.py develop plus installs nose and coverage).
* Added \'setup.py docs\' alias (installs Sphinx and dependencies).
* Replaced all unittest coverage previously accomplished via doctests with unittests. The doctests have been moved into a docs section, managed as a Sphinx collection.
* LP #910987: Ensure that the semantics of the lookup method of zope.interface.adapter.LookupBase are the same in both the C and Python implementations.
* LP #900906: Avoid exceptions due to tne new __qualname__ attribute added in Python 3.3 (see PEP 3155 for rationale). Thanks to Antoine Pitrou for the patch.
* Wed Feb 01 2012 saschpeAATTsuse.de- Simplified macro usage
* Fri Sep 23 2011 saschpeAATTsuse.de- Update to version 3.8.0:
* New module zope.interface.registry
* No longer Python 2.4 compatible (tested under 2.5, 2.6, 2.7, and 3.2).
* Tue Sep 06 2011 saschpeAATTsuse.de- Added provides/obsoletes for python-zope-interface
* Tue Sep 06 2011 saschpeAATTsuse.de- Renamed to python-zope.interface (from python-zopeinterface)- Simplyfied spec file- Update to version 3.7.0:
* LP #570942: Now correctly compare interfaces from different modules but with the same names.
* LP #811792: work around buggy behavior in some subclasses of zope.interface.interface.InterfaceClass, which invoke __hash__ before initializing __module__ and __name__. The workaround returns a fixed constant hash in such cases, and issues a UserWarning.
* LP #804832: Under PyPy, zope.interface should not build its C extension. Also, prevent attempting to build it under Jython.
* Add a tox.ini for easier xplatform testing.
* Fix testing deprecation warnings issued when tested under Py3K.
* LP 804951: InterfaceClass instances were unhashable under Python 3.x.
* LP #570942: Now correctly compare interfaces from different modules but with the same names.
* Wed Dec 15 2010 saschpeAATTsuse.de- add documentation files: COPYRIGHT.txt CHANGES.txt LICENSE.txt
* Sun Dec 12 2010 saschpeAATTgmx.de- update to 3.6.1
* A non-ascii character in the changelog made 3.6.0 uninstallable on Python 3 systems with another default encoding than UTF-8.
* Fixed compiler warnings under GCC 4.3.3.
* Python 2.3 is no longer supported.
* Use the standard Python doctest module instead of zope.testing.doctest, which has been deprecated.
* Allow to bootstrap on Jython.- re-packaged with py2pack
* now builds on all RPM-based distros
 
ICM