summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Waldmann <tw AT waldmann-edv DOT de>2014-11-15 20:43:41 +0100
committerThomas Waldmann <tw AT waldmann-edv DOT de>2014-11-15 20:43:41 +0100
commit166d7ab1aa4622eac916d197848aae9de7518ba6 (patch)
tree7cc1dfa602b472888f6b7b55ef1956fda2341928
parent4b2d71df445cc2541c22330f6ebc0b8368a880f5 (diff)
downloadargparse-166d7ab1aa4622eac916d197848aae9de7518ba6.tar.gz
add universal wheel support, host files on pypir122
-rw-r--r--.hgignore1
-rw-r--r--NEWS.txt7
-rw-r--r--argparse.py2
-rw-r--r--setup.cfg3
-rw-r--r--setup.py1
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",