-
Notifications
You must be signed in to change notification settings - Fork 27
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
Add new conda environments #120
base: branch-0.35
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,34 @@ | ||||||||||||||||||||||||||||||||
# This file is generated by `rapids-dependency-file-generator`. | ||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All environment files need to be generated by The failure in pre-commit is because This is how you tell it to generate a given environment file: Lines 3 to 17 in 4464ca9
For example, you might want to add a section like this for the C++ dependency list.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks Bradley, this is helpful. I'd still like to trim that more though, for example the above will result in:
That include a bunch of things we don't need: Additionally, this is supposed to be valid for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's currently no way to drop extra channels from the generated files. You can file an issue to rapids-dependency-file-generator if you have a proposal for how the If you depend only on architecture-agnostic packages, you can just drop the arch from the
|
||||||||||||||||||||||||||||||||
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. | ||||||||||||||||||||||||||||||||
channels: | ||||||||||||||||||||||||||||||||
- dask/label/dev | ||||||||||||||||||||||||||||||||
- conda-forge | ||||||||||||||||||||||||||||||||
dependencies: | ||||||||||||||||||||||||||||||||
- c-compiler | ||||||||||||||||||||||||||||||||
- cloudpickle | ||||||||||||||||||||||||||||||||
- cmake>=3.26.4 | ||||||||||||||||||||||||||||||||
- cxx-compiler | ||||||||||||||||||||||||||||||||
- cython>=3.0.0 | ||||||||||||||||||||||||||||||||
- dask | ||||||||||||||||||||||||||||||||
- distributed | ||||||||||||||||||||||||||||||||
- fmt>=9.1.0,<10 | ||||||||||||||||||||||||||||||||
- gmock>=1.13.0 | ||||||||||||||||||||||||||||||||
- gtest>=1.13.0 | ||||||||||||||||||||||||||||||||
- libtool | ||||||||||||||||||||||||||||||||
- ninja | ||||||||||||||||||||||||||||||||
- numba>=0.57.1 | ||||||||||||||||||||||||||||||||
- numpy>=1.21 | ||||||||||||||||||||||||||||||||
- pip | ||||||||||||||||||||||||||||||||
- pkg-config | ||||||||||||||||||||||||||||||||
- pre-commit | ||||||||||||||||||||||||||||||||
- pytest | ||||||||||||||||||||||||||||||||
- pytest-asyncio | ||||||||||||||||||||||||||||||||
- pytest-rerunfailures | ||||||||||||||||||||||||||||||||
- python>=3.9,<3.11 | ||||||||||||||||||||||||||||||||
- scikit-build>=0.13.1 | ||||||||||||||||||||||||||||||||
- setuptools | ||||||||||||||||||||||||||||||||
- spdlog>=1.11.0,<1.12 | ||||||||||||||||||||||||||||||||
- tomli | ||||||||||||||||||||||||||||||||
- ucx | ||||||||||||||||||||||||||||||||
- wheel | ||||||||||||||||||||||||||||||||
name: ucxx |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This file is generated by `rapids-dependency-file-generator`. | ||
# To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`. | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- c-compiler | ||
- cmake>=3.26.4 | ||
- cxx-compiler | ||
- fmt>=9.1.0,<10 | ||
- gmock>=1.13.0 | ||
- gtest>=1.13.0 | ||
- libtool | ||
- ninja | ||
- pre-commit | ||
- spdlog>=1.11.0,<1.12 | ||
- ucx | ||
name: libucxx |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should match the name from
-n ucxx
above.