Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
7a44f44
add python 3.14
akashchi Dec 1, 2025
8b83727
add to test jobs
akashchi Dec 1, 2025
59cdc5c
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 1, 2025
b079c39
update tag
akashchi Dec 1, 2025
f30fdf5
merge
akashchi Dec 3, 2025
741b71e
add nogil version
akashchi Dec 3, 2025
6794f37
look for free-threading python wheel
akashchi Dec 4, 2025
76e3f97
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 4, 2025
0091b71
add another name
akashchi Dec 4, 2025
7cfd2cc
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 8, 2025
8d78a82
3.14t
akashchi Dec 9, 2025
db5274e
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 9, 2025
2ef70d8
do not build on debian
akashchi Dec 9, 2025
65b441a
add 3.14
akashchi Dec 10, 2025
dcb08aa
add to fedora
akashchi Dec 10, 2025
608fbe3
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 10, 2025
c0f9db9
use custom script for 3.14t on win; fix bin name in linux
akashchi Dec 10, 2025
b781cc3
add -dev package
akashchi Dec 10, 2025
da8918a
rm var
akashchi Dec 10, 2025
92918bd
fix fedora build
akashchi Dec 10, 2025
2c302de
uncomment
akashchi Dec 10, 2025
29281bc
try with allow prereleases
akashchi Dec 10, 2025
3556cae
fix input
akashchi Dec 10, 2025
dfce905
use v6
akashchi Dec 11, 2025
d7eb2ce
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 11, 2025
d262de6
build 3.14t separately
akashchi Dec 11, 2025
7302c78
do not build 3.14t wheel if not needed
akashchi Dec 12, 2025
76b1312
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 12, 2025
5e0df42
add -dev for 3.14t
akashchi Dec 12, 2025
bd396c4
use only python3.14t, skip failing API tests
akashchi Dec 12, 2025
1a01048
rm unused
akashchi Dec 12, 2025
c668195
typos
akashchi Dec 12, 2025
ef501cb
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 17, 2025
10058b1
docc snippets on 3.14t
akashchi Dec 17, 2025
61fa952
fix condition
akashchi Dec 17, 2025
ac60967
fix condition
akashchi Dec 17, 2025
0f493ab
fix condition
akashchi Dec 17, 2025
a17bce6
add comment
akashchi Dec 17, 2025
99a44dd
add option
akashchi Dec 19, 2025
8623188
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 19, 2025
c23885a
debug for exec
akashchi Dec 19, 2025
8bbb423
explicetly set
akashchi Dec 19, 2025
7c65c9a
rm unnecessary
akashchi Dec 22, 2025
223fa0c
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 22, 2025
ac0a89b
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Dec 23, 2025
6fe3ae2
setup py3.14t
akashchi Dec 23, 2025
8244a4d
merge
akashchi Jan 12, 2026
9bf683c
try with staging
akashchi Jan 12, 2026
f442a9f
account for name for py3.14t
akashchi Jan 12, 2026
9c051d9
better regexp
akashchi Jan 13, 2026
57ccaed
Merge remote-tracking branch 'upstream/master' into ci/gha/python3.14
akashchi Jan 13, 2026
3ee5860
Merge branch 'master' into ci/gha/python3.14
akladiev Jan 13, 2026
c71cbbf
fix pattern
akashchi Jan 15, 2026
475bd58
Merge branch 'ci/gha/python3.14' of https://github.com/akashchi/openv…
akashchi Jan 15, 2026
c80df5c
use regular runner
akashchi Jan 15, 2026
16ef8fc
review: typo + 3.14t for mac
akashchi Jan 15, 2026
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
24 changes: 22 additions & 2 deletions .github/actions/install_ov_wheels/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ inputs:
required: true
wheels-to-install:
description: 'List of wheel names to install in the form of "openvino openvino_tokenizers"'
free-threaded-python:
description: 'Whether to look for free-threaded Python wheels (with "cpXYt" in their names)'
required: false
default: 'false'
runs:
using: 'composite'
steps:
Expand All @@ -21,8 +25,17 @@ runs:
Write-Host "Wheels folder: $(Get-ChildItem -Path ${{ inputs.wheels-dir-path }})"

