mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-10 06:44:18 +00:00
Merge branch '3.7-maintenance' into 'master'
Merge 3.7.9 tag and release notes See merge request pycqa/flake8!369
This commit is contained in:
commit
22af073654
3 changed files with 25 additions and 1 deletions
23
docs/source/release-notes/3.7.9.rst
Normal file
23
docs/source/release-notes/3.7.9.rst
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
3.7.9 -- 2019-10-28
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
You can view the `3.7.9 milestone`_ on GitLab for more details.
|
||||||
|
|
||||||
|
Bugs Fixed
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
- Disable multiprocessing when the multiprocessing method is ``spawn`` (such
|
||||||
|
as on macos in python3.8) (See also `GitLab!367`_, `GitLab#587`_)
|
||||||
|
|
||||||
|
|
||||||
|
.. all links
|
||||||
|
.. _3.7.9 milestone:
|
||||||
|
https://gitlab.com/pycqa/flake8/milestones/33
|
||||||
|
|
||||||
|
.. issue links
|
||||||
|
.. _GitLab#587:
|
||||||
|
https://gitlab.com/pycqa/flake8/issues/587
|
||||||
|
|
||||||
|
.. merge request links
|
||||||
|
.. _GitLab!367:
|
||||||
|
https://gitlab.com/pycqa/flake8/merge_requests/367
|
||||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
||||||
==================
|
==================
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
3.7.9
|
||||||
3.7.8
|
3.7.8
|
||||||
3.7.7
|
3.7.7
|
||||||
3.7.6
|
3.7.6
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ if False: # `typing.TYPE_CHECKING` was introduced in 3.5.2
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
LOG.addHandler(logging.NullHandler())
|
LOG.addHandler(logging.NullHandler())
|
||||||
|
|
||||||
__version__ = "3.7.8"
|
__version__ = "3.7.9"
|
||||||
__version_info__ = tuple(
|
__version_info__ = tuple(
|
||||||
int(i) for i in __version__.split(".") if i.isdigit()
|
int(i) for i in __version__.split(".") if i.isdigit()
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue