From 166d7ab1aa4622eac916d197848aae9de7518ba6 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 15 Nov 2014 20:43:41 +0100 Subject: add universal wheel support, host files on pypi --- .hgignore | 1 + NEWS.txt | 7 +++++++ argparse.py | 2 +- setup.cfg | 3 +++ setup.py | 1 - 5 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.hgignore b/.hgignore index 9fd6d30..1531d9e 100644 --- a/.hgignore +++ b/.hgignore @@ -1,4 +1,5 @@ .*\.py[co]$ +^build/ ^dist/ ^env24/ ^env25/ diff --git a/NEWS.txt b/NEWS.txt index 9494c3f..1624743 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -1,6 +1,13 @@ What's New ========== +argparse 1.2.2 +-------------- + +- added universal wheel support, built, signed and uploaded with: + python setup.py sdist bdist_wheel upload --identity="Thomas Waldmann" --sign +- host the files on pypi + argparse 1.2.1 -------------- diff --git a/argparse.py b/argparse.py index 32d948c..3d04620 100644 --- a/argparse.py +++ b/argparse.py @@ -61,7 +61,7 @@ considered public as object names -- the API of the formatter objects is still considered an implementation detail.) """ -__version__ = '1.2.1' +__version__ = '1.2.2' __all__ = [ 'ArgumentParser', 'ArgumentError', diff --git a/setup.cfg b/setup.cfg index 6e7053f..788ff88 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,6 +8,9 @@ doc_files= requires=python build_requires=python +[bdist_wheel] +universal = 1 + [build_sphinx] source-dir = doc/ build-dir = doc/_build diff --git a/setup.py b/setup.py index 20493d3..377c285 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,6 @@ setup_args = dict( long_description=long_description, author="Steven Bethard", author_email="steven.bethard@gmail.com", - download_url="http://argparse.googlecode.com/files/argparse-%s.tar.gz" % (argparse.__version__, ), url="http://code.google.com/p/argparse/", license="Python Software Foundation License", keywords="argparse command line parser parsing", -- cgit v1.2.1