Skip to content

Commit

Permalink
adds support for pcg tag to use during installation
Browse files Browse the repository at this point in the history
  • Loading branch information
akhileshh committed Feb 5, 2025
1 parent dd1dc30 commit bbf3936
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install_zutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down Expand Up @@ -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)",
)

Expand Down

0 comments on commit bbf3936

Please sign in to comment.