Skip to content

Commit

Permalink
Downgrade to python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-fillmore committed May 15, 2024
1 parent 3bbb6fb commit 96bce72
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions index/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ RUN apt-get update \
&& apt-get install -y --no-install-recommends \
virtualenv \
&& mkdir /virtualenv \
&& virtualenv /virtualenv/python3.11 \
&& . /virtualenv/python3.11/bin/activate \
&& virtualenv /virtualenv/python3.10 \
&& . /virtualenv/python3.10/bin/activate \
# Developer convenience
&& apt-get install -y --no-install-recommends \
git \
Expand All @@ -34,8 +34,8 @@ RUN apt-get update \
&& apt-get autoremove \
&& rm -rf /var/lib/{apt,dpkg,cache,log}

ENV VIRTUAL_ENV /virtualenv/python3.11
ENV PATH /virtualenv/python3.11/bin:$PATH
ENV VIRTUAL_ENV /virtualenv/python3.10
ENV PATH /virtualenv/python3.10/bin:$PATH

COPY requirements.txt constraints.txt version.txt /conf/

Expand Down
2 changes: 1 addition & 1 deletion index/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.3.3

0 comments on commit 96bce72

Please sign in to comment.