diff --git a/conda/recipes/dask-cuda/meta.yaml b/conda/recipes/dask-cuda/meta.yaml index e94151f92..b8a80e9cb 100644 --- a/conda/recipes/dask-cuda/meta.yaml +++ b/conda/recipes/dask-cuda/meta.yaml @@ -29,9 +29,10 @@ requirements: - python - dask==2022.03.0 - distributed==2022.03.0 - - pynvml>=8.0.3 + - pynvml>=11.0.0 - numpy>=1.16.0 - numba>=0.53.1 + - click==8.0.4 test: imports: diff --git a/requirements.txt b/requirements.txt index 551877e17..a5ec2e407 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ distributed==2022.03.0 pynvml>=11.0.0 numpy>=1.16.0 numba>=0.53.1 +click==8.0.4 diff --git a/setup.py b/setup.py index 6364a595e..976578953 100644 --- a/setup.py +++ b/setup.py @@ -34,11 +34,11 @@ "Topic :: Scientific/Engineering", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], packages=find_packages(exclude=["docs", "tests", "tests.*", "docs.*"]), - python_requires=">=3.7", + python_requires=">=3.8", install_requires=open("requirements.txt").read().strip().split("\n"), entry_points=""" [console_scripts]