-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dask metapackages and documentation
- Loading branch information
Showing
4 changed files
with
80 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
The license of this package is a combination of the dependent packages contained herein. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Copyright (c) 2023, NVIDIA CORPORATION. | ||
|
||
package: | ||
- name: rapids_dask_dependency | ||
version: 23.10.00.0 | ||
|
||
build: | ||
number: 0 | ||
noarch: generic | ||
|
||
requirements: | ||
run: | ||
- dask >=2023.7.1 | ||
- dask-core >=2023.7.1 | ||
- distributed >=2023.7.1 | ||
|
||
about: | ||
home: https://rapids.ai/ | ||
license: Custom | ||
license_file: conda/recipes/rapids_dask_dependency/LICENSE | ||
summary: Standardized dask dependency pinnings across RAPIDS | ||
description: | | ||
This metapackage encodes the standard Dask version pinning used for a | ||
particular release of RAPIDS. The metapackage adds an extra release segment | ||
to the RAPIDS CalVer to allow pinnings in this metapackage to be updated | ||
for a given release and automatically propagate to its dependents. | ||
doc_url: https://docs.rapids.ai/ | ||
dev_url: https://github.com/rapidsai/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright (c) 2023, NVIDIA CORPORATION. | ||
|
||
[project] | ||
name = "rapids_dask_dependency" | ||
version = "23.10.00.0" | ||
description = "Dask and distributed version pinning for RAPIDS" | ||
dependencies = [ | ||
"dask @ git+https://github.com/dask/dask.git@main", | ||
"distributed @ git+https://github.com/dask/distributed.git@main", | ||
] |