Skip to content

Commit

Permalink
misc: update editable install
Browse files Browse the repository at this point in the history
  • Loading branch information
nichmor committed Apr 10, 2024
1 parent 193a80d commit 89f9e32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rattler-build = "*"
conda-build = "*"

[pypi-dependencies]
rattler_build = { path = ".", editable = true}
rattler-build-conda-compat = { path = ".", editable = true}


[feature.test.dependencies]
Expand Down
3 changes: 2 additions & 1 deletion src/rattler_build_conda_compat/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
combine_specs,
)
from conda_build.metadata import get_selectors
from conda_build.config import Config

from rattler_build_conda_compat.loader import parse_recipe_config_file
from rattler_build_conda_compat.utils import find_recipe
Expand All @@ -31,7 +32,7 @@ def __init__(
config=None,
variant=None,
):
self.config = get_or_merge_config(config, variant=variant)
self.config: Config = get_or_merge_config(config, variant=variant)
if os.path.isfile(path):
self._meta_path = path
self._meta_name = os.path.basename(path)
Expand Down

0 comments on commit 89f9e32

Please sign in to comment.