Skip to content

Commit

Permalink
Down to 0.31 for buster compat
Browse files Browse the repository at this point in the history
  • Loading branch information
reneluria committed Jan 25, 2021
1 parent 4abf3dd commit 4945a51
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion certbot_dns_infomaniak/dns_infomaniak.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
from certbot import errors
from certbot import interfaces
from certbot.plugins import dns_common
import certbot.compat.os as os
try:
import certbot.compat.os as os
except ImportError:
import os

logger = logging.getLogger(__name__)

Expand Down
5 changes: 4 additions & 1 deletion certbot_dns_infomaniak/dns_infomaniak_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
import requests_mock

from certbot.errors import PluginError
import certbot.compat.os as os
try:
import certbot.compat.os as os
except ImportError:
import os
from certbot.plugins import dns_test_common
from certbot.plugins.dns_test_common import DOMAIN
from certbot.tests import util as test_util
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
certbot>=0.34.0
certbot>=0.31.0
setuptools
requests
mock
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version = "0.0.0"

install_requires = [
"certbot>=0.34.0",
"certbot>=0.31.0",
"setuptools",
"requests",
"mock",
Expand Down

0 comments on commit 4945a51

Please sign in to comment.