diff --git a/docs/sources/changelog.rst b/docs/sources/changelog.rst index 8e61497..4b89b31 100644 --- a/docs/sources/changelog.rst +++ b/docs/sources/changelog.rst @@ -3,7 +3,8 @@ Changelog ========= * :release:`1.5.1 <2021-02-05>` -* :bug:`#31` Rename option --remote as it seems to conflict with some plugins. +* :bug:`#31` Rename option --remote into --remote-server as it seems to conflict with some plugins. +* :bug:`#23` Fix requirements minimum version. * :release:`1.5.0 <2020-11-20>` * :feature:`25` Automatically gather CI build information (supported CI are Drone CI, Gitlab CI, Jenkins CI, Travis CI, Circle CI) diff --git a/setup.py b/setup.py index f0cf2f4..5ea8935 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def read(fname): long_description=read('README.rst'), packages=find_packages('.', exclude=('tests', 'example', 'docs')), python_requires='>=3.5', - install_requires=['pytest', 'requests', 'psutil', 'memory_profiler', 'wheel'], + install_requires=['pytest', 'requests', 'psutil>=5.1.0', 'memory_profiler>=0.58', 'wheel'], options={"bdist_wheel": {"universal": False}}, classifiers=[ 'Development Status :: 5 - Production/Stable',