diff --git a/pyproject.toml b/pyproject.toml index fdece107..6e92a21a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ python = "^3.5" redis = "^3.5.3" psutil = "^5.7.0" packaging = "^20.4" -ospd = {git = "https://github.com/greenbone/ospd.git", branch = "ospd-20.08"} +ospd = "^20.8" [tool.poetry.dev-dependencies] pylint = "^2.5.3" diff --git a/setup.py b/setup.py index 067f7428..c5b5b2eb 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ 'Programming Language :: Python :: 3.8', ], python_requires='>=3.5', - install_requires=['ospd>=2.0.0', 'redis>=3.0.1', 'psutil', 'packaging'], + install_requires=['ospd>=20.8.0', 'redis>=3.0.1', 'psutil', 'packaging'], entry_points={'console_scripts': ['ospd-openvas=ospd_openvas.daemon:main']}, test_suite="tests", )