Skip to content

Commit

Permalink
chore: minor version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
nkemnitz committed Nov 8, 2023
1 parent cb022a6 commit f88e713
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,6 @@ venv.bak/

# Pyre type checker
.pyre/

# editable installs
src/
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,6 @@ dmypy.json

# Pyre type checker
.pyre/

# editable installs
src/
6 changes: 3 additions & 3 deletions docker/Dockerfile.all.p39
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM pytorch/pytorch:2.0.0-cuda11.7-cudnn8-runtime
FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-runtime

ENV DEBIAN_FRONTEND="noninteractive"

RUN apt-get update \
&& apt-get install -y git build-essential wget curl vim ffmpeg libsm6 libxext6 software-properties-common unixodbc-dev \
&& pip install posix-ipc \
&& pip install --no-cache-dir posix-ipc gevent \
&& apt-get --purge autoremove -y build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
Expand All @@ -22,6 +22,6 @@ RUN apt-get update \
ENV PYTHONPATH /opt/zetta_utils
WORKDIR /opt/zetta_utils
ADD pyproject.toml /opt/zetta_utils/
RUN pip install '.[modules]'
RUN pip install --no-cache-dir '.[modules]'
COPY . /opt/zetta_utils/
RUN zetta --help
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
keywords = ["neuroscience connectomics EM"]
license = { text = "MIT" }
urls = { Homepage = "https://github.com/zettaai/zetta_utils" }
requires-python = ">3.8,<3.11"
requires-python = ">3.8,<3.12"
dependencies = [
"attrs >= 21.3",
"typeguard == 4.1.5",
Expand Down

0 comments on commit f88e713

Please sign in to comment.