diff --git a/requirements.txt b/requirements.txt index 8952c33..c37d10e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -aiohttp==3.9.5 +aiohttp==3.7.3 aiofiles==0.4.0 pymongo==3.11.0 # We need the bson packaged provided by pymongo marshmallow==2.21.0 -cryptography==42.0.8 +cryptography==3.2.1 colorama==0.4.4 click==7.0 -importlib-metadata==3.10.1 +importlib-metadata==3.10.1 \ No newline at end of file diff --git a/setup.py b/setup.py index 8904fb7..72463ab 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.9.5', + 'aiohttp>=3.5.4,<4.0.0', 'aiofiles>=0.0.4', 'pymongo>=3.8.0', 'marshmallow>=2.8,<4', # We have temporary backwards compatibility for 2.X, but also support 3.X - 'cryptography==42.0.8', + 'cryptography>=2.8', 'colorama>=0.2', 'click', 'importlib-metadata<4' ] setup( name="netunnel", - version='1.0.12', + version='1.0.11', 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',