-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2023.1.0.dev20230811 pre-release (#35)
* Switched to 2023.1.0.dev20230811 pre-release * Switched to tag, aligned with current dev state * Re-upload patch * Unlock mlas for aarch64 and arm64
- Loading branch information
1 parent
7441b65
commit 03c87cc
Showing
2 changed files
with
28 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/src/bindings/python/wheel/setup.py b/src/bindings/python/wheel/setup.py | ||
index ee0de58d68..4dc269a586 100644 | ||
--- a/src/bindings/python/wheel/setup.py | ||
+++ b/src/bindings/python/wheel/setup.py | ||
@@ -615,6 +615,8 @@ def concat_files(input_files, output_file): | ||
|
||
OPENVINO_VERSION = WHEEL_VERSION = os.getenv("WHEEL_VERSION", "0.0.0") | ||
PACKAGE_DIR = get_package_dir(PY_INSTALL_CFG) | ||
+os.makedirs(PACKAGE_DIR, exist_ok=True) | ||
+ | ||
packages = find_namespace_packages(PACKAGE_DIR) | ||
package_data: typing.Dict[str, list] = {} | ||
ext_modules = find_prebuilt_extensions(get_install_dirs_list(PY_INSTALL_CFG)) |