From bbf39362bd73d5d02e256eaae98ee136873d267a Mon Sep 17 00:00:00 2001 From: Akhilesh Halageri Date: Wed, 5 Feb 2025 14:20:09 +0000 Subject: [PATCH] adds support for pcg tag to use during installation --- install_zutils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install_zutils.py b/install_zutils.py index 13a392492..adffc0749 100755 --- a/install_zutils.py +++ b/install_zutils.py @@ -611,6 +611,7 @@ def main(): parser.add_argument( "--pcg", action="store_true", default=False, help="Whether or not to install PCG" ) + parser.add_argument("--pcgtag", default="v2.18.3", help="PCG repo tag to use") args = parser.parse_args() @@ -672,7 +673,7 @@ def main(): ) if args.pcg: run_command( - "pip install --no-deps git+https://github.com/CAVEconnectome/PyChunkedGraph.git@v2.18.3", + f"pip install --no-deps git+https://github.com/CAVEconnectome/PyChunkedGraph.git@{args.pcgtag}", "Install PCG package (do deps)", )