From 94333e47b446872149fcf2fbdcfefe66afb09ed1 Mon Sep 17 00:00:00 2001 From: Alex Wolf Date: Fri, 11 Aug 2023 23:06:58 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Fix=20make=5Fnew=5Fversion=5Fof?= =?UTF-8?q?=20to=20is=5Fnew=5Fversion=5Fof=20(#51)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 📝 Fix make_new_version_of to is_new_version_of * 💚 Fix --- noxfile.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/noxfile.py b/noxfile.py index f2b4a05a..6a2c605b 100644 --- a/noxfile.py +++ b/noxfile.py @@ -128,14 +128,14 @@ def pull_artifacts(session): @nox.session def docs(session): session.run(*"pip install git+https://github.com/laminlabs/bionty".split()) - # session.run( - # *"pip install --no-deps git+https://github.com/laminlabs/lnschema-bionty" - # .split() - # ) - session.run(*"pip install lnschema_bionty==0.29.2".split()) - # session.run( - # *"pip install --no-deps git+https://github.com/laminlabs/lnschema-core".split() # noqa - # ) + session.run( + *"pip install --no-deps git+https://github.com/laminlabs/lnschema-bionty" + .split() + ) + # session.run(*"pip install lnschema_bionty==0.29.2".split()) + session.run( + *"pip install --no-deps git+https://github.com/laminlabs/lnschema-core".split() # noqa + ) session.run(*"pip install git+https://github.com/laminlabs/lamindb".split()) login_testuser1(session) session.run(*"lamin init --storage ./docsbuild --schema bionty".split())