Skip to content

Commit

Permalink
Changing python packages version to support click higher than 7.2 (#10)
Browse files Browse the repository at this point in the history
* Changing python packages version to support click higher than 7.2

* Changing colorama, click and pymongo version

* forgot a '

* limiting marshmallow version to lower from 3.12.2

Co-authored-by: or.z <or.z@claroty.com>
  • Loading branch information
OrZehavi and or.z committed Jul 18, 2021
1 parent ff04534 commit ca86b21
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
#!/usr/bin/env python3

from setuptools import setup, find_packages

import pathlib

HERE = pathlib.Path(__file__).parent


def read(path):
return (HERE / path).read_text("utf-8").strip()


install_requires = [
'aiohttp>=3.5.4,<4.0.0',
'aiofiles>=0.0.4',
'pymongo<=3.11.2',
'marshmallow<4.0.0', # We have temporary backwards compatibility for 2.X, but also support 3.X
'pymongo>=3.8.0',
'marshmallow<=3.12.2', # We have temporary backwards compatibility for 2.X, but also support 3.X
'cryptography>=2.8',
'colorama<=0.4.4',
'click<=7.2',
'colorama>=0.2',
'click',
'importlib-metadata<=3.4.0'
]

setup(
name="netunnel",
version='1.0.5',
Expand All @@ -48,4 +40,4 @@ def read(path):
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)
)

0 comments on commit ca86b21

Please sign in to comment.