Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pylint for openSUSE:Factory checked in at 2021-02-16 22:34:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pylint (Old) and /work/SRC/openSUSE:Factory/.python-pylint.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pylint" Tue Feb 16 22:34:40 2021 rev:21 rq:872839 version:2.6.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pylint/python-pylint.changes 2020-12-21 12:35:16.466945991 +0100 +++ /work/SRC/openSUSE:Factory/.python-pylint.new.28504/python-pylint.changes 2021-02-16 22:34:53.869530598 +0100 @@ -1,0 +2,11 @@ +Tue Feb 16 11:04:18 UTC 2021 - Michael Str??der <mich...@stroeder.com> + +- Update to 2.6.2 (no ChangeLog entry for this version) + +------------------------------------------------------------------- +Tue Feb 16 08:27:32 UTC 2021 - Michael Str??der <mich...@stroeder.com> + +- Update to 2.6.1 + * Astroid version has been set as < 2.5 (#4093) + +------------------------------------------------------------------- Old: ---- pylint-2.6.0.tar.gz New: ---- pylint-2.6.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pylint.spec ++++++ --- /var/tmp/diff_new_pack.dZQ2nZ/_old 2021-02-16 22:34:54.725531738 +0100 +++ /var/tmp/diff_new_pack.dZQ2nZ/_new 2021-02-16 22:34:54.725531738 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-pylint # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -20,7 +20,7 @@ %bcond_without tests %define skip_python2 1 Name: python-pylint -Version: 2.6.0 +Version: 2.6.2 Release: 0 Summary: Syntax and style checker for Python code License: GPL-2.0-or-later ++++++ pylint-2.6.0.tar.gz -> pylint-2.6.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pylint-2.6.0/ChangeLog new/pylint-2.6.2/ChangeLog --- old/pylint-2.6.0/ChangeLog 2020-08-21 11:12:37.000000000 +0200 +++ new/pylint-2.6.2/ChangeLog 2021-02-16 10:36:12.000000000 +0100 @@ -2,6 +2,14 @@ Pylint's ChangeLog ------------------ +What's New in Pylint 2.6.1? +=========================== + +* Astroid version has been set as < 2.5 + + Close #4093 + + What's New in Pylint 2.6.0? =========================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pylint-2.6.0/PKG-INFO new/pylint-2.6.2/PKG-INFO --- old/pylint-2.6.0/PKG-INFO 2020-08-21 11:15:42.000000000 +0200 +++ new/pylint-2.6.2/PKG-INFO 2021-02-16 10:39:08.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: pylint -Version: 2.6.0 +Version: 2.6.2 Summary: python code static checker Home-page: https://github.com/PyCQA/pylint Author: Python Code Quality Authority diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pylint-2.6.0/pylint/__pkginfo__.py new/pylint-2.6.2/pylint/__pkginfo__.py --- old/pylint-2.6.0/pylint/__pkginfo__.py 2020-08-21 11:12:37.000000000 +0200 +++ new/pylint-2.6.2/pylint/__pkginfo__.py 2021-02-16 10:36:12.000000000 +0100 @@ -32,7 +32,7 @@ from os.path import join # For an official release, use dev_version = None -numversion = (2, 6, 0) +numversion = (2, 6, 2) dev_version = None version = ".".join(str(num) for num in numversion) @@ -40,7 +40,7 @@ version += "-dev" + str(dev_version) install_requires = [ - "astroid>=2.4.0,<=2.5", + "astroid>=2.4.0,<2.5", "isort>=4.2.5,<6", "mccabe>=0.6,<0.7", "toml>=0.7.1", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pylint-2.6.0/pylint.egg-info/PKG-INFO new/pylint-2.6.2/pylint.egg-info/PKG-INFO --- old/pylint-2.6.0/pylint.egg-info/PKG-INFO 2020-08-21 11:15:41.000000000 +0200 +++ new/pylint-2.6.2/pylint.egg-info/PKG-INFO 2021-02-16 10:39:07.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 1.2 Name: pylint -Version: 2.6.0 +Version: 2.6.2 Summary: python code static checker Home-page: https://github.com/PyCQA/pylint Author: Python Code Quality Authority diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pylint-2.6.0/pylint.egg-info/requires.txt new/pylint-2.6.2/pylint.egg-info/requires.txt --- old/pylint-2.6.0/pylint.egg-info/requires.txt 2020-08-21 11:15:41.000000000 +0200 +++ new/pylint-2.6.2/pylint.egg-info/requires.txt 2021-02-16 10:39:07.000000000 +0100 @@ -1,4 +1,4 @@ -astroid<=2.5,>=2.4.0 +astroid<2.5,>=2.4.0 isort<6,>=4.2.5 mccabe<0.7,>=0.6 toml>=0.7.1