Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/acme
diff options
context:
space:
mode:
authorErik Rose <grinch@grinchcentral.com>2017-03-09 04:10:12 +0300
committerBrad Warren <bmw@users.noreply.github.com>2017-03-09 04:10:12 +0300
commit8f101034960ffc1e47879314585898efda234e60 (patch)
treed42ee7d00a2aa3be868b7db9991d2957188f3e8a /acme
parent6669b95a4e4a805aee274a45c5c19ba275ff34a9 (diff)
Make argparse dependency unconditional. (#2249)
The primary motivation is to avoid a branch, giving bugs one fewer place to hide. But, as a bonus, more people get a more bugfixed version of argparse. (To use the example from the argparse docs, people stuck on Python 3.2.3 can get bugfixes that made it into the stdlib only in 3.2.4.)
Diffstat (limited to 'acme')
-rw-r--r--acme/setup.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/acme/setup.py b/acme/setup.py
index f169f59a7..48210108a 100644
--- a/acme/setup.py
+++ b/acme/setup.py
@@ -8,6 +8,7 @@ version = '0.13.0.dev0'
# Please update tox.ini when modifying dependency version requirements
install_requires = [
+ 'argparse',
# load_pem_private/public_key (>=0.6)
# rsa_recover_prime_factors (>=0.8)
'cryptography>=0.8',
@@ -30,8 +31,6 @@ install_requires = [
# Keep in sync with conditional_requirements.py.
if sys.version_info < (2, 7):
install_requires.extend([
- # only some distros recognize stdlib argparse as already satisfying
- 'argparse',
'mock<1.1.0',
])
else: