From 14e7c1fb08f718643fd7b6da2213d8c0294409ab Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Mon, 26 Jul 2021 09:41:09 -0700 Subject: [PATCH] fix min version --- python/cudf/cudf/tests/test_cuda_array_interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cudf/cudf/tests/test_cuda_array_interface.py b/python/cudf/cudf/tests/test_cuda_array_interface.py index ecf961f133b..bfddd682fe4 100644 --- a/python/cudf/cudf/tests/test_cuda_array_interface.py +++ b/python/cudf/cudf/tests/test_cuda_array_interface.py @@ -170,7 +170,7 @@ def test_column_from_ephemeral_cupy_try_lose_reference(): def test_cuda_array_interface_pytorch(): - torch = pytest.importorskip("torch") + torch = pytest.importorskip("torch", minversion="1.6.0") if not torch.cuda.is_available(): pytest.skip("need gpu version of pytorch to be installed")