@@ -22,7 +22,7 @@ sudo -E XDG_RUNTIME_DIR= podman build --progress=plain \
22
22
23
23
RUN dnf install -y --nodocs \
24
24
autoconf automake binutils cmake gcc gcc-c++ git glibc-devel glibc-headers glibc-static kernel-devel libtool libstdc++-devel make ninja-build pkgconfig zlib-devel \
25
- python3.11 python3.11 -pip python3.11 -devel \
25
+ python3.13 python3.13 -pip python3.13 -devel \
26
26
libjpeg-turbo-devel libpng-devel qpdf-devel json-devel utf8cpp-devel loguru-devel cxxopts-devel \
27
27
&& dnf clean all
28
28
@@ -35,15 +35,15 @@ sudo -E XDG_RUNTIME_DIR= podman build --progress=plain \
35
35
# pre-install build requirements + wheel for "--no-build-isolation"
36
36
# build docling-parse wheel in an isolated network namespace (unshare -rn)
37
37
# install the wheel and its dependencies
38
- RUN pip3.11 install uv pybind11 wheel \
39
- && unshare -rn pip3.11 wheel \
38
+ RUN pip3.13 install uv pybind11 wheel \
39
+ && unshare -rn pip3.13 wheel \
40
40
--no-deps --no-build-isolation -w /dist/ \
41
41
/src/docling_parse*.tar.gz \
42
- && pip3.11 install /dist/docling_parse*.whl \
43
- && python3.11 -c 'from docling_parse.pdf_parsers import pdf_parser_v1, pdf_parser_v2'
42
+ && pip3.13 install /dist/docling_parse*.whl \
43
+ && python3.13 -c 'from docling_parse.pdf_parsers import pdf_parser_v1, pdf_parser_v2'
44
44
45
45
COPY ./tests /src/tests
46
46
47
- RUN pip3.11 install pytest \
47
+ RUN pip3.13 install pytest \
48
48
&& pytest
49
49
EOF
0 commit comments