foreach ($wheel in $("${{ inputs.wheels-to-install }}" -split ' ')) {
Write-Host "Installing the $wheel wheel"

# Search for the python-specific wheel version and install it if exists
$wheelPath = Get-ChildItem -Path ${{ inputs.wheels-dir-path }} -Filter "$wheel-*cp$pyVersion*.whl" | Select-Object -First 1
# Free-threading Python wheels have 'cpXYt' in their names
if ("${{ inputs.free-threaded-python }}" -eq "true") {
Write-Host "Looking for free-threaded Python wheel: $wheel-*cp$pyVersion*t*.whl"
$wheelPath = Get-ChildItem -Path ${{ inputs.wheels-dir-path }} -Filter "$wheel-*cp$pyVersion*t*.whl" | Select-Object -First 1
} else {
$wheelPath = Get-ChildItem -Path ${{ inputs.wheels-dir-path }} -Filter "$wheel-*cp$pyVersion*.whl" | Where-Object { $_.Name -notlike "*cp$pyVersion*t.whl" } | Select-Object -First 1
}

Write-Host "Wheel path: $($wheelPath)"
if ($wheelPath) {
python3 -m pip install $wheelPath.FullName
Expand All @@ -48,7 +61,14 @@ runs:
echo "Installing the ${wheel} wheel"

# Search for the python-specific wheel version and install it if exists
wheel_path=$(find ${{ inputs.wheels-dir-path }} -name "$wheel-*cp$py_version*.whl")

# free-threading Python wheels have 'cpXYt' in their names
if [ "${{ inputs.free-threaded-python }}" == "true" ]; then
wheel_path=$(find ${{ inputs.wheels-dir-path }} -name "$wheel-*cp${py_version}t*.whl")
else
wheel_path=$(find ${{ inputs.wheels-dir-path }} -name "$wheel-*cp$py_version*.whl" ! -name "*cp${py_version}t*.whl")
fi

echo "Wheel path: ${wheel_path}"
if [ -n "${wheel_path}" ]; then
python3 -m pip install $wheel_path
Expand Down
7 changes: 6 additions & 1 deletion .github/actions/setup_python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ inputs:
description: 'If the runner is self-hosted'
required: false
default: 'true'
allow-prereleases:
description: 'If pre-release versions of Python are allowed'
required: false
default: 'false'
runs:
using: 'composite'
steps:
Expand All @@ -40,9 +44,10 @@ runs:

- if: ${{ runner.os == 'macOS' || runner.os == 'Windows' || (runner.os == 'Linux' && steps.check_python.outputs.installed == 'false') }}
name: Setup Python ${{ inputs.version }}
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ inputs.version }}
allow-prereleases: ${{ inputs.allow-prereleases }}

- if: ${{ inputs.should-setup-pip-paths == 'true' && runner.os != 'Windows' }}
name: Setup pip variables (cache and install path)
Expand Down
2 changes: 1 addition & 1 deletion .github/dockerfiles/docker_tag
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pr-33511
pr-33079
44 changes: 43 additions & 1 deletion .github/dockerfiles/ov_build/debian_10_arm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,55 @@ RUN cd Python-3.13.2 && make distclean && \
ac_cv_file__dev_ptc=no && \
make -j $(nproc) && make altinstall

# Cross-compile Python3.14 for ARM
RUN curl -O https://www.python.org/ftp/python/3.14.0/Python-3.14.0.tgz && \
tar -xf Python-3.14.0.tgz && \
cd Python-3.14.0 && \
LDFLAGS="-L/usr/local/lib64" ./configure --with-openssl=/usr/local --with-openssl-rpath=auto && \
make -j $(nproc) && make altinstall

# Cross-compile Python3.14 for ARM
RUN cd Python-3.14.0 && make distclean && \
./configure \
--host=arm-linux-gnueabihf \
--build=$(dpkg-architecture -qDEB_BUILD_GNU_TYPE) \
--disable-ipv6 \
--enable-shared \
--prefix=/opt/python3.14_arm \
--with-build-python \
ac_cv_file__dev_ptmx=no \
ac_cv_file__dev_ptc=no && \
make -j4 && make altinstall

