forked from pool/python-dns-lexicon
- Update to Version 3.5.3
* Handle large number of hosted zones in route53 provider
- Changelog for 3.5.2
* Fix domains in "lock" state with joker provider
- Changelog for 3.5.1
* Add the Joker.com provider
* Add environment variable TLDEXTRACT_CACHE_PATH to configure a
tldextract cache custom location for Lexicon
* Old environment variable TLDEXTRACT_CACHE_FILE is deprecated
and will be removed in a future release
- Changelog for 3.5.0
* Avoid installation problems with setuptools==50
* Migrating codebase to Python 3.6+ specific features (Lexicon
will explicitly break on older versions now)
* Fix Easyname provider to work with their new website
- Changelog for 3.4.5
* Add pagination support to Google Cloud DNS provider (#577)
* Add official support to Python 3.9
* Add SSHFP record support to CloudFlare provider (library only)
(#612)
- Changelog for 3.4.4
* Fix Gandi provider to use the new LiveDNS API URL
- Changelog for 3.4.3
* Improve versions constraints by declaring latest major versions
known to work with Lexicon
- Changelog for 3.4.2
* Relax versions constraints on Lexicon dependencies until there
is a real need.
- Changelog for 3.4.1
* Add the Njalla provider
OBS-URL: https://build.opensuse.org/request/show/867338
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dns-lexicon?expand=0&rev=38
27 lines
836 B
Diff
27 lines
836 B
Diff
Index: lexicon-3.5.3/lexicon/tests/test_library.py
|
|
===================================================================
|
|
--- lexicon-3.5.3.orig/lexicon/tests/test_library.py
|
|
+++ lexicon-3.5.3/lexicon/tests/test_library.py
|
|
@@ -12,7 +12,7 @@ import importlib
|
|
import pkgutil
|
|
from types import ModuleType
|
|
|
|
-import mock
|
|
+from unittest import mock
|
|
import pytest
|
|
|
|
from lexicon.config import ConfigResolver
|
|
Index: lexicon-3.5.3/lexicon/tests/providers/test_auto.py
|
|
===================================================================
|
|
--- lexicon-3.5.3.orig/lexicon/tests/providers/test_auto.py
|
|
+++ lexicon-3.5.3/lexicon/tests/providers/test_auto.py
|
|
@@ -2,7 +2,7 @@
|
|
import socket
|
|
from unittest import TestCase
|
|
|
|
-import mock
|
|
+from unittest import mock
|
|
import pytest
|
|
|
|
from lexicon.providers.auto import _get_ns_records_domains_for_domain
|