From fd4f1c286cdc4e0bc25822e10742adbc9062af15 Mon Sep 17 00:00:00 2001 From: Ian Lee Date: Tue, 31 May 2016 16:56:02 -0700 Subject: [PATCH] Tagged release 2.0.0 --- CHANGES.txt | 2 +- pycodestyle.py | 17 +---------------- setup.py | 1 - 3 files changed, 2 insertions(+), 18 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index d4b63d0a..e129dc87 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,7 +2,7 @@ Changelog ========= -2.0.0 (unreleased) +2.0.0 (2016-05-31) ------------------ Announcements: diff --git a/pycodestyle.py b/pycodestyle.py index b764f89d..70263968 100755 --- a/pycodestyle.py +++ b/pycodestyle.py @@ -64,7 +64,7 @@ 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' @@ -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() diff --git a/setup.py b/setup.py index 93a1337e..b77770e5 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,6 @@ def get_long_description(): entry_points={ 'console_scripts': [ 'pycodestyle = pycodestyle:_main', - 'pep8 = pycodestyle:_main_pep8', ], }, classifiers=[