Skip to content

Commit fe65086

Browse files
authored
#23 - Fix requirements minimum version (#33)
* #23 - Fix requirements minimum version
1 parent d22a6e7 commit fe65086

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/sources/changelog.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ Changelog
33
=========
44

55
* :release:`1.5.1 <2021-02-05>`
6-
* :bug:`#31` Rename option --remote as it seems to conflict with some plugins.
6+
* :bug:`#31` Rename option --remote into --remote-server as it seems to conflict with some plugins.
7+
* :bug:`#23` Fix requirements minimum version.
78

89
* :release:`1.5.0 <2020-11-20>`
910
* :feature:`25` Automatically gather CI build information (supported CI are Drone CI, Gitlab CI, Jenkins CI, Travis CI, Circle CI)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def read(fname):
4040
long_description=read('README.rst'),
4141
packages=find_packages('.', exclude=('tests', 'example', 'docs')),
4242
python_requires='>=3.5',
43-
install_requires=['pytest', 'requests', 'psutil', 'memory_profiler', 'wheel'],
43+
install_requires=['pytest', 'requests', 'psutil>=5.1.0', 'memory_profiler>=0.58', 'wheel'],
4444
options={"bdist_wheel": {"universal": False}},
4545
classifiers=[
4646
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)