Skip to content
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
1 change: 0 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ concurrency:

jobs:
conda-python-build:
needs: [checks]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
with:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.2
31 changes: 31 additions & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Dependency list for https://github.com/rapidsai/dependency-file-generator
files:
py_run_rapids_cli:
output: pyproject
pyproject_dir: .
extras:
table: project
includes:
- run_python
py_test_rapids_cli:
output: pyproject
pyproject_dir: .
extras:
table: project.optional-dependencies
key: test
includes:
- test_python
test_python:
output: none
includes:
Expand Down Expand Up @@ -39,6 +54,22 @@ dependencies:
- matrix:
packages:
- python>=3.10,<3.14
run_python:
common:
- output_types: [conda, requirements, pyproject]
packages:
- nvidia-ml-py>=12.0
- packaging
- psutil
- rich
- rich-click
- output_types: [conda]
packages:
- importlib-metadata >=4.13.0
# "python_version" specifier is a 'pip'-specific thing, so this needs its own group
- output_types: [pyproject, requirements]
packages:
- importlib-metadata >= 4.13.0; python_version < '3.12'
test_python:
common:
- output_types: [conda, requirements, pyproject]
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"importlib_metadata >= 4.13.0; python_version < '3.12' ",
"importlib-metadata >= 4.13.0; python_version < '3.12'",
"nvidia-ml-py>=12.0",
"packaging",
"psutil",
"rich",
"rich-click",
]
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.

[project.optional-dependencies]
test = [
"pytest",
]
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.

[project.scripts]
rapids = "rapids_cli.cli:rapids"
Expand Down