diff --git a/README.md b/README.md index 94c4f3b..22a1277 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,14 @@ In cases where more dynamic customization is sensible, suitable environment vari Any option without a default is required. -| Option | Definition | Type | Default | Supports dynamic modification | -|-----------------------|---------------------------------------------------------------------|----------------|------------------------|-------------------------------| -| `build-backend` | The wrapped build backend (e.g. `setuptools.build_meta`) | string | | N | -| `commit-file` | The file in which to write the git commit hash | string | "" (No file) | N | -| `dependencies-file` | The path to the `dependencies.yaml` file to use | string | "../dependencies.yaml" | Y | -| `matrix-entry` | A `;`-separated list of `=`-delimited key/value pairs | string | "" | Y | -| `require-cuda` | If false, builds will succeed even if nvcc is not available | bool | true | Y | -| `requires` | List of build requirements (in addition to `build-system.requires`) | list[str] | [] | N | +| Option | Definition | Type | Default | Supports dynamic modification | +|-----------------------|---------------------------------------------------------------------|----------------|---------------------|-------------------------------| +| `build-backend` | The wrapped build backend (e.g. `setuptools.build_meta`) | string | | N | +| `commit-file` | The file in which to write the git commit hash | string | "" (No file) | N | +| `dependencies-file` | The path to the `dependencies.yaml` file to use | string | "dependencies.yaml" | Y | +| `matrix-entry` | A `;`-separated list of `=`-delimited key/value pairs | string | "" | Y | +| `require-cuda` | If false, builds will succeed even if nvcc is not available | bool | true | Y | +| `requires` | List of build requirements (in addition to `build-system.requires`) | list[str] | [] | N | ## Outstanding questions diff --git a/rapids_build_backend/config.py b/rapids_build_backend/config.py index 305da0b..4775dfb 100644 --- a/rapids_build_backend/config.py +++ b/rapids_build_backend/config.py @@ -29,7 +29,7 @@ class Config: config_options: "config_options_type" = { "build-backend": (None, False), "commit-file": ("", False), - "dependencies-file": ("../dependencies.yaml", True), + "dependencies-file": ("dependencies.yaml", True), "matrix-entry": ("", True), "require-cuda": (True, True), "requires": (lambda: [], False),