diff --git a/src/python/pants/backend/python/subsystems/pytest.py b/src/python/pants/backend/python/subsystems/pytest.py index 0c4bb289c69..adebbdfc703 100644 --- a/src/python/pants/backend/python/subsystems/pytest.py +++ b/src/python/pants/backend/python/subsystems/pytest.py @@ -34,13 +34,10 @@ def register_options(cls, register): "--pytest-plugins", type=list, advanced=True, - default=[ - "pytest-cov>=2.10.1,<2.11", - # NB: zipp has frequently destabilized builds due to floating transitive versions - # under pytest. - "zipp==2.1.0", - ], - help="Requirement strings for any plugins or additional requirements you'd like to use.", + default=["pytest-cov>=2.10.1,<2.11"], + help=( + "Requirement strings for any plugins or additional requirements you'd like to use." + ), ) register( "--timeouts",