kopia lustrzana https://github.com/halcy/Mastodon.py
Fix tests on 3.8 and 3.7, hopefully
rodzic
abc25a0f3e
commit
95e64ddfec
|
@ -6,7 +6,7 @@ import datetime
|
||||||
import copy
|
import copy
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
from mastodon.errors import MastodonAPIError, MastodonIllegalArgumentError, MastodonNotFoundError
|
from mastodon.errors import MastodonAPIError, MastodonIllegalArgumentError, MastodonNotFoundError, MastodonVersionError
|
||||||
from mastodon.compat import IMPL_HAS_BLURHASH, blurhash
|
from mastodon.compat import IMPL_HAS_BLURHASH, blurhash
|
||||||
from mastodon.internals import Mastodon as Internals
|
from mastodon.internals import Mastodon as Internals
|
||||||
|
|
||||||
|
@ -52,6 +52,8 @@ class Mastodon(Internals):
|
||||||
found_api_version = True
|
found_api_version = True
|
||||||
except MastodonNotFoundError:
|
except MastodonNotFoundError:
|
||||||
pass
|
pass
|
||||||
|
except MastodonVersionError:
|
||||||
|
pass
|
||||||
self.__version_check_tried = True
|
self.__version_check_tried = True
|
||||||
if not found_api_version and self.verify_minimum_version("4.3.0", cached=True):
|
if not found_api_version and self.verify_minimum_version("4.3.0", cached=True):
|
||||||
warnings.warn("Mastodon version is detected as >= 4.3.0, but no API version found. Please report this.")
|
warnings.warn("Mastodon version is detected as >= 4.3.0, but no API version found. Please report this.")
|
||||||
|
|
Ładowanie…
Reference in New Issue