File tree Expand file tree Collapse file tree 4 files changed +23
-1
lines changed
Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 3131extensions = [
3232 'sphinx.ext.autodoc' ,
3333 'sphinx.ext.doctest' ,
34+ 'sphinx.ext.extlinks' ,
3435 'sphinx.ext.intersphinx' ,
3536 'sphinx.ext.todo' ,
3637 'sphinx.ext.coverage' ,
298299
299300# Example configuration for intersphinx: refer to the Python standard library.
300301intersphinx_mapping = {'python' : ('https://docs.python.org/3/' , None )}
302+
303+ extlinks = {
304+ "issue" : ("https://github.com/pycqa/flake8/issues/%s" , "#" ),
305+ "pull" : ("https://github.com/pycqa/flake8/pull/%s" , "#" ),
306+ }
Original file line number Diff line number Diff line change 1+ 3.9.1 -- 2021-04-15
2+ -------------------
3+
4+ You can view the `3.9.1 milestone `_ on GitHub for more details.
5+
6+ Bugs Fixed
7+ ~~~~~~~~~~
8+
9+ - Fix codes being ignored by plugins utilizing ``extend_default_ignore `` (See
10+ also :pull: `1317 `)
11+
12+
13+ .. all links
14+ .. _3.9.1 milestone :
15+ https://github.com/PyCQA/flake8/milestone/38
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ with the newest releases first.
99==================
1010
1111.. toctree ::
12+ 3.9.1
1213 3.9.0
1314 3.8.4
1415 3.8.3
Original file line number Diff line number Diff line change 1818LOG = logging .getLogger (__name__ )
1919LOG .addHandler (logging .NullHandler ())
2020
21- __version__ = "3.9.0 "
21+ __version__ = "3.9.1 "
2222__version_info__ = tuple (
2323 int (i ) for i in __version__ .split ("." ) if i .isdigit ()
2424)
You can’t perform that action at this time.
0 commit comments