Spaces:
Running
on
L4
Running
on
L4
fix: python version
Browse filesFix for memory leak requires features from newer python version.
- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -64,8 +64,8 @@ RUN curl https://pyenv.run | bash \
|
|
64 |
&& chown -R root:users $PYENV_ROOT \
|
65 |
&& chmod -R g+w $PYENV_ROOT
|
66 |
|
67 |
-
RUN pyenv install 3.
|
68 |
-
&& pyenv global 3.
|
69 |
&& pyenv rehash \
|
70 |
&& pip install --no-cache-dir --upgrade setuptools wheel \
|
71 |
&& pip install --no-cache-dir 'detikzify @ git+https://github.com/potamides/DeTikZify' \
|
|
|
64 |
&& chown -R root:users $PYENV_ROOT \
|
65 |
&& chmod -R g+w $PYENV_ROOT
|
66 |
|
67 |
+
RUN pyenv install 3.11 \
|
68 |
+
&& pyenv global 3.11 \
|
69 |
&& pyenv rehash \
|
70 |
&& pip install --no-cache-dir --upgrade setuptools wheel \
|
71 |
&& pip install --no-cache-dir 'detikzify @ git+https://github.com/potamides/DeTikZify' \
|