From 66c9767623a97c44974b0aafbd234915e8822002 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 12 Feb 2019 14:59:34 -0800 Subject: [PATCH] Fix #6501 (#6761) --- CHANGELOG.md | 6 ++++-- acme/setup.py | 4 +++- setup.py | 4 +++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f0b2d04d..ac0f60eb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,8 @@ Certbot adheres to [Semantic Versioning](https://semver.org/). ### Changed -* +* Certbot and its acme module now depend on josepy>=1.1.0 to avoid printing the + warnings described at https://github.com/certbot/josepy/issues/13. ### Fixed @@ -20,7 +21,8 @@ Despite us having broken lockstep, we are continuing to release new versions of all Certbot components during releases for the time being, however, the only package with changes other than its version number was: -* +* acme +* certbot More details about these changes can be found on our GitHub repo. diff --git a/acme/setup.py b/acme/setup.py index 6ec226d26..79d6d3389 100644 --- a/acme/setup.py +++ b/acme/setup.py @@ -11,7 +11,9 @@ install_requires = [ # rsa_recover_prime_factors (>=0.8) 'cryptography>=1.2.3', # formerly known as acme.jose: - 'josepy>=1.0.0', + # 1.1.0+ is required to avoid the warnings described at + # https://github.com/certbot/josepy/issues/13. + 'josepy>=1.1.0', # Connection.set_tlsext_host_name (>=0.13) 'mock', 'PyOpenSSL>=0.13.1', diff --git a/setup.py b/setup.py index 9e6af2d4f..14fef37f3 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,9 @@ install_requires = [ 'ConfigArgParse>=0.9.3', 'configobj', 'cryptography>=1.2.3', # load_pem_x509_certificate - 'josepy', + # 1.1.0+ is required to avoid the warnings described at + # https://github.com/certbot/josepy/issues/13. + 'josepy>=1.1.0', 'mock', 'parsedatetime>=1.3', # Calendar.parseDT 'pyrfc3339',