File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 17
17
stable_version = os .getenv ("MATRIX_STABLE_VERSION" )
18
18
package_type = os .getenv ("MATRIX_PACKAGE_TYPE" )
19
19
target_os = os .getenv ("TARGET_OS" )
20
- BASE_DIR = Path (__file__ ).parent .parent
20
+ BASE_DIR = Path (__file__ ).parent .parent . parent
21
21
22
22
is_cuda_system = gpu_arch_type == "cuda"
23
23
NIGHTLY_ALLOWED_DELTA = 3
@@ -85,6 +85,8 @@ def check_version(package: str) -> None:
85
85
raise RuntimeError (
86
86
f"{ module ['name' ]} version mismatch, expected { release_version [module ['name' ]]} for channel { channel } . But its { module_version } "
87
87
)
88
+ else :
89
+ print (f"{ module ['name' ]} version actual: { module_version } expected: { release_version [module ['name' ]]} for channel { channel } ." )
88
90
89
91
else :
90
92
print (f"Skip version check for channel { channel } as stable version is None" )
You can’t perform that action at this time.
0 commit comments