avoid pyOpenSSL 23.1.0

This commit is contained in:
Alex Zorin 2023-03-27 13:08:29 +11:00
parent 8037321ad7
commit 5df6519f71
2 changed files with 4 additions and 2 deletions

View file

@ -8,7 +8,8 @@ version = '2.5.0.dev0'
install_requires = [
'cryptography>=2.5.0',
'josepy>=1.13.0',
'PyOpenSSL>=17.5.0',
# pyOpenSSL 23.1.0 is a bad release: https://github.com/pyca/pyopenssl/issues/1199
'PyOpenSSL>=17.5.0,!=23.1.0',
'pyrfc3339',
'pytz>=2019.3',
'requests>=2.20.0',

View file

@ -9,7 +9,8 @@ install_requires = [
# https://github.com/certbot/certbot/issues/8761 for more info.
f'acme>={version}',
f'certbot>={version}',
'PyOpenSSL>=17.5.0',
# pyOpenSSL 23.1.0 is a bad release: https://github.com/pyca/pyopenssl/issues/1199
'PyOpenSSL>=17.5.0,!=23.1.0',
'pyparsing>=2.2.1',
'setuptools>=41.6.0',
]