ansible-later/env_27/lib/python2.7/site-packages/flake8_docstrings-1.3.0.dist-info/METADATA
Robert Kaussow 10aaa8e7e3 fix pytest
2019-04-11 15:56:20 +02:00

159 lines
2.9 KiB
Plaintext

Metadata-Version: 2.0
Name: flake8-docstrings
Version: 1.3.0
Summary: Extension for flake8 which uses pydocstyle to check docstrings
Home-page: https://gitlab.com/pycqa/flake8-docstrings
Author: Ian Cordasco
Author-email: graffatcolmingov@gmail.com
License: MIT License
Description-Content-Type: UNKNOWN
Keywords: PEP 257,pydocstyle,pep257,docstrings,flake8
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Provides: flake8_docstrings
Requires-Dist: flake8
Requires-Dist: pydocstyle (>=2.1)
Requires-Dist: flake8-polyfill
flake8-docstrings
=================
A simple module that adds an extension for the fantastic pydocstyle_ tool to
flake8_.
Simply install this extension::
pip install flake8-docstrings
and run flake8.
Report any issues on our `bug tracker`_.
.. _pydocstyle: https://github.com/pycqa/pydocstyle
.. _flake8: https://gitlab.com/pycqa/flake8
.. _bug tracker: https://gitlab.com/pycqa/flake8-docstrings/issues
History/Changelog
=================
1.3.0
-----
- Bump minimum pydocstyle version to 2.1.0
1.2.0
-----
- Fix EnvironError and AllError invocations
- Avoid Flake8 warning for requesting ``builtins``
1.1.0
-----
- Upgrade dependency on pydocstyle to 2.0.0
1.0.3
-----
- Use flake8-polyfill to get standard-in to handle Flake8 3.x and 2.x
1.0.2
-----
- Use pycodestyle to get standard-in.
1.0.1
-----
- Make sure this works out of the box (is enabled by default) with Flake8 3.0
1.0.0
-----
- Switch dependency name to pydocstyle. pep257 was renamed to pydocstyle, this
update switches the requirement to that new package name. Since we're
swapping out dependencies, we've issued a major version bump.
0.2.7
-----
- Try to import pydocstyle (not pycodestyle) as pep257
0.2.6
-----
- Respect pep257's default ignore list
- Handle AllError and other exceptions from pep257
0.2.5
-----
- Use pep257's ``tokenize_open`` function to pass input to the tool.
- Use pep257's conventions so any error codes that are ignored by default
using ``pep257`` are also ignored by default with this plugin.
0.2.4
-----
- Fix bug introduced in 0.2.2 where the file source was always None causing
D100 and D104 errors for all files and no other errors to be found.
0.2.3
-----
- Remove extraneous space in error message.
- Fix up how the plugin displays with ``flake8 --version``.
0.2.2
-----
- Better support for input provided via stdin.
0.2.1
-----
- Prevent AllError or EnvironmentErrors from being raised. Thanks Alex
Pyrgiotis.
0.2.0
-----
- Upgrade to pep257 0.3.0
0.1.4
-----
- Stop truncating error messages
0.1.3
-----
- Really fix the installation issue this time.
0.1.2
-----
- Actually fix the PyPI release. **Ugh**
0.1.1
-----
- Fix the PyPI release.
0.1.0
-----
- Initial Release!