Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TOKENIZERS] frozen dependency on openvino release version #804

Merged
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
8 changes: 8 additions & 0 deletions .ci/azure/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ jobs:
call C:\tools\opencv\build\setup_vars_opencv4.cmd
call $(SETUPVARS) -pyver 3.8 && ^
$(PYTHON_EXE) -m pip install -r $(REPO_DIR)\modules\custom_operations\tests\requirements.txt
$(PYTHON_EXE) -m pip install $(INSTALL_DIR)\tools\openvino-*.whl
$(PYTHON_EXE) -m pytest -k "not sparse_conv" tests\run_tests.py
env:
CUSTOM_OP_LIB: $(BUILD_DIR_CONTRIB)\user_ie_extensions\user_ov_extensions.dll
Expand All @@ -195,6 +196,13 @@ jobs:
- publish: $(BUILD_WHEEL_DIR)
artifact: Wheels

- powershell: |
# Find and install the core OV wheel
$ovCoreWheelPath=Get-ChildItem -Path "$(INSTALL_DIR)\tools" -Filter openvino-*.whl | % { $_.FullName }
$(PYTHON_EXE) -m pip install "$ovCoreWheelPath"
workingDirectory: $(WORK_DIR)
displayName: 'Install OpenVINO Python wheels'

- powershell: |
# Find and install the wheel
$wheelPath=Get-ChildItem -Path "$(BUILD_WHEEL_DIR)" -Filter openvino_tokenizers*.whl | % { $_.FullName }
Expand Down
2 changes: 1 addition & 1 deletion modules/custom_operations/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
]

dependencies = [
'openvino'
'openvino==2023.3.0'
]

[project.optional-dependencies]
Expand Down