Skip to content
Snippets Groups Projects
Verified Commit fbb261bf authored by Ian Stapleton Cordasco's avatar Ian Stapleton Cordasco
Browse files

Prepare release of 0.6.0

Also restructure to ensure we're testing the right stuff.
parent 42e5bdb9
No related branches found
No related tags found
No related merge requests found
Changes
=======
 
0.6.0 - 2018-05-04
------------------
* Separate check for ``__`` in function names to its own code: N807
* Consider all metaclass methods to be class methods
0.5.0 - 2018-01-02
------------------
 
Loading
Loading
Loading
Loading
@@ -4,7 +4,7 @@ from setuptools import setup
from setuptools.command.test import test as TestCommand
 
 
def get_version(fname='pep8ext_naming.py'):
def get_version(fname='src/pep8ext_naming.py'):
with open(fname) as f:
for line in f:
if line.startswith('__version__'):
Loading
Loading
@@ -42,6 +42,7 @@ setup(
author_email='florent.xicluna@gmail.com',
url='https://github.com/PyCQA/pep8-naming',
license='Expat license',
package_dir={'': 'src'},
py_modules=['pep8ext_naming'],
install_requires=['flake8_polyfill>=1.0.2,<2'],
zip_safe=False,
Loading
Loading
@@ -49,20 +50,17 @@ setup(
'flake8.extension': [
'N8 = pep8ext_naming:NamingChecker',
],
# Backward compatibility for Flint (now merged into Flake8)
'flint.extension': [
'N80 = pep8ext_naming:NamingChecker',
'N81 = pep8ext_naming:NamingChecker',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Framework :: Flake8',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
Loading
Loading
Loading
Loading
@@ -12,7 +12,7 @@ try:
except ImportError:
from flake8.util import ast, iter_child_nodes
 
__version__ = '0.5.0'
__version__ = '0.6.0'
 
LOWERCASE_REGEX = re.compile(r'[_a-z][_a-z0-9]*$')
UPPERCASE_REGEX = re.compile(r'[_A-Z][_A-Z0-9]*$')
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