# Cross-compile Python3.14t for ARM (with --disable-gil)
RUN cp -r Python-3.14.0 Python-3.14t && \
cd Python-3.14t && make distclean && \
LDFLAGS="-L/usr/local/lib64" ./configure --disable-gil --with-openssl=/usr/local --with-openssl-rpath=auto --prefix=/usr/local/bin/python3.14t && \
make -j4 && make altinstall && \
ln -s /usr/local/bin/python3.14t/bin/python3.14 /usr/bin/python3.14t

# Cross-compile Python3.14t for ARM
RUN cd Python-3.14t && make distclean && \
./configure \
--host=arm-linux-gnueabihf \
--build=$(dpkg-architecture -qDEB_BUILD_GNU_TYPE) \
--disable-ipv6 \
--enable-shared \
--prefix=/opt/python3.14t_arm \
--with-build-python \
ac_cv_file__dev_ptmx=no \
ac_cv_file__dev_ptc=no && \
make -j4 && make altinstall

# Setup pip
ENV PIP_VERSION="24.0"
RUN python3 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.10 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.11 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.12 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.13 -m pip install --upgrade pip==${PIP_VERSION}
python3.13 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.14 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.14t -m pip install --upgrade pip==${PIP_VERSION}

# Use Python 3.11 as default
# Using venv here because other methods to switch the default Python break both system and wheels build
Expand Down
18 changes: 18 additions & 0 deletions .github/dockerfiles/ov_build/fedora_29/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,22 @@ RUN cd /usr/src/Python-3.13.2 && \
./configure --enable-optimizations --enable-loadable-sqlite-extensions --prefix=/usr && \
make altinstall

# Python 3.14
RUN cd /usr/src && \
wget https://www.python.org/ftp/python/3.14.0/Python-3.14.0.tgz && \
tar xzf Python-3.14.0.tgz
RUN cd /usr/src/Python-3.14.0 && \
./configure --enable-optimizations --enable-loadable-sqlite-extensions --prefix=/usr && \
make altinstall

# Python 3.14 free-threading
RUN cp -r /usr/src/Python-3.14.0 /usr/src/Python-3.14t
RUN cd /usr/src/Python-3.14t && \
./configure --disable-gil --enable-loadable-sqlite-extensions --prefix=/usr/python3.14t && \
make altinstall

RUN ln -s /usr/python3.14t/bin/python3.14t /usr/bin/python3.14t

# Install sscache
ARG SCCACHE_VERSION="v0.7.5"
ENV SCCACHE_HOME="/opt/sccache" \
Expand All @@ -89,6 +105,8 @@ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3.11 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.12 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.13 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.14 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.14t get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
rm -f get-pip.py

ENV PIP_CACHE_DIR=/mount/caches/pip/linux/${PIP_VERSION}
Expand Down
5 changes: 5 additions & 0 deletions .github/dockerfiles/ov_build/ubuntu_22_04_arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ RUN apt-get update && \
python3.12-venv \
python3.13-dev \
python3.13-venv \
python3.14-nogil \
python3.14-venv \
python3.14-dev \
libhdf5-dev \
# For Java API
default-jdk \
Expand Down Expand Up @@ -90,6 +93,8 @@ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3.11 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.12 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.13 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.14 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.14t get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
rm -f get-pip.py

# Use Python 3.11 as default instead of Python 3.10
Expand Down
7 changes: 6 additions & 1 deletion .github/dockerfiles/ov_build/ubuntu_22_04_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ RUN apt-get update && \
python3.12-venv \
python3.13-dev \
python3.13-venv \
python3.14-nogil \
python3.14-venv \
python3.14-dev \
# For Java API
default-jdk \
# To build documentation
Expand Down Expand Up @@ -73,6 +76,7 @@ RUN wget https://cmake.org/files/v4.1/cmake-4.1.1-linux-x86_64.sh && \
rm cmake-4.1.1-linux-x86_64.sh

