From 6e2d3e58be680cb21beae43853eb7c4038d9db16 Mon Sep 17 00:00:00 2001 From: Chris Charles Date: Fri, 19 Nov 2021 17:31:34 +0000 Subject: [PATCH] Remove pinning of more-itertools --- .../tests/integration/test_profile_integration.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pytest-profiling/tests/integration/test_profile_integration.py b/pytest-profiling/tests/integration/test_profile_integration.py index e8c41713..4f553160 100644 --- a/pytest-profiling/tests/integration/test_profile_integration.py +++ b/pytest-profiling/tests/integration/test_profile_integration.py @@ -12,9 +12,7 @@ def virtualenv(): with VirtualEnv() as venv: test_dir = resource_filename("pytest_profiling", "tests/integration/profile") - # HACK: pin more-itertools to 5.0.0 to keep tests working in PY27 as - # as that's a py3 only release - venv.install_package("more-itertools==5.0.0") + venv.install_package("more-itertools") # Keep pytest version the same as what's running this test to ensure P27 keeps working venv.install_package("pytest=={}".format(get_distribution("pytest").version))