Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin pep8-naming to latest version 0.8.2 #49

Merged
merged 1 commit into from
Oct 1, 2019
Merged

Conversation

pyup-bot
Copy link
Contributor

@pyup-bot pyup-bot commented Oct 1, 2019

This PR pins pep8-naming to the latest release 0.8.2.

Changelog

0.8.2

------------------

* Fix a problem with ``ignore-names`` option initialization.

0.8.1

------------------

* ``ignore-names`` now also applies to the N806, N815, and N816 checks.

* ``failureException``, ``longMessage``, and ``maxDiff`` have been added to
the default ``ignore-names`` list.

* Allow lowercase names to be imported as just ``_``.

* Allow function arguments to be named just ``_``.

* Support Python 2's tuple syntax in ``except`` clauses.

0.8.0

------------------

* Detect N806 errors within ``for`` loops and exception handlers.

* Improve support for non-ASCII characters.

* Detect mixedCased variable names at class (N815) and global (N816) scope.

* Ignore Django's ``setUpTestData`` method by default.

* Fix column offsets for N803, N804, and N805 under Python 3.

* Detect underscores within class names as N801 errors.

* Don't flag ``__getattr__`` and ``__dir__`` as N807 errors. (See
`PEP 562 <https://www.python.org/dev/peps/pep-0562/>`_).

* ``async`` function and method names are now checked.

* Detect N806 errors in generator expressions and comprehensions.

* Detect N81x errors in ``import x as y`` statements.

0.7.0

------------------

* Detect N806 in ``with ... as ...:`` statements.

* Detect N806 in multiple assignment statements, e.g., ``Foo, Bar =
unpacking``.

* Allow class names to be properly ignored.

* Remove spurious 'xxx' from error message

* Detect N807 within conditional statements.

0.6.1

------------------

