Skip to content

Commit fd4f1c2

Browse files
committed
Tagged release 2.0.0
1 parent c7490b0 commit fd4f1c2

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

CHANGES.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changelog
22
=========
33

44

5-
2.0.0 (unreleased)
5+
2.0.0 (2016-05-31)
66
------------------
77

88
Announcements:

pycodestyle.py

+1-16
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
except ImportError:
6565
from ConfigParser import RawConfigParser
6666

67-
__version__ = '2.0.0a1'
67+
__version__ = '2.0.0'
6868

6969
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
7070
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503'
@@ -2184,20 +2184,5 @@ def _main():
21842184
sys.exit(1)
21852185

21862186

2187-
def _main_pep8():
2188-
"""Entrypoint for pep8 commandline tool.
2189-
2190-
Warn of deprecation and advise users to switch to pycodestyle.
2191-
"""
2192-
print(
2193-
'Deprecation Warning:\n'
2194-
'Use of the pep8 tool will be removed in a future release.\n'
2195-
'Please install and use `pycodestyle` instead.\n'
2196-
)
2197-
warnings.warn('pep8 has been renamed to pycodestyle (GitHub issue #466)')
2198-
2199-
_main()
2200-
2201-
22022187
if __name__ == '__main__':
22032188
_main()

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def get_long_description():
4141
entry_points={
4242
'console_scripts': [
4343
'pycodestyle = pycodestyle:_main',
44-
'pep8 = pycodestyle:_main_pep8',
4544
],
4645
},
4746
classifiers=[

0 commit comments

Comments
 (0)