Skip to content

Commit 4046c0c

Browse files
committed
chore: install specific uv version for test Dockerfile
It is necessary to install specific uv version – the same that is specified in pyproject.toml. This is just a workaround to unblock PR. It is should be redesign eventually to read the information about versions form pyproject.toml
1 parent d693dc0 commit 4046c0c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ RUN set -x \
2929
# install tox
3030
ENV PYTHON_TOX_VERSION=4.30.0
3131
ENV PYTHON_TOX_UV_VERSION=1.28.0
32+
# install uv
33+
ENV PYTHON_UV_VERSION=0.9.5
3234
RUN set -x \
33-
&& pip3 install uv tox==${PYTHON_TOX_VERSION} tox-uv==${PYTHON_TOX_UV_VERSION}\
35+
&& pip3 install uv==${PYTHON_UV_VERSION} tox==${PYTHON_TOX_VERSION} tox-uv==${PYTHON_TOX_UV_VERSION}\
3436
&& true
3537

3638
COPY .docker/entrypoint.sh /entrypoint.sh

0 commit comments

Comments
 (0)