* Fix N804 check for ``cls`` used in metaclass methods (See also
https://github.com/PyCQA/pep8-naming/issues/53)

0.6.0

------------------

* Separate check for ``__`` in function names to its own code: N807

* Consider all metaclass methods to be class methods

0.5.0

------------------

* Add configurable list of classmethod and staticmethod decorators

* Print the offending name as part of the error message

* Correct N804/N805 for __init_subclass__

0.4.1

------------------

* Note to self: Never do releases before ~0600 or coffee on a Sunday.

* Fix option parsing for Flake8 3.0 (store parsed value on class)

0.4.0

------------------

* Fix integration with Flake8 3.0.0b1

* Start testing against Python 3.5

0.3.3

------------------

* Fix bug where ignored names were not properly split into a list.

0.3.2

------------------

* Fix bug trying to call ``split`` on a list.

0.3.1

------------------

* Fix optparse exception resulting from trying to register an option twice.

0.3.0

------------------

* Relaxed N806 checking for use with namedtuples

* Add ``--ignore-names`` which allows the user to specify a list of names to
ignore. By default this includes ``setUp``, ``tearDown``, ``setUpClass``,
and ``tearDownClass``.

0.2.2

------------------

* Do not require ``setuptools`` in setup.py.  It works around an issue
with ``pip`` and Python 3.

* ``__new__`` is now considered as ``classmethod`` implicitly

* Run unit tests on travis-ci.org for python2.6, 2.7, 3.2, and 3.3

* Add unit tests and support running them with setup.py

* Support Python 3.4

0.2.1

------------------
* Do not require ``flake8``

0.2

----------------

* Rename project ``flint-naming`` to ``pep8-naming``

* Fix a crash when function argument is a tuple of tuples


0.1 - 2013-02-11
----------------

* First release
Links

@nbraud
Copy link
Collaborator

nbraud commented Oct 1, 2019

bors r+

bors bot added a commit that referenced this pull request Oct 1, 2019
49: Pin pep8-naming to latest version 0.8.2 r=nbraud a=pyup-bot


This PR pins [pep8-naming](https://pypi.org/project/pep8-naming) to the latest release **0.8.2**.



<details>
  <summary>Changelog</summary>
  
  
   ### 0.8.2
   ```
   ------------------

* Fix a problem with ``ignore-names`` option initialization.
   ```
   
  
  
   ### 0.8.1
   ```
   ------------------

* ``ignore-names`` now also applies to the N806, N815, and N816 checks.

* ``failureException``, ``longMessage``, and ``maxDiff`` have been added to
  the default ``ignore-names`` list.

* Allow lowercase names to be imported as just ``_``.

* Allow function arguments to be named just ``_``.

* Support Python 2&#39;s tuple syntax in ``except`` clauses.
   ```
   
  
  
   ### 0.8.0
   ```
   ------------------

* Detect N806 errors within ``for`` loops and exception handlers.

* Improve support for non-ASCII characters.

* Detect mixedCased variable names at class (N815) and global (N816) scope.

* Ignore Django&#39;s ``setUpTestData`` method by default.

* Fix column offsets for N803, N804, and N805 under Python 3.

* Detect underscores within class names as N801 errors.

* Don&#39;t flag ``__getattr__`` and ``__dir__`` as N807 errors. (See
  `PEP 562 &lt;https://www.python.org/dev/peps/pep-0562/&gt;`_).

* ``async`` function and method names are now checked.

* Detect N806 errors in generator expressions and comprehensions.

* Detect N81x errors in ``import x as y`` statements.
   ```
   
  
  
   ### 0.7.0
   ```
   ------------------

* Detect N806 in ``with ... as ...:`` statements.

* Detect N806 in multiple assignment statements, e.g., ``Foo, Bar =
  unpacking``.

* Allow class names to be properly ignored.

* Remove spurious &#39;xxx&#39; from error message

* Detect N807 within conditional statements.
   ```
   
  
  
   ### 0.6.1
   ```
   ------------------

* Fix N804 check for ``cls`` used in metaclass methods (See also
  PyCQA/pep8-naming#53)
   ```
   
  
  
   ### 0.6.0
   ```
   ------------------

* Separate check for ``__`` in function names to its own code: N807

* Consider all metaclass methods to be class methods
   ```
   
  
  
   ### 0.5.0
   ```
   ------------------

* Add configurable list of classmethod and staticmethod decorators

* Print the offending name as part of the error message

* Correct N804/N805 for __init_subclass__
   ```
   
  
  
   ### 0.4.1
   ```
   ------------------

* Note to self: Never do releases before ~0600 or coffee on a Sunday.

* Fix option parsing for Flake8 3.0 (store parsed value on class)
   ```
   
  
  
   ### 0.4.0
   ```
   ------------------

* Fix integration with Flake8 3.0.0b1

* Start testing against Python 3.5
   ```
   
  
  
   ### 0.3.3
   ```
   ------------------

* Fix bug where ignored names were not properly split into a list.
   ```
   
  
  
   ### 0.3.2
   ```
   ------------------

* Fix bug trying to call ``split`` on a list.
   ```
   
  
  
   ### 0.3.1
   ```
   ------------------

* Fix optparse exception resulting from trying to register an option twice.
   ```
   
  
  
   ### 0.3.0
   ```
   ------------------

* Relaxed N806 checking for use with namedtuples

* Add ``--ignore-names`` which allows the user to specify a list of names to
  ignore. By default this includes ``setUp``, ``tearDown``, ``setUpClass``,
  and ``tearDownClass``.
   ```
   
  
  
   ### 0.2.2
   ```
   ------------------

* Do not require ``setuptools`` in setup.py.  It works around an issue
  with ``pip`` and Python 3.

* ``__new__`` is now considered as ``classmethod`` implicitly

* Run unit tests on travis-ci.org for python2.6, 2.7, 3.2, and 3.3

* Add unit tests and support running them with setup.py

* Support Python 3.4
   ```
   
  
  
   ### 0.2.1
   ```
   ------------------
* Do not require ``flake8``
   ```
   
  
  
   ### 0.2
   ```
   ----------------

* Rename project ``flint-naming`` to ``pep8-naming``

* Fix a crash when function argument is a tuple of tuples


0.1 - 2013-02-11
----------------

* First release
   ```
   
  
</details>


 

<details>
  <summary>Links</summary>
  
  - PyPI: https://pypi.org/project/pep8-naming
  - Changelog: https://pyup.io/changelogs/pep8-naming/
  - Repo: https://github.com/PyCQA/pep8-naming
</details>



Co-authored-by: pyup-bot <github-bot@pyup.io>
@bors
Copy link
Contributor

bors bot commented Oct 1, 2019

@bors bors bot merged commit 1d290ce into master Oct 1, 2019
@nbraud nbraud deleted the pyup-pin-pep8-naming-0.8.2 branch October 1, 2019 11:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants