diff --git a/python-pocketlint.spec b/python-pocketlint.spec index bf52225..e6c96eb 100644 --- a/python-pocketlint.spec +++ b/python-pocketlint.spec @@ -1,7 +1,7 @@ %global srcname pocketlint Name: python-%{srcname} -Version: 0.24 +Version: 0.25 Release: 1%{?dist} Summary: Support for running pylint against projects @@ -51,6 +51,11 @@ make PYTHON=%{__python3} check %{python3_sitelib}/%{srcname}/ %changelog +* Mon Oct 02 2023 Vojtech Trefny - 0.25-1 +- Remove unneeded IAstroidChecker (bcl) +- Replace check_messages decorator with only_required_for_messages (bcl) +- spec: Change license string to the SPDX format required by Fedora (vtrefny) + * Wed Jul 13 2022 Jiri Konecny - 0.24-1 - Add packaging to setup.py dependencies (vslavik) diff --git a/setup.py b/setup.py index 28c723f..b1cfd0e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup -setup(name='pocketlint', version='0.24', +setup(name='pocketlint', version='0.25', description='Support for running pylint against projects', author='Chris Lumens', author_email='clumens@redhat.com', url='https://github.com/rhinstaller/pocketlint',