From e2693f0beb4bf4bc0e072a883b0cdd19bfd8897e Mon Sep 17 00:00:00 2001 From: K-Dimentional Tree Date: Mon, 17 Nov 2025 22:48:55 +0300 Subject: [PATCH] pkg_resources replaced with importlib --- ton-http-api/requirements.txt | 2 +- ton-http-api/setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ton-http-api/requirements.txt b/ton-http-api/requirements.txt index 2272a89..9c4a765 100644 --- a/ton-http-api/requirements.txt +++ b/ton-http-api/requirements.txt @@ -6,5 +6,5 @@ requests==2.28.0 ring==0.10.1 uvicorn==0.17.6 gunicorn==20.1.0 -pytonlib==0.0.68 +pytonlib==0.0.69 inject==4.3.1 diff --git a/ton-http-api/setup.py b/ton-http-api/setup.py index 533687a..18fb4c7 100644 --- a/ton-http-api/setup.py +++ b/ton-http-api/setup.py @@ -7,7 +7,7 @@ with open(join(dirname(__file__), "README.md"), "r") as f: long_description = f.read() -version = os.environ.get('TON_HTTP_API_VERSION', '0.0.0') +version = os.environ.get('TON_HTTP_API_VERSION', '2.0.0') setup( author='K-Dimentional Tree', @@ -24,7 +24,7 @@ 'ring==0.10.1', 'uvicorn==0.17.6', 'gunicorn==20.1.0', - 'pytonlib==0.0.68', + 'pytonlib==0.0.69', 'inject==4.3.1' ], package_data={},