From 4b8ad7ddee5a4b2d76df578ba8e7bf93f1db2e5f Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 9 Sep 2021 14:50:00 -0700 Subject: [PATCH] update min josepy dep --- acme/setup.py | 6 +++--- certbot/setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/acme/setup.py b/acme/setup.py index 5f220c406..fe9d9f925 100644 --- a/acme/setup.py +++ b/acme/setup.py @@ -8,9 +8,9 @@ version = '1.20.0.dev0' install_requires = [ 'cryptography>=2.1.4', # formerly known as acme.jose: - # 1.1.0+ is required to avoid the warnings described at - # https://github.com/certbot/josepy/issues/13. - 'josepy>=1.1.0', + # 1.9.0+ is needed to avoid problems with EC keys. See + # https://github.com/certbot/josepy/issues/109. + 'josepy>=1.9.0', 'PyOpenSSL>=17.3.0', 'pyrfc3339', 'pytz', diff --git a/certbot/setup.py b/certbot/setup.py index 35a3dbda1..595e06173 100644 --- a/certbot/setup.py +++ b/certbot/setup.py @@ -52,9 +52,9 @@ install_requires = [ 'configobj>=5.0.6', 'cryptography>=2.1.4', 'distro>=1.0.1', - # 1.1.0+ is required to avoid the warnings described at - # https://github.com/certbot/josepy/issues/13. - 'josepy>=1.1.0', + # 1.9.0+ is needed to avoid problems with EC keys. See + # https://github.com/certbot/josepy/issues/109. + 'josepy>=1.9.0', 'parsedatetime>=2.4', 'pyrfc3339', 'pytz',