Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2022-03-01 02:23:30 +0300
committerGitHub <noreply@github.com>2022-03-01 02:23:30 +0300
commitc1030c0d40716895f0220a5b236a7b93c223150e (patch)
tree08951d93add53ad90970c04b451df556e23558ae /certbot-dns-cloudflare
parent3c9e690e190e47340aca539f056a4861d8bc8b0b (diff)
Drop Python 3.6 support (#9216)
* Remove deprecation warnings * update ci * update setup.py files * update changelog * update pinnings * update requests and friends * update setuptools pin * update setuptools pin pt2 * update pytz * upgrade pyparsing * upgrade boto deps * update deps and docs * update pyproject.toml comment * remove trailets pin * remove explicit PYTHON_VERSION
Diffstat (limited to 'certbot-dns-cloudflare')
-rw-r--r--certbot-dns-cloudflare/setup.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/certbot-dns-cloudflare/setup.py b/certbot-dns-cloudflare/setup.py
index d7383e416..49e9d3730 100644
--- a/certbot-dns-cloudflare/setup.py
+++ b/certbot-dns-cloudflare/setup.py
@@ -8,7 +8,7 @@ version = '1.24.0.dev0'
install_requires = [
'cloudflare>=1.5.1',
- 'setuptools>=39.0.1',
+ 'setuptools>=41.6.0',
]
if not os.environ.get('SNAP_BUILD'):
@@ -38,7 +38,7 @@ setup(
author="Certbot Project",
author_email='certbot-dev@eff.org',
license='Apache License 2.0',
- python_requires='>=3.6',
+ python_requires='>=3.7',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
@@ -47,7 +47,6 @@ setup(
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',