From deeb29bef307971aa70feb5e6609964e35880270 Mon Sep 17 00:00:00 2001 From: profitgrowinginnovator <135007742+profitgrowinginnovator@users.noreply.github.com> Date: Tue, 4 Jul 2023 18:49:00 +0100 Subject: [PATCH] Update __init__.py Make it work with the latest stable version of the IPFS desktop app. --- ipfshttpclient/client/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipfshttpclient/client/__init__.py b/ipfshttpclient/client/__init__.py index 30e1afb..62dbb98 100644 --- a/ipfshttpclient/client/__init__.py +++ b/ipfshttpclient/client/__init__.py @@ -21,7 +21,7 @@ # for it to be considered compatible. VERSION_MINIMUM = "0.5.0" VERSION_BLACKLIST = [] -VERSION_MAXIMUM = "0.9.0" +VERSION_MAXIMUM = "0.20.0" from . import base from . import bitswap @@ -328,4 +328,4 @@ def get_json(self, cid, **kwargs): object Deserialized IPFS JSON object value """ - return self.cat(cid, decoder='json', **kwargs) \ No newline at end of file + return self.cat(cid, decoder='json', **kwargs)