mirror of
https://github.com/certbot/certbot.git
synced 2026-07-30 16:14:44 +02:00
update policy on minimum dependency versions (#10130)
fixes #10105 this PR updates our minimally required cryptography and pyopenssl versions as well as updating our policy for choosing minimum dependency versions generally before this PR, we were trying to keep compatibility with packages available in EPEL 9 using the python 3 version available in RHEL 9. after the discussion in #10105 we decided not to do this anymore because: * EPEL 9 may not want to update to certbot 3.0+ anyway because of our backwards incompatible changes from certbot 2.x * RHEL 9 appstream repos now contain newer versions of many of our dependencies for newer versions of python * alternate installation methods for RHEL 9 based users including our snaps and pip are available on a call we then discussed what distro repositories we should track instead of EPEL 9. our docs previously said Debian sid/unstable, but we felt this as unnecessary because Debian sid can and does change very quickly. if we wanted a new dependency there, Debian could probably accommodate it we also considered RHEL 10 + EPEL 10, however, these repos are not even stable yet and certbot and many of its dependencies are not yet packaged there at all for these reasons, plus many of the reasons we decided to upgrade past EPEL 9 with the default python 3 version there, we decided that at least for now, we will remove any linux distro considerations when choosing minimal dependency versions of certbot as i wrote in the contributing docs, we may choose to reconsider this plan if there are requests for us to do so, but based on the information above, we are not sure this will ever even happen and removing this constraint significantly simplifies development of certbot
This commit is contained in:
@@ -15,7 +15,7 @@ colorama==0.4.6 ; python_version >= "3.9" and python_version < "3.10" and sys_pl
|
||||
configargparse==1.5.3 ; python_version >= "3.9" and python_version < "3.10"
|
||||
configobj==5.0.6 ; python_version >= "3.9" and python_version < "3.10"
|
||||
coverage==7.6.10 ; python_version >= "3.9" and python_version < "3.10"
|
||||
cryptography==3.2.1 ; python_version >= "3.9" and python_version < "3.10"
|
||||
cryptography==42.0.0 ; python_version >= "3.9" and python_version < "3.10"
|
||||
cython==0.29.37 ; python_version >= "3.9" and python_version < "3.10"
|
||||
dill==0.3.9 ; python_version >= "3.9" and python_version < "3.10"
|
||||
distlib==0.3.9 ; python_version >= "3.9" and python_version < "3.10"
|
||||
@@ -55,7 +55,7 @@ pyasn1-modules==0.4.1 ; python_version >= "3.9" and python_version < "3.10"
|
||||
pyasn1==0.4.8 ; python_version >= "3.9" and python_version < "3.10"
|
||||
pycparser==2.14 ; python_version >= "3.9" and python_version < "3.10"
|
||||
pylint==3.3.3 ; python_version >= "3.9" and python_version < "3.10"
|
||||
pyopenssl==17.5.0 ; python_version >= "3.9" and python_version < "3.10"
|
||||
pyopenssl==25.0.0 ; python_version >= "3.9" and python_version < "3.10"
|
||||
pyotp==2.9.0 ; python_version >= "3.9" and python_version < "3.10"
|
||||
pyparsing==2.4.7 ; python_version >= "3.9" and python_version < "3.10"
|
||||
pyrfc3339==1.0 ; python_version >= "3.9" and python_version < "3.10"
|
||||
@@ -79,9 +79,9 @@ tldextract==5.1.3 ; python_version >= "3.9" and python_version < "3.10"
|
||||
tomli==2.2.1 ; python_version >= "3.9" and python_version < "3.10"
|
||||
tomlkit==0.13.2 ; python_version >= "3.9" and python_version < "3.10"
|
||||
tox==1.9.2 ; python_version >= "3.9" and python_version < "3.10"
|
||||
types-cryptography==3.3.23.2 ; python_version >= "3.9" and python_version < "3.10"
|
||||
types-cffi==1.16.0.20241221 ; python_version >= "3.9" and python_version < "3.10"
|
||||
types-httplib2==0.22.0.20241221 ; python_version >= "3.9" and python_version < "3.10"
|
||||
types-pyopenssl==23.0.0.0 ; python_version >= "3.9" and python_version < "3.10"
|
||||
types-pyopenssl==24.1.0.20240722 ; python_version >= "3.9" and python_version < "3.10"
|
||||
types-pyrfc3339==2.0.1.20241107 ; python_version >= "3.9" and python_version < "3.10"
|
||||
types-python-dateutil==2.9.0.20241206 ; python_version >= "3.9" and python_version < "3.10"
|
||||
types-pytz==2024.2.0.20241221 ; python_version >= "3.9" and python_version < "3.10"
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# The purpose of this file is to help us test Certbot against the oldest
|
||||
# versions of our dependencies which we claim to support in our setup.py files.
|
||||
#
|
||||
# Security alerts about vulnerable packages in this file can be ignored since
|
||||
# they are only used during testing.
|
||||
#
|
||||
# Ideally, generating package pinnings based on our minimum allowed dependency
|
||||
# versions would be done automatically by tooling, but as of writing this, both
|
||||
# https://github.com/pypa/pip/issues/8085 and
|
||||
# https://github.com/python-poetry/poetry/issues/3527 remain unresolved.
|
||||
[tool.poetry]
|
||||
name = "certbot-pinner"
|
||||
version = "0.1.0"
|
||||
@@ -52,7 +60,7 @@ cffi = "1.12.3"
|
||||
chardet = "3.0.4"
|
||||
cloudflare = "1.5.1"
|
||||
configobj = "5.0.6"
|
||||
cryptography = "3.2.1"
|
||||
cryptography = "42.0.0"
|
||||
distro = "1.0.1"
|
||||
dns-lexicon = "3.15.1"
|
||||
dnspython = "2.6.1"
|
||||
@@ -67,7 +75,7 @@ ndg-httpsclient = "0.3.2"
|
||||
parsedatetime = "2.4"
|
||||
pbr = "1.8.0"
|
||||
ply = "3.4"
|
||||
pyOpenSSL = "17.5.0"
|
||||
pyOpenSSL = "25.0.0"
|
||||
pyRFC3339 = "1.0"
|
||||
pyasn1 = "0.4.8"
|
||||
pycparser = "2.14"
|
||||
|
||||
+14
-14
@@ -16,10 +16,10 @@ babel==2.16.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
backports-tarfile==1.2.0 ; python_version >= "3.9" and python_version < "3.12"
|
||||
bcrypt==4.2.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
beautifulsoup4==4.12.3 ; python_version >= "3.9" and python_version < "4.0"
|
||||
boto3==1.35.93 ; python_version >= "3.9" and python_version < "4.0"
|
||||
botocore==1.35.93 ; python_version >= "3.9" and python_version < "4.0"
|
||||
boto3==1.35.99 ; python_version >= "3.9" and python_version < "4.0"
|
||||
botocore==1.35.99 ; python_version >= "3.9" and python_version < "4.0"
|
||||
build==1.2.2.post1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
cachecontrol==0.14.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
cachecontrol==0.14.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
cachetools==5.5.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
certifi==2024.12.14 ; python_version >= "3.9" and python_version < "4.0"
|
||||
cffi==1.17.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -50,7 +50,7 @@ fabric==3.2.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
fastjsonschema==2.21.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
filelock==3.16.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
google-api-core==2.24.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
google-api-python-client==2.157.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
google-api-python-client==2.159.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
google-auth-httplib2==0.2.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
google-auth==2.37.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
googleapis-common-protos==1.66.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -81,7 +81,7 @@ markupsafe==3.0.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
matplotlib-inline==0.1.7 ; python_version >= "3.9" and python_version < "4.0"
|
||||
mccabe==0.7.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
mdurl==0.1.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
more-itertools==10.5.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
more-itertools==10.6.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
msgpack==1.1.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
msrest==0.7.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -98,12 +98,12 @@ pkginfo==1.12.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
platformdirs==4.3.6 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pluggy==1.5.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
ply==3.11 ; python_version >= "3.9" and python_version < "4.0"
|
||||
poetry-core==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
poetry-plugin-export==1.8.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
poetry==2.0.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
poetry-core==2.0.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
poetry-plugin-export==1.9.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
poetry==2.0.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
prompt-toolkit==3.0.48 ; python_version >= "3.9" and python_version < "4.0"
|
||||
proto-plus==1.25.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
protobuf==5.29.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
protobuf==5.29.3 ; python_version >= "3.9" and python_version < "4.0"
|
||||
ptyprocess==0.7.0 ; python_version >= "3.9" and python_version < "4.0" and sys_platform != "win32"
|
||||
pure-eval==0.2.3 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pyasn1-modules==0.4.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -112,7 +112,7 @@ pycparser==2.22 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pygments==2.19.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pylint==3.3.3 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pynacl==1.5.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pyopenssl==24.3.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pyopenssl==25.0.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pyotp==2.9.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pyparsing==3.2.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
pyproject-api==1.8.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -141,7 +141,7 @@ s3transfer==0.10.4 ; python_version >= "3.9" and python_version < "4.0"
|
||||
secretstorage==3.3.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux"
|
||||
semantic-version==2.10.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
setuptools-rust==1.10.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
setuptools==75.7.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
setuptools==75.8.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
shellingham==1.5.4 ; python_version >= "3.9" and python_version < "4.0"
|
||||
six==1.17.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
snowballstemmer==2.2.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -161,7 +161,7 @@ tomli==2.2.1 ; python_version >= "3.9" and python_full_version <= "3.11.0a6"
|
||||
tomlkit==0.13.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
tox==4.23.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
traitlets==5.14.3 ; python_version >= "3.9" and python_version < "4.0"
|
||||
trove-classifiers==2025.1.6.15 ; python_version >= "3.9" and python_version < "4.0"
|
||||
trove-classifiers==2025.1.10.15 ; python_version >= "3.9" and python_version < "4.0"
|
||||
twine==6.0.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
types-cffi==1.16.0.20241221 ; python_version >= "3.9" and python_version < "4.0"
|
||||
types-httplib2==0.22.0.20241221 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -171,7 +171,7 @@ types-python-dateutil==2.9.0.20241206 ; python_version >= "3.9" and python_versi
|
||||
types-pytz==2024.2.0.20241221 ; python_version >= "3.9" and python_version < "4.0"
|
||||
types-pywin32==308.0.0.20241221 ; python_version >= "3.9" and python_version < "4.0"
|
||||
types-requests==2.31.0.6 ; python_version >= "3.9" and python_version < "4.0"
|
||||
types-setuptools==75.6.0.20241223 ; python_version >= "3.9" and python_version < "4.0"
|
||||
types-setuptools==75.8.0.20250110 ; python_version >= "3.9" and python_version < "4.0"
|
||||
types-urllib3==1.26.25.14 ; python_version >= "3.9" and python_version < "4.0"
|
||||
typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
uritemplate==4.1.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
@@ -179,6 +179,6 @@ urllib3==1.26.20 ; python_version >= "3.9" and python_version < "4.0"
|
||||
virtualenv==20.28.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
wcwidth==0.2.13 ; python_version >= "3.9" and python_version < "4.0"
|
||||
wheel==0.45.1 ; python_version >= "3.9" and python_version < "4.0"
|
||||
wrapt==1.17.0 ; python_version >= "3.9" and python_version < "4.0"
|
||||
wrapt==1.17.2 ; python_version >= "3.9" and python_version < "4.0"
|
||||
xattr==1.1.4 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "darwin"
|
||||
zipp==3.21.0 ; python_version >= "3.9" and python_version < "3.12"
|
||||
|
||||
Reference in New Issue
Block a user