Skip to content
Snippets Groups Projects
Commit e8b3e2ab authored by Florent Xicluna's avatar Florent Xicluna
Browse files

Release 0.2.1: do not require flake8

parent 5f4138c3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -63,11 +63,16 @@ These error codes are emitted:
Changes
-------
 
0.2.1 - 2013-02-22
``````````````````
* Do not require ``flake8``
0.2 - 2013-02-22
````````````````
* Rename project ``flint-naming`` to ``pep8-naming``
 
* Fix a crash when function argument is a tuple of tuples.
* Fix a crash when function argument is a tuple of tuples
 
 
0.1 - 2013-02-11
Loading
Loading
Loading
Loading
@@ -4,9 +4,13 @@ import re
import sys
from collections import deque
 
from flake8.util import ast, iter_child_nodes
try:
import ast
from ast import iter_child_nodes
except ImportError:
from flake8.util import ast, iter_child_nodes
 
__version__ = '0.2'
__version__ = '0.2.1'
 
LOWERCASE_REGEX = re.compile(r'[_a-z][_a-z0-9]*$')
UPPERCASE_REGEX = re.compile(r'[_A-Z][_A-Z0-9]*$')
Loading
Loading
Loading
Loading
@@ -32,7 +32,6 @@ setup(
zip_safe=False,
install_requires=[
'setuptools',
'flake8',
],
entry_points={
'flake8.extension': [
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment