summaryrefslogtreecommitdiff
path: root/pycodestyle.py
diff options
context:
space:
mode:
authorIan Lee <IanLee1521@gmail.com>2016-05-31 10:20:47 -0700
committerIan Lee <IanLee1521@gmail.com>2016-05-31 10:20:47 -0700
commit53da847c91b277491ef542ef53586e54cf7f4942 (patch)
tree05a08f6db3ae8387bbfb1561c05a4b45e1acea5a /pycodestyle.py
parenta7362de1af81a2f1916f2d7e52f6af80e00c7aa1 (diff)
downloadpep8-53da847c91b277491ef542ef53586e54cf7f4942.tar.gz
Update next version plan to 2.0.0
In order to better high-light the name change, and backwards incompatibility. This also allows dependent tools (like flake8) to pin to `pycodestyle < 2.0` as a dependency while transitioning to the new package.
Diffstat (limited to 'pycodestyle.py')
-rwxr-xr-xpycodestyle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pycodestyle.py b/pycodestyle.py
index e3dc05f..de40b07 100755
--- a/pycodestyle.py
+++ b/pycodestyle.py
@@ -64,7 +64,7 @@ try:
except ImportError:
from ConfigParser import RawConfigParser
-__version__ = '1.8.0.dev0'
+__version__ = '2.0.0.dev0'
DEFAULT_EXCLUDE = '.svn,CVS,.bzr,.hg,.git,__pycache__,.tox'
DEFAULT_IGNORE = 'E121,E123,E126,E226,E24,E704,W503'