Skip to content

Commit

Permalink
Bump dependencies...Force kivy==2.2.0, google-api-core==2.11.1. Fix d…
Browse files Browse the repository at this point in the history
…eprecated method_whitelist (Tkd-Alex@de3c263).
  • Loading branch information
freQniK committed Jan 28, 2024
1 parent 4fb91fc commit 561a86e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/adapters/HTTPRequests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/typedef/konstants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 561a86e

Please sign in to comment.