Skip to content

Commit

Permalink
Update pluggy pin to pluggy>=0.5,<0.7 after pluggy-0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus authored Nov 24, 2017
1 parent 95de11a commit 0de1a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def main():
# if _PYTEST_SETUP_SKIP_PLUGGY_DEP is set, skip installing pluggy;
# used by tox.ini to test with pluggy master
if '_PYTEST_SETUP_SKIP_PLUGGY_DEP' not in os.environ:
install_requires.append('pluggy>=0.5,<0.6')
install_requires.append('pluggy>=0.5,<0.7')
if has_environment_marker_support():
extras_require[':python_version<"3.0"'] = ['funcsigs']
extras_require[':sys_platform=="win32"'] = ['colorama']
Expand Down

2 comments on commit 0de1a65

@gaborbernat
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nicoddemus why the upper dependency limit?

@nicoddemus
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As a precaution because technically being version 0.X the api might break between minor releases

Please sign in to comment.