Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install uv
uv pip install --system -r requirements/local.txt
uv pip install --system -r requirements/local.txt --prerelease=allow
# https://github.com/pytest-dev/pytest-github-actions-annotate-failures/pull/68 isn't yet in a release
uv pip install --system git+https://github.com/pytest-dev/pytest-github-actions-annotate-failures.git@6e66cd895fe05cd09be8bad58f5d79110a20385f

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest_next_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install uv
uv pip install --system -r requirements/local.txt
uv pip install --system -r requirements/local.txt --prerelease=allow
# https://github.com/pytest-dev/pytest-github-actions-annotate-failures/pull/68 isn't yet in a release
uv pip install --system git+https://github.com/pytest-dev/pytest-github-actions-annotate-failures.git@6e66cd895fe05cd09be8bad58f5d79110a20385f

Expand Down
2 changes: 1 addition & 1 deletion compose/local/django/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apt-get update \
# Requirements are installed here to ensure they will be cached.
COPY ./requirements /requirements
RUN pip install uv
RUN uv pip install --system -r /requirements/local.txt
RUN uv pip install --system -r /requirements/local.txt --prerelease=allow

COPY ./compose/production/django/entrypoint /entrypoint
RUN sed -i 's/\r$//g' /entrypoint
Expand Down
2 changes: 1 addition & 1 deletion compose/local/docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN apt-get update \
# Only re-run the pip install if these files have changed
COPY requirements/base.txt requirements/local.txt requirements/production.txt /app/requirements/
RUN pip install uv
RUN uv pip install --system -r /app/requirements/local.txt -r /app/requirements/production.txt
RUN uv pip install --system -r /app/requirements/local.txt -r /app/requirements/production.txt --prerelease=allow

COPY . /app/

Expand Down
2 changes: 1 addition & 1 deletion compose/local/translator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-slim-buster
FROM python:3.9-slim-bookworm

ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
2 changes: 1 addition & 1 deletion requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ watchgod==0.8.2 # https://github.com/samuelcolvin/watchgod
# ------------------------------------------------------------------------------
django-stubs==1.11.0 # https://github.com/typeddjango/django-stubs
pytest-sugar==0.9.6 # https://github.com/Frozenball/pytest-sugar
behave-django==1.4.0 # https://github.com/behave/behave-django
behave-django==1.7.0 # https://github.com/behave/behave-django

# Documentation
# ------------------------------------------------------------------------------
Expand Down
Loading