Skip to content

Commit

Permalink
#23 - Fix requirements minimum version (#33)
Browse files Browse the repository at this point in the history
* #23 - Fix requirements minimum version
  • Loading branch information
js-dieu committed Feb 5, 2021
1 parent d22a6e7 commit fe65086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/sources/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit fe65086

Please sign in to comment.