summaryrefslogtreecommitdiff
path: root/argparse.py
diff options
context:
space:
mode:
authorThomas Waldmann <tw AT waldmann-edv DOT de>2014-12-15 18:03:53 +0100
committerThomas Waldmann <tw AT waldmann-edv DOT de>2014-12-15 18:03:53 +0100
commit6e5f8a80a16c6e040330ec662e937184c2aec328 (patch)
treec38e811da8bbe6ae7f0126822069a242d2d482bf /argparse.py
parent95025018fdc6455982a091ca25f7a55fb92e1314 (diff)
downloadargparse-6e5f8a80a16c6e040330ec662e937184c2aec328.tar.gz
use tox for testing, bump version to 1.3.0, declare support for py 3.3+3.4
also make sure we really test THIS lib, not the builtin one in stdlib.
Diffstat (limited to 'argparse.py')
-rw-r--r--argparse.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/argparse.py b/argparse.py
index 3d04620..681d19d 100644
--- a/argparse.py
+++ b/argparse.py
@@ -61,7 +61,12 @@ considered public as object names -- the API of the formatter objects is
still considered an implementation detail.)
"""
-__version__ = '1.2.2'
+__version__ = '1.3.0' # we use our own version number independant of the
+ # one in stdlib and we release this on pypi.
+
+__external_lib__ = True # to make sure the tests really test THIS lib,
+ # not the builtin one in Python stdlib
+
__all__ = [
'ArgumentParser',
'ArgumentError',