Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve build issues / consistency with conda-forge packages #883

Merged
merged 6 commits into from
Mar 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion conda/recipes/dask-cuda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ distributed==2022.03.0
pynvml>=11.0.0
numpy>=1.16.0
numba>=0.53.1
click==8.0.4
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down