Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-rt for openSUSE:Factory checked in at 2022-07-11 19:09:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-rt (Old) and /work/SRC/openSUSE:Factory/.python-rt.new.1523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-rt" Mon Jul 11 19:09:44 2022 rev:15 rq:988323 version:3.0.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-rt/python-rt.changes 2022-06-28 15:23:16.062022583 +0200 +++ /work/SRC/openSUSE:Factory/.python-rt.new.1523/python-rt.changes 2022-07-11 19:11:08.443760511 +0200 @@ -1,0 +2,6 @@ +Fri Jul 8 09:36:12 UTC 2022 - Duarte Pousa <pousadua...@gmail.com> + +- fix regression in version 3.0.3: + - Temporary revert to setup.cfg from 3.0.2, due to: https://github.com/pypa/setuptools/issues/3269 + +------------------------------------------------------------------- New: ---- setup.cfg ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-rt.spec ++++++ --- /var/tmp/diff_new_pack.YIAXU4/_old 2022-07-11 19:11:08.843761091 +0200 +++ /var/tmp/diff_new_pack.YIAXU4/_new 2022-07-11 19:11:08.847761097 +0200 @@ -26,6 +26,7 @@ Group: Development/Languages/Python URL: https://github.com/CZ-NIC/python-rt Source: https://files.pythonhosted.org/packages/source/r/rt/rt-%{version}.tar.gz +Source1: setup.cfg BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -40,6 +41,7 @@ %prep %setup -q -n rt-%{version} +cp %{SOURCE1} setup.cfg %build %python_build ++++++ setup.cfg ++++++ [bdist_wheel] universal = 0 [metadata] name = rt description = Python interface to Request Tracker API long_description = file: README.rst long_description_content_type = text/x-rst license = GNU General Public License v3 (GPLv3) license_file = LICENSE author = Georges Toth author_email = georges.t...@govcert.etat.lu url = https://github.com/python-rt/python-rt classifiers = Development Status :: 5 - Production/Stable Environment :: Console Intended Audience :: Developers License :: OSI Approved :: GNU General Public License v3 (GPLv3) Operating System :: POSIX Programming Language :: Python Programming Language :: Python :: 3 :: Only Programming Language :: Python :: 3 Topic :: Software Development :: Libraries :: Python Modules project_urls = Documentation = https://python-rt.readthedocs.io/ Source = https://github.com/python-rt/python-rt Tracker = https://github.com/python-rt/python-rt/issues Changelog = https://github.com/python-rt/python-rt/blob/master/CHANGELOG.md [options] zip_safe = False packages = rt include_package_data = True python_requires = >= 3.7 install_requires = requests requests_toolbelt typing-extensions ; python_version < "3.8" [options.packages.find] exclude = tests [options.package_data] rt = py.typed [options.extras_require] docs = sphinx sphinx-autodoc-typehints sphinx-rtd-theme furo sphinx-copybutton dev = pycodestyle pylint mypy flake8 flake8-bandit flake8-comprehensions flake8-docstrings pep8-naming types-requests codespell test = pytest coverage [pycodestyle] filename = rt/rt.py ignore = E501, W503, E124, E126 [flake8] max-line-length = 240 ignore = D210, D400, W503, D205, D209, D401, E126, E124, N803