[PyOV] Fix wheel requirements for new package versions (#13871)

* Bump pybind11 to v2.10.1 release tag

* [PyOV] Fix wheel requirements for new package versions
This commit is contained in:
Jan Iwaszkiewicz 2022-11-05 13:01:45 +01:00 committed by GitHub
parent 02d30c8aaa
commit 664c196a13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -32,5 +32,5 @@ radon
retrying
tox
types-pkg_resources
wheel>=0.36.2
wheel>=0.38.1
protobuf~=3.18.1

View File

@ -59,7 +59,7 @@ execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import wheel.vendored.packaging
OUTPUT_VARIABLE PYTHON_TAG OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import wheel.bdist_wheel ; print(f'{wheel.bdist_wheel.get_abi_tag()}')"
OUTPUT_VARIABLE ABI_TAG OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import wheel.vendored.packaging.tags as tags ; print(f'{next(tags._platform_tags())}')"
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import wheel.vendored.packaging.tags as tags ; print(f'{next(tags.platform_tags())}')"
OUTPUT_VARIABLE PLATFORM_TAG OUTPUT_STRIP_TRAILING_WHITESPACE)
# defines wheel architecture part of `PLATFORM_TAG`

View File

@ -1,3 +1,3 @@
setuptools>=53.0.0
wheel>=0.36.2
wheel>=0.38.1
patchelf; sys_platform == 'linux' and platform_machine == 'x86_64'