diff --git a/lamin-project.yaml b/lamin-project.yaml deleted file mode 100644 index c44aa16..0000000 --- a/lamin-project.yaml +++ /dev/null @@ -1,5 +0,0 @@ -project_name: bionty -description: Basic biological entities -project_slug: bionty -repository_name: bionty -package_name: bionty diff --git a/noxfile.py b/noxfile.py index 91b7de5..af94ff4 100644 --- a/noxfile.py +++ b/noxfile.py @@ -16,7 +16,7 @@ def lint(session: nox.Session) -> None: @nox.session @nox.parametrize("group", ["bionty-unit", "bionty-docs"]) def build(session: nox.Session, group: str): - branch = "main" if IS_PR else "main" # point back to "release" + branch = "main" if IS_PR else "bionty" # point back to "release" install_lamindb(session, branch=branch) session.run(*"uv pip install --system -e .[dev]".split())