From 2ec36f0c9d3038023907845bd99013286bb2c726 Mon Sep 17 00:00:00 2001 From: GHadari Date: Tue, 23 Jul 2024 13:02:37 +0300 Subject: [PATCH] new deps for setup.py --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 72463ab..b20750f 100755 --- a/setup.py +++ b/setup.py @@ -5,18 +5,18 @@ def read(path): return (HERE / path).read_text("utf-8").strip() install_requires = [ - 'aiohttp>=3.5.4,<4.0.0', + 'aiohttp>=3.9.5,<4.0.0', 'aiofiles>=0.0.4', - 'pymongo>=3.8.0', + 'pymongo>=4.8.0', 'marshmallow>=2.8,<4', # We have temporary backwards compatibility for 2.X, but also support 3.X - 'cryptography>=2.8', + 'cryptography>=43.0.0', 'colorama>=0.2', 'click', 'importlib-metadata<4' ] setup( name="netunnel", - version='1.0.11', + version='1.0.12', description='A tool to create network tunnels over HTTP/S written in Python 3', long_description="\n\n".join((read("README.md"), read("CHANGES.md"))), long_description_content_type='text/markdown',