ENV PATH="$SCCACHE_HOME:$PATH"

# Setup pip
ENV PIP_VERSION="24.0"
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
Expand All @@ -81,6 +85,8 @@ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3.11 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.12 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.13 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.14 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.14t get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
rm -f get-pip.py

# Use Python 3.11 as default
Expand Down Expand Up @@ -108,4 +114,3 @@ RUN mkdir -p ${DOXYGEN_HOME} && cd ${DOXYGEN_HOME} && wget https://www.doxygen.n
tar -I pigz -xf doxygen-$DOXYGEN_VERSION.linux.bin.tar.gz && \
rm -f doxygen-$DOXYGEN_VERSION.linux.bin.tar.gz
ENV PATH="${DOXYGEN_HOME}/doxygen-$DOXYGEN_VERSION/bin:$PATH"

10 changes: 8 additions & 2 deletions .github/dockerfiles/ov_build/ubuntu_24_04_x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ RUN apt-get update && \
python3-venv \
python3-pip \
python3-full \
python3.14-nogil \
python3.14-venv \
python3.14-dev \
# For Java API
default-jdk \
# For clang-tidy validation
Expand Down Expand Up @@ -72,10 +75,13 @@ ENV PATH="/venv/bin:$PATH"

# Setup pip
ENV PIP_VERSION="24.0"
RUN /venv/bin/python3 -m pip install --upgrade pip==${PIP_VERSION} && \
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
/venv/bin/python3 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.10 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.11 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.12 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.13 -m pip install --upgrade pip==${PIP_VERSION}
python3.13 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.14 -m pip install --upgrade pip==${PIP_VERSION} && \
python3.14t get-pip.py --no-cache-dir pip==${PIP_VERSION}

ENV PIP_CACHE_DIR=/mount/caches/pip/linux/${PIP_VERSION}
52 changes: 52 additions & 0 deletions .github/dockerfiles/ov_test/ubuntu_22_04_x64_py314/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
ARG REGISTRY="docker.io"
FROM ${REGISTRY}/library/ubuntu:22.04

USER root

# APT configuration
RUN echo 'Acquire::Retries "10";' > /etc/apt/apt.conf && \
echo 'APT::Get::Assume-Yes "true";' >> /etc/apt/apt.conf && \
echo 'APT::Get::Fix-Broken "true";' >> /etc/apt/apt.conf && \
echo 'APT::Get::no-install-recommends "true";' >> /etc/apt/apt.conf

ENV DEBIAN_FRONTEND="noninteractive" \
TZ="Europe/London"

