mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
avoid pyOpenSSL 23.1.0
This commit is contained in:
parent
8037321ad7
commit
5df6519f71
2 changed files with 4 additions and 2 deletions
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue