From 58dfdfaec58cc7a4e07d516b4b0b1716a80e4d62 Mon Sep 17 00:00:00 2001 From: Lorenz Diener Date: Thu, 14 Dec 2017 00:37:19 +0100 Subject: [PATCH] Add supported version in a place where python can read it --- mastodon/Mastodon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index f6551f0..8aad946 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py @@ -69,7 +69,8 @@ class Mastodon: """ __DEFAULT_BASE_URL = 'https://mastodon.social' __DEFAULT_TIMEOUT = 300 - + __SUPPORTED_MASTODON_VERSION = "2.1.0" + ### # Registering apps ###