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
diff options
context:
space:
mode:
authorsydneyli <sydli@stanford.edu>2018-04-12 00:36:53 +0300
committerBrad Warren <bmw@users.noreply.github.com>2018-04-12 00:36:53 +0300
commit88ceaa38d5f21bb81c4852fe1eb75ba049dfdf3f (patch)
treef341ed10f7280efa14614bec3ea051636bc1ff69
parente7db97df87f317ca959fe92b454d83997195563c (diff)
Bump certbot's acme depenency to 0.22.1 (#5826)
-rw-r--r--setup.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 3667a6976..ba521ed2a 100644
--- a/setup.py
+++ b/setup.py
@@ -34,9 +34,7 @@ version = meta['version']
# specified here to avoid masking the more specific request requirements in
# acme. See https://github.com/pypa/pip/issues/988 for more info.
install_requires = [
- # Remember to update local-oldest-requirements.txt when changing the
- # minimum acme version.
- 'acme>0.21.1',
+ 'acme>=0.22.1',
# We technically need ConfigArgParse 0.10.0 for Python 2.6 support, but
# saying so here causes a runtime error against our temporary fork of 0.9.3
# in which we added 2.6 support (see #2243), so we relax the requirement.