Skip to content
Merged
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
2 changes: 1 addition & 1 deletion kaitai/python/kaitai_sbp/tests/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ envlist = py
[testenv]
deps =
pytest
kaitaistruct
kaitaistruct==0.10.0
construct
python-rapidjson
changedir = ../../../..
Expand Down
5 changes: 3 additions & 2 deletions python/Dockerfile.benchmark
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-slim-bookworm
FROM python:3.13-slim-bookworm

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

RUN pip3 install -r /work/setup_requirements.txt
RUN pip3 install -r /work/requirements.txt
RUN pip3 install kaitaistruct
# keep in sync with above
RUN pip3 install kaitaistruct==0.10.0

RUN pip3 install wheel setuptools

Expand Down
Loading