Skip to content
Snippets Groups Projects
Commit fd4f1c28 authored by Ian Lee's avatar Ian Lee
Browse files

Tagged release 2.0.0

parent c7490b0f
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -2,7 +2,7 @@ Changelog
=========
 
 
2.0.0 (unreleased)
2.0.0 (2016-05-31)
------------------
 
Announcements:
Loading
Loading
Loading
Loading
@@ -64,7 +64,7 @@ try:
except ImportError:
from ConfigParser import RawConfigParser
 
__version__ = '2.0.0a1'
__version__ = '2.0.0'
 
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503'
Loading
Loading
@@ -2184,20 +2184,5 @@ def _main():
sys.exit(1)
 
 
def _main_pep8():
"""Entrypoint for pep8 commandline tool.
Warn of deprecation and advise users to switch to pycodestyle.
"""
print(
'Deprecation Warning:\n'
'Use of the pep8 tool will be removed in a future release.\n'
'Please install and use `pycodestyle` instead.\n'
)
warnings.warn('pep8 has been renamed to pycodestyle (GitHub issue #466)')
_main()
if __name__ == '__main__':
_main()
Loading
Loading
@@ -41,7 +41,6 @@ setup(
entry_points={
'console_scripts': [
'pycodestyle = pycodestyle:_main',
'pep8 = pycodestyle:_main_pep8',
],
},
classifiers=[
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