15
0
forked from pool/python-mccabe

Accepting request 457355 from home:kwk:branches:devel:languages:python

- update to version 0.6.1:
  * Fix signature for PathGraphingAstVisitor.default to match the
    signature for ASTVisitor
- update to version 0.6.0:
  * Add support for Python 3.6
  * Fix handling for missing statement types
- update to version 0.5.3:
  * Report actual column number of violation instead of the start
    of the line
- update to version 0.5.2:
  * When opening files ourselves, make sure we always name the file
    variable
- update to version 0.5.1:
  * Set default maximum complexity to -1 on the class itself
- update to version 0.5.0:
  * PyCon 2016 PDX release
  * Add support for Flake8 3.0
- update to version 0.4.0:
  * Stop testing on Python 3.2
  * Add support for async/await keywords on Python 3.5 from PEP 0492
- update to version 0.3.1:
  * Include test_mccabe.py in releases.
  * Always coerce the max_complexity value from Flake8’s entry-point
    to an integer.

OBS-URL: https://build.opensuse.org/request/show/457355
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mccabe?expand=0&rev=14
This commit is contained in:
2017-02-16 14:12:22 +00:00
committed by Git OBS Bridge
parent d444de040e
commit 8d0bf1d69a
4 changed files with 41 additions and 5 deletions

View File

@@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Feb 15 08:55:16 UTC 2017 - kkaempf@suse.com
- update to version 0.6.1:
* Fix signature for PathGraphingAstVisitor.default to match the
signature for ASTVisitor
- update to version 0.6.0:
* Add support for Python 3.6
* Fix handling for missing statement types
- update to version 0.5.3:
* Report actual column number of violation instead of the start
of the line
- update to version 0.5.2:
* When opening files ourselves, make sure we always name the file
variable
- update to version 0.5.1:
* Set default maximum complexity to -1 on the class itself
- update to version 0.5.0:
* PyCon 2016 PDX release
* Add support for Flake8 3.0
- update to version 0.4.0:
* Stop testing on Python 3.2
* Add support for async/await keywords on Python 3.5 from PEP 0492
- update to version 0.3.1:
* Include test_mccabe.py in releases.
* Always coerce the max_complexity value from Flake8s entry-point
to an integer.
-------------------------------------------------------------------
Thu May 7 16:34:53 UTC 2015 - benoit.monin@gmx.fr