Skip to content
Draft
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
113 changes: 55 additions & 58 deletions compute_worker/uv.lock

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions documentation/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions packaging/container/Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM almalinux:10-minimal
FROM almalinux:10-minimal AS builder

RUN microdnf install -y tar gzip
RUN microdnf update -y --nodocs && microdnf install -y tar gzip && microdnf clean all

FROM scratch

COPY --from=builder / /

ENV PYTHONUNBUFFERED=1

Expand Down
8 changes: 6 additions & 2 deletions packaging/container/Containerfile.compute_worker
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM almalinux:10-minimal
FROM almalinux:10-minimal AS builder

RUN microdnf install -y tar gzip
RUN microdnf update -y --nodocs && microdnf install -y tar gzip && microdnf clean all

FROM scratch

COPY --from=builder / /

# This makes output not buffer and return immediately, nice for seeing results in stdout
ENV PYTHONUNBUFFERED=1
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
]
dependencies = [
"django==5.2.14",
"django==5.2.15",
"django-oauth-toolkit==1.6.3",
"social-auth-core==4.8.5",
"social-auth-app-django==5.6.0",
Expand Down Expand Up @@ -51,7 +51,7 @@ dependencies = [
"flex==6.14.1",
"pyrabbit2==1.0.7",
"django-enforce-host==1.1.0",
"twisted==25.5.0",
"twisted==26.4.0",
"ipdb==0.13.13",
"jinja2==3.1.6",
"requests==2.33.1",
Expand Down Expand Up @@ -83,7 +83,7 @@ dev = [
"django-querycount==0.7.0",
"django-debug-toolbar==6.2.0",
"flake8==7.3.0",
"pytest==9.0.3",
"pytest==9.1.1",
"pytest-django==4.12.0",
]
[tool.pytest.ini_options]
Expand Down
2 changes: 1 addition & 1 deletion tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires-python = "==3.14.0"
dependencies = [
"loguru~=0.7.3",
"psycopg[binary]~=3.2.13",
"pytest==9.0.2",
"pytest==9.1.1",
"pytest-playwright~=0.7.1",
"pytest-xdist~=3.8.0",
"toml~=0.10.2",
Expand Down
Loading
Loading