Skip to content

Commit

Permalink
fix: add workaround for django-celery-beat/setuptools breakage
Browse files Browse the repository at this point in the history
I couldn't find a way to restrict just setuptools, so it affects all
packages breaking further upgrades, but at least the Docker image can be
built.

Should be removed once
celery/django-celery-beat#772 is fixed.
  • Loading branch information
nijel committed Jul 29, 2024
1 parent 14a6242 commit 149a43c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ RUN \
uv pip install \
--no-cache-dir \
--compile-bytecode \
--exclude-newer 2024-07-28 \
-r /app/src/requirements.txt \
"https://github.com/translate/translate/archive/master.zip" \
"https://github.com/WeblateOrg/language-data/archive/main.zip" \
Expand All @@ -129,6 +130,7 @@ RUN \
uv pip install \
--no-cache-dir \
--compile-bytecode \
--exclude-newer 2024-07-28 \
-r /app/src/requirements.txt \
"Weblate[$WEBLATE_EXTRAS]==$WEBLATE_VERSION" \
;; \
Expand Down

0 comments on commit 149a43c

Please sign in to comment.