Skip to content

Commit cd5403c

Browse files
authored
Fix benchmark builds [AP-3937] (#1499)
# Description @swift-nav/algint-team - New version of [kaitaistruct](https://pypi.org/project/kaitaistruct/#history)/[runtime](https://github.com/kaitai-io/kaitai_struct_perl_runtime/releases/tag/0.11) breaks pipelines. Fix to `0.10.0` - Update python version # API compatibility Does this change introduce a API compatibility risk? No # JIRA Reference https://swift-nav.atlassian.net/browse/AP-3937
1 parent df60672 commit cd5403c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

kaitai/python/kaitai_sbp/tests/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ envlist = py
66
[testenv]
77
deps =
88
pytest
9-
kaitaistruct
9+
kaitaistruct==0.10.0
1010
construct
1111
python-rapidjson
1212
changedir = ../../../..

python/Dockerfile.benchmark

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7-slim-bookworm
1+
FROM python:3.13-slim-bookworm
22

33
ENV DEBIAN_FRONTEND=noninteractive
44
RUN apt-get update \
@@ -19,7 +19,8 @@ ADD . /work
1919

2020
RUN pip3 install -r /work/setup_requirements.txt
2121
RUN pip3 install -r /work/requirements.txt
22-
RUN pip3 install kaitaistruct
22+
# keep in sync with above
23+
RUN pip3 install kaitaistruct==0.10.0
2324

2425
RUN pip3 install wheel setuptools
2526

0 commit comments

Comments
 (0)