From 561a86ef3db65a37d0da137177feb8a245430625 Mon Sep 17 00:00:00 2001 From: freqnik Date: Sun, 28 Jan 2024 00:58:54 -0500 Subject: [PATCH] Bump dependencies...Force kivy==2.2.0, google-api-core==2.11.1. Fix deprecated method_whitelist (https://github.com/Tkd-Alex/meile-gui/commit/de3c263c755e7c81e2b72b9ca15d05ad0b92b5f1). --- setup.py | 2 +- src/adapters/HTTPRequests.py | 2 +- src/typedef/konstants.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ffaa009..7990748 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ ], package_dir={"": "src"}, packages=find_packages(where="src"), - install_requires=['kivymd', 'pydash', 'treelib==1.6.1', 'kivyoav', 'pexpect', 'qrcode', 'save_thread_result', 'screeninfo', 'mapview', 'psutil', 'unidecode', 'dnspython','cosmpy==0.8.0','sentinel-protobuf==0.3.1','stripe'], + install_requires=['kivy==2.2.0', 'kivymd', 'pydash','google-api-core==2.11.1', 'treelib==1.6.1', 'kivyoav', 'pexpect', 'qrcode', 'save_thread_result', 'screeninfo', 'mapview', 'psutil', 'unidecode', 'dnspython','cosmpy','sentinel-protobuf==0.3.1','stripe', 'bip_utils'], package_data={'conf': ['config/config.ini'], 'bin' : ['sentinelcli', 'warp-cli', 'warp-svc', 'tun2socks', 'v2ray'], 'awoc' : ['datum/world.json'], 'fonts': ['Roboto-BoldItalic.ttf', 'arial-unicode-ms.ttf', 'mplus-2c-bold.ttf'], 'imgs' : ["ad.png","ae.png","af.png","ag.png", "ai.png","al.png","am.png","ao.png", diff --git a/src/adapters/HTTPRequests.py b/src/adapters/HTTPRequests.py index 8671f6a..7c5fb2e 100755 --- a/src/adapters/HTTPRequests.py +++ b/src/adapters/HTTPRequests.py @@ -29,7 +29,7 @@ def hadapter(self): retries = Retry( total=2, status_forcelist=[429, 500, 502, 503, 504], - method_whitelist=["HEAD", "GET", "OPTIONS"] + allowed_methods=["HEAD", "GET", "OPTIONS"] ) #adapter = HTTPAdapter(max_retries=retries) requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning) diff --git a/src/typedef/konstants.py b/src/typedef/konstants.py index 48cc03c..08e692b 100644 --- a/src/typedef/konstants.py +++ b/src/typedef/konstants.py @@ -72,7 +72,7 @@ class IBCTokens(): #mu_coins = ["tsent", "udvpn", "uscrt", "uosmo", "uatom", "udec"] class TextStrings(): dash = "-" - VERSION = "v0.15.0" + VERSION = "v0.15.0.1" class MeileColors(): DIALOG_BG_COLOR = "#121212"