Skip to content

Commit

Permalink
Clean up dependency lists (#241)
Browse files Browse the repository at this point in the history
cudf is not actually used anywhere in tests, only in a single notebook. Similarly, dask is only used by legate tests

Authors:
  - Vyas Ramasubramani (https://github.com/vyasr)

Approvers:
  - Bradley Dice (https://github.com/bdice)
  - https://github.com/jakirkham
  - Lawrence Mitchell (https://github.com/wence-)
  - Ray Douglass (https://github.com/raydouglass)

URL: #241
  • Loading branch information
vyasr authored Jun 20, 2023
1 parent c2b02b2 commit 2cc13de
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
3 changes: 0 additions & 3 deletions ci/release/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ for DEP in "${DEPENDENCIES[@]}"; do
for FILE in dependencies.yaml conda/environments/*.yaml; do
sed_runner "/-.* ${DEP}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}.*/g" ${FILE}
done
for FILE in python/pyproject.toml legate/pyproject.toml; do
sed_runner "/\"${DEP}==/ s/==.*\"/==${NEXT_SHORT_TAG_PEP440}.*\"/g" ${FILE}
done
done

# CI files
Expand Down
18 changes: 15 additions & 3 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ files:
- checks
- cudatoolkit
- docs
- notebooks
- py_version
- run
- test_python
- test_python_legate
test_cpp:
output: none
includes:
Expand Down Expand Up @@ -78,6 +80,7 @@ files:
key: test
includes:
- test_python
- test_python_legate
channels:
- rapidsai
- rapidsai-nightly
Expand Down Expand Up @@ -219,8 +222,17 @@ dependencies:
- output_types: [conda, requirements, pyproject]
packages:
- cuda-python>=11.7.1,<12.0
- cudf==23.8.*
- dask>=2022.05.2
- distributed>=2022.05.2
- &dask dask>=2022.05.2
- pytest
- pytest-cov
test_python_legate:
common:
- output_types: [conda, requirements, pyproject]
packages:
- *dask
- distributed>=2022.05.2
notebooks:
common:
- output_types: conda
packages:
- cudf==23.8.*
1 change: 0 additions & 1 deletion legate/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ classifiers = [
[project.optional-dependencies]
test = [
"cuda-python>=11.7.1,<12.0",
"cudf==23.8.*",
"dask>=2022.05.2",
"distributed>=2022.05.2",
"pytest",
Expand Down
2 changes: 0 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ classifiers = [
[project.optional-dependencies]
test = [
"cuda-python>=11.7.1,<12.0",
"cudf==23.8.*",
"dask>=2022.05.2",
"distributed>=2022.05.2",
"pytest",
"pytest-cov",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../dependencies.yaml and run `rapids-dependency-file-generator`.
Expand Down

0 comments on commit 2cc13de

Please sign in to comment.