RUN apt-get update && \
apt-get install software-properties-common && \
add-apt-repository --yes --no-update ppa:git-core/ppa && \
add-apt-repository --yes --no-update ppa:deadsnakes/ppa && \
apt-get update && \
apt-get install \
curl \
git \
gpg-agent \
tzdata \
# parallel gzip
pigz \
# Python
python3.14-dev \
python3.14-venv \
&& \
rm -rf /var/lib/apt/lists/*

# Install openvino dependencies
ADD scripts/install_dependencies/install_openvino_dependencies.sh /install_openvino_dependencies.sh
RUN chmod +x /install_openvino_dependencies.sh && \
/install_openvino_dependencies.sh && \
rm -rf /var/lib/apt/lists/*

# Setup pip
ENV PIP_VERSION="24.0"
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.14 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
rm -f get-pip.py

# Use Python 3.14 as default instead of Python 3.10
# Using venv here 'cause other methods to switch the default Python on Ubuntu 22 break both system and wheels build
RUN python3.14 -m venv venv
ENV PATH="/venv/bin:$PATH"

ENV PIP_CACHE_DIR=/mount/caches/pip/linux/${PIP_VERSION}
ENV PIP_INSTALL_PATH=/venv/lib/python3.14/site-packages
53 changes: 53 additions & 0 deletions .github/dockerfiles/ov_test/ubuntu_22_04_x64_py314t/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
ARG REGISTRY="docker.io"
FROM ${REGISTRY}/library/ubuntu:22.04

USER root

# APT configuration
RUN echo 'Acquire::Retries "10";' > /etc/apt/apt.conf && \
echo 'APT::Get::Assume-Yes "true";' >> /etc/apt/apt.conf && \
echo 'APT::Get::Fix-Broken "true";' >> /etc/apt/apt.conf && \
echo 'APT::Get::no-install-recommends "true";' >> /etc/apt/apt.conf

ENV DEBIAN_FRONTEND="noninteractive" \
TZ="Europe/London"

RUN apt-get update && \
apt-get install software-properties-common && \
add-apt-repository --yes --no-update ppa:git-core/ppa && \
add-apt-repository --yes --no-update ppa:deadsnakes/ppa && \
apt-get update && \
apt-get install \
curl \
git \
gpg-agent \
tzdata \
# parallel gzip
pigz \
# Python
python3.14-nogil \
python3.14-venv \
python3.14-dev \
&& \
rm -rf /var/lib/apt/lists/*

# Install openvino dependencies
ADD scripts/install_dependencies/install_openvino_dependencies.sh /install_openvino_dependencies.sh
RUN chmod +x /install_openvino_dependencies.sh && \
/install_openvino_dependencies.sh && \
rm -rf /var/lib/apt/lists/*

# Setup pip
ENV PIP_VERSION="24.0"
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3 get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
python3.14t get-pip.py --no-cache-dir pip==${PIP_VERSION} && \
rm -f get-pip.py

# Use Python 3.14 free-threading as default instead of Python 3.10
# Using venv here 'cause other methods to switch the default Python on Ubuntu 22 break both system and wheels build
RUN python3.14t -m venv venv
ENV PATH="/venv/bin:$PATH"

ENV PIP_CACHE_DIR=/mount/caches/pip/linux/${PIP_VERSION}
ENV PIP_INSTALL_PATH=/venv/lib/python3.14t/site-packages
2 changes: 1 addition & 1 deletion .github/workflows/debian_10_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
build-debian-packages: false
build-contrib: false
build-rpm-packages: false
build-additional-python-packages: true
build-additional-python-packages: false
target-branch: ${{ inputs.target-branch }}
cmake-options: >-
-DTHREADS_PTHREAD_ARG=-pthread
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/job_build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,12 +223,14 @@ jobs:
- name: Build Python API and wheels
if: ${{ inputs.build-additional-python-packages }}
run: |
for py_version in "3.10" "3.11" "3.12" "3.13"
for py_version in "3.10" "3.11" "3.12" "3.13" "3.14" "3.14t"
do
echo "Building Python API and wheels for Python ${py_version}"
export PY_BUILD_DIR=${{ github.workspace }}/py$py_version
mkdir -p $PY_BUILD_DIR

python_exec_path=$(python$py_version -c "import sys; print(sys.executable)")
echo "Using Python executable at: ${python_exec_path}"

$python_exec_path -m pip install -r ${OPENVINO_REPO}/src/bindings/python/wheel/requirements-dev.txt

Expand All @@ -238,6 +240,10 @@ jobs:
CMAKE_OPTIONS+=" -DCMAKE_TOOLCHAIN_FILE=${{ env.OPENVINO_REPO }}/cmake/arm.toolchain.cmake -DPYTHON_MODULE_EXTENSION=$(/opt/python${py_version}_arm/bin/python${py_version}-config --extension-suffix) -DPython3_INCLUDE_DIR=/opt/python${py_version}_arm/include/python${py_version}"
fi

if [[ $py_version == "3.14t" ]]; then
CMAKE_OPTIONS+=" -DENABLE_GIL_PYTHON_API=OFF"
fi

cmake ${CMAKE_OPTIONS} -S ${OPENVINO_REPO}/src/bindings/python -B ${PY_BUILD_DIR}
cmake --build ${PY_BUILD_DIR} --parallel $(nproc)
cmake --install ${PY_BUILD_DIR} --config ${{ env.CMAKE_BUILD_TYPE }} --prefix ${INSTALL_DIR} --component pyopenvino_python$py_version
Expand Down
Loading
Loading