From b1f13fc11a9c47e19ae950bfc0051e3df694a3ad Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Mon, 20 Nov 2023 17:53:09 +0000 Subject: [PATCH] Set minimum click to 8.1 (#1272) Closes #1271 Authors: - Jacob Tomlinson (https://github.com/jacobtomlinson) - Lawrence Mitchell (https://github.com/wence-) Approvers: - Benjamin Zaitlen (https://github.com/quasiben) URL: https://github.com/rapidsai/dask-cuda/pull/1272 --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3b02debbe..c5286410a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,13 +13,14 @@ readme = { file = "README.md", content-type = "text/markdown" } authors = [ { name = "NVIDIA Corporation" }, ] -license = { text = "Apache-2.0" } +license = { text = "Apache-2.0." } requires-python = ">=3.9" dependencies = [ + "click >=8.1", "pynvml >=11.0.0,<11.5", "numpy >=1.21", "numba >=0.57", - "pandas >=1.3,<1.6.0dev0", + "pandas >=1.3,<1.6.0.dev0", "rapids-dask-dependency==23.12.*", "zict >=2.0.0", ]