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

Clean up dependency lists #241

Merged
merged 3 commits into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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: 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
17 changes: 14 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,16 @@ dependencies:
- output_types: [conda, requirements, pyproject]
packages:
- cuda-python>=11.7.1,<12.0
vyasr marked this conversation as resolved.
Show resolved Hide resolved
- cudf==23.8.*
- dask>=2022.05.2
- distributed>=2022.05.2
- pytest
- pytest-cov
test_python_legate:
common:
- output_types: [conda, requirements, pyproject]
packages:
- dask>=2022.05.2
vyasr marked this conversation as resolved.
Show resolved Hide resolved
- distributed>=2022.05.2
notebooks:
common:
- output_types: conda
packages:
- cudf==23.8.*
vyasr marked this conversation as resolved.
Show resolved Hide resolved
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
3 changes: 0 additions & 3 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +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",
"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