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>2021-06-02 00:46:06 +0300
committerGitHub <noreply@github.com>2021-06-02 00:46:06 +0300
commitc372dd8aeef509c193eb1d4615c39b5860b81293 (patch)
treebd5a0cab524532dccaea81080cd83dc12d7bfc4a /certbot-dns-dnsimple
parent01772280c07bbbf90c70298ce31d93f02b2ac577 (diff)
Remove local-oldest-requirements files (#8863)
This is part of https://github.com/certbot/certbot/issues/8787. I got a +1 from our packagers at major distros in https://github.com/certbot/certbot/issues/8761. * remove local-oldest-requirements files * fix tests * fix some oldest tests * list packages on one line in tox.ini * add changelog entry
Diffstat (limited to 'certbot-dns-dnsimple')
-rw-r--r--certbot-dns-dnsimple/local-oldest-requirements.txt3
-rw-r--r--certbot-dns-dnsimple/setup.py9
2 files changed, 5 insertions, 7 deletions
diff --git a/certbot-dns-dnsimple/local-oldest-requirements.txt b/certbot-dns-dnsimple/local-oldest-requirements.txt
deleted file mode 100644
index 1307698d4..000000000
--- a/certbot-dns-dnsimple/local-oldest-requirements.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# Remember to update setup.py to match the package versions below.
-acme[dev]==0.31.0
-certbot[dev]==1.1.0
diff --git a/certbot-dns-dnsimple/setup.py b/certbot-dns-dnsimple/setup.py
index 87584ffa7..5a1b13f44 100644
--- a/certbot-dns-dnsimple/setup.py
+++ b/certbot-dns-dnsimple/setup.py
@@ -6,8 +6,6 @@ from setuptools import setup
version = '1.17.0.dev0'
-# Remember to update local-oldest-requirements.txt when changing the minimum
-# acme/certbot version.
install_requires = [
'setuptools>=39.0.1',
'zope.interface',
@@ -15,8 +13,11 @@ install_requires = [
if not os.environ.get('SNAP_BUILD'):
install_requires.extend([
- 'acme>=0.31.0',
- 'certbot>=1.1.0',
+ # We specify the minimum acme and certbot version as the current plugin
+ # version for simplicity. See
+ # https://github.com/certbot/certbot/issues/8761 for more info.
+ f'acme>={version}',
+ f'certbot>={version}',
])
elif 'bdist_wheel' in sys.argv[1:]:
raise RuntimeError('Unset SNAP_BUILD when building wheels '