remove python 3.8 support (#10077)

fixes https://github.com/certbot/certbot/issues/10035. you can compare
this to the PR that did this for python 3.7 at
https://github.com/certbot/certbot/pull/9792

i agree with erica's comment at
https://github.com/certbot/certbot/issues/10035#issuecomment-2452212686,
but felt this PR was already getting pretty large so i did that in a
second PR at https://github.com/certbot/certbot/pull/10076
This commit is contained in:
Brad Warren
2024-12-04 14:55:20 -08:00
committed by GitHub
parent bcbc3dd484
commit 087cb4d1f4
38 changed files with 329 additions and 398 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ authors = ["Certbot Project"]
license = "Apache License 2.0"
[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
# workaround for: https://github.com/python-poetry/poetry-plugin-export/issues/183
urllib3 = ">=1.25.4,<1.27"
+2 -2
View File
@@ -10,7 +10,7 @@ license = "Apache License 2.0"
[tool.poetry.dependencies]
# The Python version here should be kept in sync with the one used in our
# oldest tests in tox.ini.
python = "<3.9 >= 3.8"
python = "<3.10 >= 3.9"
# Local dependencies
# Any local packages that have dependencies on other local packages must be
@@ -55,7 +55,7 @@ configobj = "5.0.6"
cryptography = "3.2.1"
distro = "1.0.1"
dns-lexicon = "3.15.1"
dnspython = "1.15.0"
dnspython = "2.6.1"
funcsigs = "0.4"
google-api-python-client = "1.6.5"
google-auth = "2.16.0"