diff --git a/requirements.txt b/requirements.txt index f214917..dcc377a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -aiohttp~=3.9 -pycryptodome~=3.19 +aiohttp>=3.0 +pycryptodome>=3.18 diff --git a/requirements_dev.txt b/requirements_dev.txt index f3f943d..153a20d 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,4 +1,5 @@ -black~=23.11 -flake8~=6.1 -mypy~=1.7 -pylint~=3.0 +black>=22.12 +flake8>=6.0 +mypy>=0.991 +pylint>=2.15 +setuptools>=62.3 diff --git a/setup.py b/setup.py index 014888e..171c47e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="speedport-api", - version="0.5.7", + version="0.5.8", author="Andre Basche", description="Control Telekom Speedport routers with Python", long_description=long_description, @@ -21,7 +21,7 @@ packages=find_packages(), include_package_data=True, python_requires=">=3.8", - install_requires=["aiohttp~=3.9", "pycryptodome~=3.19"], + install_requires=["aiohttp>=3.8", "pycryptodome>=3.18"], classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console",