Skip to content

Commit bb0b00a

Browse files
committed
deps: Update dependencies
1 parent 320f809 commit bb0b00a

File tree

18 files changed

+294
-300
lines changed

18 files changed

+294
-300
lines changed

packages/dsw-command-queue/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
requires-python = ">=3.12, <4"
2222
dependencies = [
2323
"func-timeout",
24+
"tenacity",
2425
# DSW
2526
"dsw-database==4.27.0",
2627
]

packages/dsw-command-queue/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
func_timeout==4.3.5
2-
psycopg==3.3.2
3-
psycopg-binary==3.3.2
2+
psycopg==3.3.3
3+
psycopg-binary==3.3.3
44
PyYAML==6.0.3
55
tenacity==9.1.2
66
typing_extensions==4.15.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
certifi==2026.1.4
22
PyYAML==6.0.3
3-
sentry-sdk==2.50.0
3+
sentry-sdk==2.53.0
44
urllib3==2.6.3

packages/dsw-data-seeder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM datastewardshipwizard/python-base:4.27.0-basic AS builder
1+
FROM datastewardshipwizard/python-base:4.28.0-basic AS builder
22

33
WORKDIR /app
44

@@ -15,7 +15,7 @@ RUN python -m pip wheel --no-cache-dir --wheel-dir=/app/wheels -r /app/packages/
1515
&& python -m pip wheel --no-cache-dir --no-deps --wheel-dir=/app/wheels /app/packages/dsw-data-seeder
1616

1717

18-
FROM datastewardshipwizard/python-base:4.27.0-basic
18+
FROM datastewardshipwizard/python-base:4.28.0-basic
1919

2020
ENV APPLICATION_CONFIG_PATH=/app/config/application.yml \
2121
WORKDIR_PATH=/home/user/data \

packages/dsw-data-seeder/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ cffi==2.0.0
55
click==8.3.1
66
func_timeout==4.3.5
77
minio==7.2.20
8-
psycopg==3.3.2
9-
psycopg-binary==3.3.2
8+
psycopg==3.3.3
9+
psycopg-binary==3.3.3
1010
pycparser==3.0
1111
pycryptodome==3.23.0
1212
python-dateutil==2.9.0.post0
1313
PyYAML==6.0.3
14-
sentry-sdk==2.50.0
14+
sentry-sdk==2.53.0
1515
six==1.17.0
1616
tenacity==9.1.2
1717
typing_extensions==4.15.0
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
certifi==2026.1.4
2-
psycopg==3.3.2
3-
psycopg-binary==3.3.2
2+
psycopg==3.3.3
3+
psycopg-binary==3.3.3
44
PyYAML==6.0.3
5-
sentry-sdk==2.50.0
5+
sentry-sdk==2.53.0
66
tenacity==9.1.2
77
typing_extensions==4.15.0
88
urllib3==2.6.3

packages/dsw-document-worker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM datastewardshipwizard/python-base:4.27.0-docworker AS builder
1+
FROM datastewardshipwizard/python-base:4.28.0-docworker AS builder
22

33
ARG TARGETARCH
44

@@ -17,7 +17,7 @@ RUN python -m pip wheel --wheel-dir=/app/wheels -r /app/packages/dsw-document-wo
1717
&& python -m pip wheel --no-deps --wheel-dir=/app/wheels /app/packages/dsw-document-worker/addons/* \
1818
&& python -m pip wheel --no-deps --wheel-dir=/app/wheels /app/packages/dsw-document-worker
1919

20-
FROM datastewardshipwizard/python-base:4.27.0-docworker
20+
FROM datastewardshipwizard/python-base:4.28.0-docworker
2121

2222
ENV APPLICATION_CONFIG_PATH=/app/config/application.yml \
2323
WORKDIR_PATH=/tmp/docworker \

packages/dsw-document-worker/lambda.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM datastewardshipwizard/python-base:4.27.0-docworker-lambda AS builder
1+
FROM datastewardshipwizard/python-base:4.28.0-docworker-lambda AS builder
22

33
COPY . /app
44

@@ -11,7 +11,7 @@ RUN python -m pip wheel --wheel-dir=/app/wheels -r /app/packages/dsw-document-wo
1111
&& python -m pip wheel --no-deps --wheel-dir=/app/wheels /app/packages/dsw-document-worker/addons/* \
1212
&& python -m pip wheel --no-deps --wheel-dir=/app/wheels /app/packages/dsw-document-worker
1313

14-
FROM datastewardshipwizard/python-base:4.27.0-docworker-lambda
14+
FROM datastewardshipwizard/python-base:4.28.0-docworker-lambda
1515

1616
ARG LAMBDA_TASK_ROOT
1717

packages/dsw-document-worker/requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@ certifi==2026.1.4
55
cffi==2.0.0
66
charset-normalizer==3.4.4
77
click==8.3.1
8-
cssselect2==0.8.0
8+
cssselect2==0.9.0
99
fonttools==4.61.1
1010
func_timeout==4.3.5
1111
html5lib==1.1
1212
idna==3.11
1313
Jinja2==3.1.6
14-
Markdown==3.10.1
14+
Markdown==3.10.2
1515
MarkupSafe==3.0.3
1616
minio==7.2.20
1717
panflute==2.3.1
1818
pathvalidate==3.3.1
19-
pillow==12.1.0
19+
pillow==12.1.1
2020
pluggy==1.6.0
21-
psycopg==3.3.2
22-
psycopg-binary==3.3.2
21+
psycopg==3.3.3
22+
psycopg-binary==3.3.3
2323
pycparser==3.0
2424
pycryptodome==3.23.0
2525
pydyf==0.12.1
@@ -28,18 +28,18 @@ pyphen==0.17.2
2828
python-dateutil==2.9.0.post0
2929
python-slugify==8.0.4
3030
PyYAML==6.0.3
31-
rdflib==7.5.0
31+
rdflib==7.6.0
3232
rdflib-jsonld==0.6.2
3333
requests==2.32.5
34-
sentry-sdk==2.50.0
34+
sentry-sdk==2.53.0
3535
six==1.17.0
3636
tenacity==9.1.2
3737
text-unidecode==1.3
3838
tinycss2==1.5.1
3939
tinyhtml5==2.0.0
4040
typing_extensions==4.15.0
4141
urllib3==2.6.3
42-
weasyprint==68.0
42+
weasyprint==68.1
4343
webencodings==0.5.1
4444
XlsxWriter==3.2.9
4545
zopfli==0.4.0b1

packages/dsw-mailer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM datastewardshipwizard/python-base:4.27.0-basic AS builder
1+
FROM datastewardshipwizard/python-base:4.28.0-basic AS builder
22

33
WORKDIR /app
44

@@ -11,7 +11,7 @@ RUN python -m pip wheel --no-cache-dir --wheel-dir=/app/wheels -r /app/packages/
1111
&& python -m pip wheel --no-cache-dir --no-deps --wheel-dir=/app/wheels /app/packages/dsw-storage \
1212
&& python -m pip wheel --no-cache-dir --no-deps --wheel-dir=/app/wheels /app/packages/dsw-mailer
1313

14-
FROM datastewardshipwizard/python-base:4.27.0-basic
14+
FROM datastewardshipwizard/python-base:4.28.0-basic
1515

1616
ENV APPLICATION_CONFIG_PATH=/app/config/application.yml \
1717
WORKDIR_PATH=/home/user/templates \

0 commit comments

Comments
 (0)