From 45c003dc70790f02b044fb06e5f95679df6600de Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 18 Apr 2022 13:39:37 -0500 Subject: [PATCH] Fix list of testing requirements in setup.py. (#10678) The list of testing requirements was missing a comma in `setup.py`. This fixes it. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) URL: https://github.com/rapidsai/cudf/pull/10678 --- python/cudf/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/cudf/setup.py b/python/cudf/setup.py index 2ec9909dd6f..a447fcfe027 100644 --- a/python/cudf/setup.py +++ b/python/cudf/setup.py @@ -47,7 +47,8 @@ "pytest", "pytest-benchmark", "pytest-xdist", - "hypothesis" "mimesis", + "hypothesis", + "mimesis", "fastavro>=0.22.9", "python-snappy>=0.6.0", "pyorc",