mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Release 3.9.1
This commit is contained in:
parent
e3313e0949
commit
f7bda92963
4 changed files with 23 additions and 1 deletions
|
|
@ -31,6 +31,7 @@ needs_sphinx = '1.3'
|
|||
extensions = [
|
||||
'sphinx.ext.autodoc',
|
||||
'sphinx.ext.doctest',
|
||||
'sphinx.ext.extlinks',
|
||||
'sphinx.ext.intersphinx',
|
||||
'sphinx.ext.todo',
|
||||
'sphinx.ext.coverage',
|
||||
|
|
@ -298,3 +299,8 @@ texinfo_documents = [
|
|||
|
||||
# Example configuration for intersphinx: refer to the Python standard library.
|
||||
intersphinx_mapping = {'python': ('https://docs.python.org/3/', None)}
|
||||
|
||||
extlinks = {
|
||||
"issue": ("https://github.com/pycqa/flake8/issues/%s", "#"),
|
||||
"pull": ("https://github.com/pycqa/flake8/pull/%s", "#"),
|
||||
}
|
||||
|
|
|
|||
15
docs/source/release-notes/3.9.1.rst
Normal file
15
docs/source/release-notes/3.9.1.rst
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
3.9.1 -- 2021-04-15
|
||||
-------------------
|
||||
|
||||
You can view the `3.9.1 milestone`_ on GitHub for more details.
|
||||
|
||||
Bugs Fixed
|
||||
~~~~~~~~~~
|
||||
|
||||
- Fix codes being ignored by plugins utilizing ``extend_default_ignore`` (See
|
||||
also :pull:`1317`)
|
||||
|
||||
|
||||
.. all links
|
||||
.. _3.9.1 milestone:
|
||||
https://github.com/PyCQA/flake8/milestone/38
|
||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
|||
==================
|
||||
|
||||
.. toctree::
|
||||
3.9.1
|
||||
3.9.0
|
||||
3.8.4
|
||||
3.8.3
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ if False: # `typing.TYPE_CHECKING` was introduced in 3.5.2
|
|||
LOG = logging.getLogger(__name__)
|
||||
LOG.addHandler(logging.NullHandler())
|
||||
|
||||
__version__ = "3.9.0"
|
||||
__version__ = "3.9.1"
|
||||
__version_info__ = tuple(
|
||||
int(i) for i in __version__.split(".") if i.isdigit()
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue