From 8f39129a8a76e8a9ab3d0eda2c436bedd747c468 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sun, 14 Aug 2022 11:54:16 +0100 Subject: Remove unneeded backslash in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e6110d6..9816d54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -75,4 +75,4 @@ FROM venv # will be installed. Note requirements.pip cannot be used as a constraint file # because it contains extras, which pip disallows. RUN --mount=source=.,target=/snekbox_src,rw \ - pip install /snekbox_src[gunicorn,sentry] \ + pip install /snekbox_src[gunicorn,sentry] -- cgit v1.2.3 From c605de56d820859a3969b693f1e17780981b4217 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sun, 14 Aug 2022 11:54:45 +0100 Subject: Bump all 3rd party deps in deployment file --- deployment.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/deployment.yaml b/deployment.yaml index e6371d0..ffba386 100644 --- a/deployment.yaml +++ b/deployment.yaml @@ -32,26 +32,26 @@ spec: - >- PYTHONUSERBASE=/snekbox/user_base pip install --user - anyio[trio]~=3.2 - arrow~=1.2.1 - attrs~=20.3 - beautifulsoup4~=4.9 + anyio[trio]~=3.6 + arrow~=1.2 + attrs~=22.1 + beautifulsoup4~=4.11 fishhook~=0.1 forbiddenfruit~=0.1 fuzzywuzzy~=0.18 - lark~=0.11 - more-itertools~=8.6 - networkx~=2.5 - numpy~=1.21 - pandas~=1.3 + lark~=1.1 + more-itertools~=8.14 + networkx~=2.8 + numpy~=1.23 + pandas~=1.4 pendulum~=2.1 python-dateutil~=2.8 - pyyaml~=5.3 - sympy~=1.6 + pyyaml~=6.0 + sympy~=1.10 toml~=0.10 - typing-extensions~=4.2 - tzdata~=2021.1 - yarl~=1.7 + typing-extensions~=4.3 + tzdata~=2022.2 + yarl~=1.8 volumes: - name: snekbox-user-base-volume hostPath: -- cgit v1.2.3