From 9160669b31997f37954fea90a3e99523c48f31be Mon Sep 17 00:00:00 2001 From: Alex Zorin Date: Thu, 3 Dec 2020 16:58:18 +1100 Subject: [PATCH] try fix oldest deps because certbot 1.10.0 depends on acme>=1.8.0, we need to use acme==1.8.0 in the -oldest tests --- certbot-apache/local-oldest-requirements.txt | 2 +- certbot-apache/setup.py | 2 +- certbot-nginx/local-oldest-requirements.txt | 2 +- certbot-nginx/setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/certbot-apache/local-oldest-requirements.txt b/certbot-apache/local-oldest-requirements.txt index 0fa239cef..2631bc8cc 100644 --- a/certbot-apache/local-oldest-requirements.txt +++ b/certbot-apache/local-oldest-requirements.txt @@ -1,3 +1,3 @@ # Remember to update setup.py to match the package versions below. -acme[dev]==0.29.0 +acme[dev]==1.8.0 certbot[dev]==1.10.0 diff --git a/certbot-apache/setup.py b/certbot-apache/setup.py index 4b1f58ace..e1617f329 100644 --- a/certbot-apache/setup.py +++ b/certbot-apache/setup.py @@ -10,7 +10,7 @@ version = '1.11.0.dev0' # Remember to update local-oldest-requirements.txt when changing the minimum # acme/certbot version. install_requires = [ - 'acme>=0.29.0', + 'acme>=1.8.0', 'certbot>=1.10.0', 'python-augeas', 'setuptools', diff --git a/certbot-nginx/local-oldest-requirements.txt b/certbot-nginx/local-oldest-requirements.txt index 785991b8c..2631bc8cc 100644 --- a/certbot-nginx/local-oldest-requirements.txt +++ b/certbot-nginx/local-oldest-requirements.txt @@ -1,3 +1,3 @@ # Remember to update setup.py to match the package versions below. -acme[dev]==1.6.0 +acme[dev]==1.8.0 certbot[dev]==1.10.0 diff --git a/certbot-nginx/setup.py b/certbot-nginx/setup.py index 9bfdff164..2309bd7db 100644 --- a/certbot-nginx/setup.py +++ b/certbot-nginx/setup.py @@ -10,7 +10,7 @@ version = '1.11.0.dev0' # Remember to update local-oldest-requirements.txt when changing the minimum # acme/certbot version. install_requires = [ - 'acme>=1.4.0', + 'acme>=1.8.0', 'certbot>=1.10.0', 'PyOpenSSL', 'pyparsing>=1.5.5', # Python3 support