summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2018-10-23 20:39:10 -0700
committerAnthony Sottile <asottile@umich.edu>2018-10-23 20:42:45 -0700
commitb6bd3a8ddd88dd29a94b5fa8a6634e5dffe7a711 (patch)
tree0d3bd91376f7d60f1ee4b65b90d14fd63652bafc
parent0115fedbded6881ac320e878290595e57b44c17e (diff)
downloadflake8-3.6.0.tar.gz
Release v3.6.03.6.0
-rw-r--r--docs/source/internal/releases.rst4
-rw-r--r--docs/source/release-notes/3.6.0.rst117
-rw-r--r--docs/source/release-notes/index.rst1
-rw-r--r--setup.py1
-rw-r--r--src/flake8/__init__.py2
5 files changed, 122 insertions, 3 deletions
diff --git a/docs/source/internal/releases.rst b/docs/source/internal/releases.rst
index a624930..f200f49 100644
--- a/docs/source/internal/releases.rst
+++ b/docs/source/internal/releases.rst
@@ -83,9 +83,9 @@ Before releasing, the following tox test environments must pass:
- Python 2.7 (a.k.a., ``tox -e py27``)
-- Python 3.4 (a.k.a., ``tox -e py34``)
+- Python 3.6 (a.k.a., ``tox -e py36``)
-- Python 3.5 (a.k.a., ``tox -e py35``)
+- Python 3.7 (a.k.a., ``tox -e py37``)
- PyPy (a.k.a., ``tox -e pypy``)
diff --git a/docs/source/release-notes/3.6.0.rst b/docs/source/release-notes/3.6.0.rst
new file mode 100644
index 0000000..453f4ec
--- /dev/null
+++ b/docs/source/release-notes/3.6.0.rst
@@ -0,0 +1,117 @@
+3.6.0 -- 2018-10-23
+-------------------
+
+You can view the `3.6.0 milestone`_ on GitLab for more details.
+
+New Dependency Information
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+- pycodestyle has been updated to >= 2.4.0, < 2.5.0 (See also `GitLab#381`_,
+ `GitLab#415`_, `GitLab!212`_, `GitLab!230`_, `GitLab!231`_)
+
+- Pyflakes has been updated to >= 2.0.0, < 2.1.0 (See also `GitLab#422`_,
+ `GitLab!239`_)
+
+- flake8 requires python 2.x >= 2.7 or python 3.x >= 3.4 (See also
+ `GitLab!225`_)
+
+Features
+~~~~~~~~
+
+- Add ``paths`` to allow local plugins to exist outside of ``sys.path`` (See
+ also `GitLab#379`_, `GitLab!211`_)
+
+- Copy ``setup.cfg`` files to the temporary git hook execution directory (See
+ also `GitLab!215`_)
+
+- Only skip a file if ``# flake8: noqa`` is on a line by itself (See also
+ `GitLab#453`_, `GitLab!219`_)
+
+- Provide a better user experience for broken plugins (See also `GitLab!221`_)
+
+- Report ``E902`` when a file passed on the command line does not exist (See
+ also `GitLab#405`_, `GitLab!227`_)
+
+- Add ``--extend-ignore`` for extending the default ``ignore`` instead of
+ overriding it (See also `GitLab!233`_)
+
+Bugs Fixed
+~~~~~~~~~~
+
+- Respect a formatter's newline setting when printing (See also `GitLab!222`_)
+
+- Fix leaking of processes in the legacy api (See also `GitLab#410`_,
+ `GitLab!228`_)
+
+- Fix a ``SyntaxWarning`` for an invalid escape sequence (See also
+ `GitLab!244`_)
+
+- Fix ``DeprecationWarning`` due to import of ``abc`` classes from the
+ ``collections`` module (See also `GitLab!249`_)
+
+- Defer ``setuptools`` import to improve flake8 startup time (See also
+ `GitLab#365`_, `GitLab!250`_)
+
+- Fix inconsistent line endings in ``FileProcessor.lines`` when running under
+ python 3.x (See also `GitLab#457`_, `GitLab!255`_)
+
+
+.. all links
+.. _3.6.0 milestone:
+ https://gitlab.com/pycqa/flake8/milestones/21
+
+.. issue links
+.. _GitLab#365:
+ https://gitlab.com/pycqa/flake8/issues/365
+.. _GitLab#379:
+ https://gitlab.com/pycqa/flake8/issues/379
+.. _GitLab#381:
+ https://gitlab.com/pycqa/flake8/issues/381
+.. _GitLab#405:
+ https://gitlab.com/pycqa/flake8/issues/405
+.. _GitLab#410:
+ https://gitlab.com/pycqa/flake8/issues/410
+.. _GitLab#415:
+ https://gitlab.com/pycqa/flake8/issues/415
+.. _GitLab#422:
+ https://gitlab.com/pycqa/flake8/issues/422
+.. _GitLab#453:
+ https://gitlab.com/pycqa/flake8/issues/453
+.. _GitLab#457:
+ https://gitlab.com/pycqa/flake8/issues/457
+
+.. merge request links
+.. _GitLab!211:
+ https://gitlab.com/pycqa/flake8/merge_requests/211
+.. _GitLab!212:
+ https://gitlab.com/pycqa/flake8/merge_requests/212
+.. _GitLab!215:
+ https://gitlab.com/pycqa/flake8/merge_requests/215
+.. _GitLab!219:
+ https://gitlab.com/pycqa/flake8/merge_requests/219
+.. _GitLab!221:
+ https://gitlab.com/pycqa/flake8/merge_requests/221
+.. _GitLab!222:
+ https://gitlab.com/pycqa/flake8/merge_requests/222
+.. _GitLab!225:
+ https://gitlab.com/pycqa/flake8/merge_requests/225
+.. _GitLab!227:
+ https://gitlab.com/pycqa/flake8/merge_requests/227
+.. _GitLab!228:
+ https://gitlab.com/pycqa/flake8/merge_requests/228
+.. _GitLab!230:
+ https://gitlab.com/pycqa/flake8/merge_requests/230
+.. _GitLab!231:
+ https://gitlab.com/pycqa/flake8/merge_requests/231
+.. _GitLab!233:
+ https://gitlab.com/pycqa/flake8/merge_requests/233
+.. _GitLab!239:
+ https://gitlab.com/pycqa/flake8/merge_requests/239
+.. _GitLab!244:
+ https://gitlab.com/pycqa/flake8/merge_requests/244
+.. _GitLab!249:
+ https://gitlab.com/pycqa/flake8/merge_requests/249
+.. _GitLab!250:
+ https://gitlab.com/pycqa/flake8/merge_requests/250
+.. _GitLab!255:
+ https://gitlab.com/pycqa/flake8/merge_requests/255
diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst
index 99f5dcf..d70e7ae 100644
--- a/docs/source/release-notes/index.rst
+++ b/docs/source/release-notes/index.rst
@@ -9,6 +9,7 @@ with the newest releases first.
==================
.. toctree::
+ 3.6.0
3.5.0
3.4.1
3.4.0
diff --git a/setup.py b/setup.py
index 28308bc..e2adfbf 100644
--- a/setup.py
+++ b/setup.py
@@ -143,6 +143,7 @@ setuptools.setup(
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
+ "Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py
index 8a0219b..5f316c9 100644
--- a/src/flake8/__init__.py
+++ b/src/flake8/__init__.py
@@ -15,7 +15,7 @@ import sys
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
-__version__ = "3.5.0"
+__version__ = "3.6.0"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)