Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(pcg): graph_tool import; remove ununed line in dockerfiles #876

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docker/Dockerfile.all
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ ENV DEBIAN_FRONTEND="noninteractive"
RUN rm -f /etc/apt/apt.conf.d/docker-clean; echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
COPY pyproject.toml /opt/zetta_utils/
COPY install_zutils.py /opt/zetta_utils/
COPY compile_waterz /opt/zetta_utils/
ENV PYTHONPATH=/opt/zetta_utils
WORKDIR /opt/zetta_utils

Expand Down
1 change: 0 additions & 1 deletion docker/Dockerfile.all_pcg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ ENV DEBIAN_FRONTEND="noninteractive"
RUN rm -f /etc/apt/apt.conf.d/docker-clean; echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
COPY pyproject.toml /opt/zetta_utils/
COPY install_zutils.py /opt/zetta_utils/
COPY compile_waterz /opt/zetta_utils/
ENV PYTHONPATH=/opt/zetta_utils
WORKDIR /opt/zetta_utils

Expand Down
7 changes: 6 additions & 1 deletion zetta_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# pylint: disable=unused-import, import-outside-toplevel
# pylint: disable=unused-import, import-outside-toplevel, broad-exception-caught, import-error
"""Zetta AI Computational Connectomics Toolkit."""
import os
import sys

try:
import graph_tool
except Exception:
...

from . import log, typing, parsing, builder, common, constants
from . import geometry, distributions, layer, ng
from .log import get_logger
Expand Down
Loading