diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-29 17:14:09 +0000 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-29 17:14:09 +0000 |
| commit | f6ef0c0d61fb43b56c4481520a3632cf46daef27 (patch) | |
| tree | 296033a48fea33b6da35468c3a0ba0588a18631d /docs/source/release-notes | |
| parent | 20c619f649978ad99be7e43aa57e71e38d9ae9d2 (diff) | |
| parent | 40f7041a6251132f47c60f1005c75027c8e33403 (diff) | |
| download | flake8-f6ef0c0d61fb43b56c4481520a3632cf46daef27.tar.gz | |
Merge branch 'release_note_for_entry_point_not_callable_fix' into 'master'
Add 3.0.3 release note about GitLab#164
Add 3.0.3 release note about #164
See merge request !103
Diffstat (limited to 'docs/source/release-notes')
| -rw-r--r-- | docs/source/release-notes/3.0.3.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/source/release-notes/3.0.3.rst b/docs/source/release-notes/3.0.3.rst index 0361879..17a13b1 100644 --- a/docs/source/release-notes/3.0.3.rst +++ b/docs/source/release-notes/3.0.3.rst @@ -10,11 +10,18 @@ - Fix issue where users were unable to ignore plugin errors that were on by default. (See also `GitLab#195`_) +- Raise exception when entry_point in plugin not callable. + This raises an informative error when a plugin fails to load because its + entry_point is not callable, which can happen with a plugin which is buggy or + not updated for the current version of flake8. This is nicer than raising a + `PicklingError` about failing to pickle a module (See also `GitLab#164`_) + .. links .. _GitLab#178: https://gitlab.com/pycqa/flake8/issues/178 .. _GitLab#195: https://gitlab.com/pycqa/flake8/issues/195 - .. _this Python bug report: https://bugs.python.org/issue27649 +.. _GitLab#164: + https://gitlab.com/pycqa/flake8/issues/164 |
