Skip to content

Commit

Permalink
Tagged release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IanLee1521 committed May 31, 2016
1 parent c7490b0 commit fd4f1c2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Changelog
=========


2.0.0 (unreleased)
2.0.0 (2016-05-31)
------------------

Announcements:
Expand Down
17 changes: 1 addition & 16 deletions pycodestyle.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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()
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def get_long_description():
entry_points={
'console_scripts': [
'pycodestyle = pycodestyle:_main',
'pep8 = pycodestyle:_main_pep8',
],
},
classifiers=[
Expand Down

4 comments on commit fd4f1c2

@coagulant
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit is not tagged https://github.com/PyCQA/pycodestyle/tags, probably should be.

@sigmavirus24
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suspect @IanLee1521 just for got to git push origin --tags.

@IanLee1521
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep. I'll take care of that on Tuesday.

@IanLee1521
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.