Skip to content
Open
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 ci/build_test_OnCommit.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pipeline {
if (export_models_matched){
export_models_changed = "true"
}
def win_matched = (git_diff =~ /src|third_party|external|ci|test_install_ovms_service_windows\\.py|\.c|\.h|\.bazel|\.bzl|BUILD|WORKSPACE|\.bat|\.groovy/)
def win_matched = (git_diff =~ /src|third_party|external|ci|test_install_ovms_service_windows\\.py|\.c|\.h|\.bazel|\.bzl|BUILD|versions\.mk|WORKSPACE|\.bat|\.groovy/)
if (win_matched){
win_image_build_needed = "true"
}
Expand Down
5 changes: 2 additions & 3 deletions demos/common/export_models/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ diffusers # for image generation
einops
nncf
numpy
openvino-tokenizers==2026.3.0.dev20260528
openvino==2026.3.0.dev20260528
openvino-tokenizers==2026.3.0.dev20260609
openvino==2026.3.0.dev20260609
pillow
sentence_transformers==5.3.0
sentencepiece # Required by: transformers`
torchvision
requests
einops
2 changes: 1 addition & 1 deletion prepare_llm_models.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ echo "Downloading LLM testing models to directory $1"
export PIP_EXTRA_INDEX_URL="https://download.pytorch.org/whl/cpu https://storage.openvinotoolkit.org/simple/wheels/nightly"
if [ "$2" = "docker" ]; then
export PATH=$PATH:/opt/intel/openvino/python/bin
python3 -m pip install "optimum-intel"@git+https://github.com/huggingface/optimum-intel.git nncf sentence_transformers==5.3.0 sentencepiece requests
python3 -m pip install "optimum-intel"@git+https://github.com/huggingface/optimum-intel.git nncf sentence_transformers==5.3.0 sentencepiece requests protobuf==7.35.0

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WHy we dont have requirements here?

else
python3 -m venv .venv
. .venv/bin/activate
Expand Down
12 changes: 6 additions & 6 deletions versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@
# Any variable can be overridden by the environment or command-line.

# Source repository git commits / branches (used for source builds)
OV_SOURCE_BRANCH ?= 44e286794f03e199760ac76d8b7d71b0a34e1a95
OV_SOURCE_BRANCH ?= dfe9b3809828680538899ad24bef31b3c820268f
OV_TOKENIZERS_BRANCH ?= 6d28e696dfa0658a386167c761e48e06fd5c1a9e
OV_GENAI_BRANCH ?= 79b6d8eb5cf5a43954b4c657bf258894196e167f
OV_GENAI_BRANCH ?= 74b1b5b675532e20e56ae46355c6e6ffcfa33b1d

# Source repository organizations
OV_SOURCE_ORG ?= openvinotoolkit
OV_GENAI_ORG ?= openvinotoolkit
OV_TOKENIZERS_ORG ?= openvinotoolkit

# Binary package URLs for each supported platform.
DLDT_PACKAGE_URL_UBUNTU24 ?= https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2026.3.0.0.dev20260528/openvino_genai_ubuntu24_2026.3.0.0.dev20260528_x86_64.tar.gz
DLDT_PACKAGE_URL_UBUNTU22 ?= https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2026.3.0.0.dev20260528/openvino_genai_ubuntu22_2026.3.0.0.dev20260528_x86_64.tar.gz
DLDT_PACKAGE_URL_RHEL ?= https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2026.3.0.0.dev20260528/openvino_genai_rhel8_2026.3.0.0.dev20260528_x86_64.tar.gz
GENAI_PACKAGE_URL_WINDOWS ?= https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2026.3.0.0.dev20260528/openvino_genai_windows_2026.3.0.0.dev20260528_x86_64.zip
DLDT_PACKAGE_URL_UBUNTU24 ?= https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2026.3.0.0.dev20260609/openvino_genai_ubuntu24_2026.3.0.0.dev20260609_x86_64.tar.gz
DLDT_PACKAGE_URL_UBUNTU22 ?= https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2026.3.0.0.dev20260609/openvino_genai_ubuntu22_2026.3.0.0.dev20260609_x86_64.tar.gz
DLDT_PACKAGE_URL_RHEL ?= https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2026.3.0.0.dev20260609/openvino_genai_rhel8_2026.3.0.0.dev20260609_x86_64.tar.gz
GENAI_PACKAGE_URL_WINDOWS ?= https://storage.openvinotoolkit.org/repositories/openvino_genai/packages/nightly/2026.3.0.0.dev20260609/openvino_genai_windows_2026.3.0.0.dev20260609_x86_64.zip

# Third-party dependency versions (used for binary builds)
OPENCV_VERSION ?= 4.13.0
Expand Down