From 2f27238c2f51fec5425b4430b6209e3f3e317fdb Mon Sep 17 00:00:00 2001 From: Alex Wolf Date: Sun, 24 Nov 2024 09:46:20 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Try=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lamin-project.yaml | 5 ----- noxfile.py | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100644 lamin-project.yaml 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())