Pin pluggy to <1.0 (#5239)

Pin pluggy to <1.0
This commit is contained in:
Bruno Oliveira 2019-05-09 11:03:36 -03:00 committed by GitHub
commit 803d68847b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1,3 @@
Pin ``pluggy`` to ``< 1.0`` so we don't update to ``1.0`` automatically when
it gets released: there are planned breaking changes, and we want to ensure
pytest properly supports ``pluggy 1.0``.

View File

@ -13,7 +13,7 @@ INSTALL_REQUIRES = [
'funcsigs>=1.0;python_version<"3.0"', 'funcsigs>=1.0;python_version<"3.0"',
'pathlib2>=2.2.0;python_version<"3.6"', 'pathlib2>=2.2.0;python_version<"3.6"',
'colorama;sys_platform=="win32"', 'colorama;sys_platform=="win32"',
"pluggy>=0.11", "pluggy>=0.9,!=0.10,<1.0",
] ]