Projects
openEuler:Mainline
python-zope-event
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 7
View file
_service:tar_scm:python-zope-event.spec
Changed
@@ -1,10 +1,10 @@ Name: python-zope-event -Version: 4.6 +Version: 5.0 Release: 1 Summary: Zope Event Publication License: ZPLv2.1 URL: http://pypi.python.org/pypi/zope.event/ -Source0: https://files.pythonhosted.org/packages/42/49/ba8610674cad200da2f9c87b5f52fdcf18b02dd743a8a1e90726803cc42f/zope.event-4.6.tar.gz +Source0: https://files.pythonhosted.org/packages/46/c2/427f1867bb96555d1d34342f1dd97f8c420966ab564d58d18469a1db8736/zope.event-5.0.tar.gz BuildArch: noarch %description @@ -66,6 +66,9 @@ %changelog +* Mon Jul 10 2023 chenzixuan<chenzixuan@kylinos.cn> - 5.0-1 +- Update package to version 5.0 + * Thu Feb 9 2023 wubijie <wubijie@kylinos.cn> - 4.6-1 - Update package to version 4.6
View file
_service:tar_scm:zope.event-4.6.tar.gz/CHANGES.rst -> _service:tar_scm:zope.event-5.0.tar.gz/CHANGES.rst
Changed
@@ -2,6 +2,12 @@ ``zope.event`` Changelog ========================== +5.0 (2023-06-23) +================ + +- Drop support for Python 2.7, 3.5, 3.6. + + 4.6 (2022-12-15) ================
View file
_service:tar_scm:zope.event-4.6.tar.gz/PKG-INFO -> _service:tar_scm:zope.event-5.0.tar.gz/PKG-INFO
Changed
@@ -1,23 +1,18 @@ Metadata-Version: 2.1 Name: zope.event -Version: 4.6 +Version: 5.0 Summary: Very basic event publishing system Home-page: https://github.com/zopefoundation/zope.event Author: Zope Foundation and Contributors -Author-email: zope-dev@zope.org +Author-email: zope-dev@zope.dev License: ZPL-2.1 Keywords: event framework dispatch subscribe publish -Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: Zope Public License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.5 -Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 @@ -28,6 +23,7 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Framework :: Zope :: 3 Classifier: Topic :: Software Development :: Libraries :: Python Modules +Requires-Python: >=3.7 Provides-Extra: docs Provides-Extra: test License-File: LICENSE.txt @@ -63,6 +59,12 @@ ``zope.event`` Changelog ========================== +5.0 (2023-06-23) +================ + +- Drop support for Python 2.7, 3.5, 3.6. + + 4.6 (2022-12-15) ================ @@ -179,5 +181,3 @@ ================== - Initial release as a separate project. - -
View file
_service:tar_scm:zope.event-4.6.tar.gz/setup.cfg -> _service:tar_scm:zope.event-5.0.tar.gz/setup.cfg
Changed
@@ -1,5 +1,5 @@ bdist_wheel -universal = 1 +universal = 0 flake8 doctests = 1 @@ -15,7 +15,7 @@ force_single_line = True combine_as_imports = True sections = FUTURE,STDLIB,THIRDPARTY,ZOPE,FIRSTPARTY,LOCALFOLDER -known_third_party = six, docutils, pkg_resources +known_third_party = docutils, pkg_resources, pytz known_zope = known_first_party = default_section = ZOPE
View file
_service:tar_scm:zope.event-4.6.tar.gz/setup.py -> _service:tar_scm:zope.event-5.0.tar.gz/setup.py
Changed
@@ -12,7 +12,7 @@ # ############################################################################## # This package is developed by the Zope Toolkit project, documented here: -# http://docs.zope.org/zopetoolkit +# https://zopetoolkit.readthedocs.io/ # When developing and releasing this package, please follow the documented # Zope Toolkit policies as described by this documentation. ############################################################################## @@ -32,12 +32,12 @@ setup( name='zope.event', - version='4.6', + version='5.0', url='https://github.com/zopefoundation/zope.event', license='ZPL-2.1', description='Very basic event publishing system', author='Zope Foundation and Contributors', - author_email='zope-dev@zope.org', + author_email='zope-dev@zope.dev', long_description=( read('README.rst') + '\n' + @@ -50,11 +50,7 @@ "License :: OSI Approved :: Zope Public License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -70,9 +66,9 @@ package_dir={'': 'src'}, namespace_packages='zope', , include_package_data=True, + python_requires='>=3.7', install_requires='setuptools', zip_safe=False, - test_suite='zope.event.tests.test_suite', extras_require={ 'docs': 'Sphinx',
View file
_service:tar_scm:zope.event-4.6.tar.gz/src/zope.event.egg-info/PKG-INFO -> _service:tar_scm:zope.event-5.0.tar.gz/src/zope.event.egg-info/PKG-INFO
Changed
@@ -1,23 +1,18 @@ Metadata-Version: 2.1 Name: zope.event -Version: 4.6 +Version: 5.0 Summary: Very basic event publishing system Home-page: https://github.com/zopefoundation/zope.event Author: Zope Foundation and Contributors -Author-email: zope-dev@zope.org +Author-email: zope-dev@zope.dev License: ZPL-2.1 Keywords: event framework dispatch subscribe publish -Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: Zope Public License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python -Classifier: Programming Language :: Python :: 2 -Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3 -Classifier: Programming Language :: Python :: 3.5 -Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 @@ -28,6 +23,7 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy Classifier: Framework :: Zope :: 3 Classifier: Topic :: Software Development :: Libraries :: Python Modules +Requires-Python: >=3.7 Provides-Extra: docs Provides-Extra: test License-File: LICENSE.txt @@ -63,6 +59,12 @@ ``zope.event`` Changelog ========================== +5.0 (2023-06-23) +================ + +- Drop support for Python 2.7, 3.5, 3.6. + + 4.6 (2022-12-15) ================ @@ -179,5 +181,3 @@ ================== - Initial release as a separate project. - -
View file
_service:tar_scm:zope.event-4.6.tar.gz/tox.ini -> _service:tar_scm:zope.event-5.0.tar.gz/tox.ini
Changed
@@ -4,15 +4,11 @@ minversion = 3.18 envlist = lint - py27 - py35 - py36 py37 py38 py39 py310 py311 - pypy pypy3 docs coverage @@ -22,7 +18,7 @@ deps = commands = zope-testrunner --test-path=src {posargs:-vc} - !py27-!pypy: sphinx-build -b doctest -d {envdir}/.cache/doctrees docs {envdir}/.cache/doctest + sphinx-build -b doctest -d {envdir}/.cache/doctrees docs {envdir}/.cache/doctest extras = test docs @@ -65,7 +61,6 @@ mkdir deps = coverage - coverage-python-version commands = mkdir -p {toxinidir}/parts/htmlcov coverage run -m zope.testrunner --test-path=src {posargs:-vc} @@ -75,7 +70,6 @@ coverage:run branch = True -plugins = coverage_python_version source = zope.event coverage:report
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2