diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e00f2b3..e27ac02 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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: diff --git a/VERSION b/VERSION index 17e51c3..d917d3e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.1 +0.1.2 diff --git a/dependencies.yaml b/dependencies.yaml index 7af2995..32252f6 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -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: @@ -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] diff --git a/pyproject.toml b/pyproject.toml index 42010b2..b39a714 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"