14
0
forked from pool/python-pylint

Accepting request 812727 from home:stroeder:branches:devel:languages:python

- Update to 2.5.3
  * Fix a regression where disable comments that have checker names with numbers in them are not parsed correctly
    Close #3666
  * `property-with-parameters` properly handles abstract properties
    Close #3600
  * `continue-in-finally` no longer emitted on Python 3.8 where it's now valid
    Close #3612
  * Fix a regression where messages with dash are not fully parsed
    Close #3604
  * In a TOML configuration file, it's now possible to use rich (non-string) types, such as list, integer or boolean instead of strings. For example, one can now define a *list* of message identifiers to enable like this::
      enable = [
          "use-symbolic-message-instead",
          "useless-suppression",
      ]
    Close #3538
  * Fix a regression where the score was not reported with multiple jobs
    Close #3547
  * Protect against `AttributeError` when checking `cell-var-from-loop`
    Close #3646

OBS-URL: https://build.opensuse.org/request/show/812727
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pylint?expand=0&rev=108
This commit is contained in:
Tomáš Chvátal
2020-06-09 06:47:59 +00:00
committed by Git OBS Bridge
parent f40b064547
commit 5d172578f1
4 changed files with 27 additions and 4 deletions

View File

@@ -1,3 +1,26 @@
-------------------------------------------------------------------
Mon Jun 8 19:33:50 UTC 2020 - Michael Ströder <michael@stroeder.com>
- Update to 2.5.3
* Fix a regression where disable comments that have checker names with numbers in them are not parsed correctly
Close #3666
* `property-with-parameters` properly handles abstract properties
Close #3600
* `continue-in-finally` no longer emitted on Python 3.8 where it's now valid
Close #3612
* Fix a regression where messages with dash are not fully parsed
Close #3604
* In a TOML configuration file, it's now possible to use rich (non-string) types, such as list, integer or boolean instead of strings. For example, one can now define a *list* of message identifiers to enable like this::
enable = [
"use-symbolic-message-instead",
"useless-suppression",
]
Close #3538
* Fix a regression where the score was not reported with multiple jobs
Close #3547
* Protect against `AttributeError` when checking `cell-var-from-loop`
Close #3646
-------------------------------------------------------------------
Mon May 18 17:38:20 UTC 2020 - Benjamin Greiner <code@bnavigator.de>