Skip to content

Commit 4987911

Browse files
committed
chore(ci): remove runtime import smoke check
1 parent 650039a commit 4987911

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -403,19 +403,6 @@ jobs:
403403
+ (version_check.stderr.strip() or version_check.stdout.strip())
404404
)
405405
406-
module_check = subprocess.run(
407-
[str(runtime_python), "-c", "import ssl, aiohttp"],
408-
stdout=subprocess.PIPE,
409-
stderr=subprocess.PIPE,
410-
text=True,
411-
check=False,
412-
)
413-
if module_check.returncode != 0:
414-
raise RuntimeError(
415-
"Packaged runtime dependency smoke test failed (import ssl, aiohttp): "
416-
+ (module_check.stderr.strip() or module_check.stdout.strip())
417-
)
418-
419406
if sys.platform == "darwin":
420407
deps = subprocess.run(
421408
["otool", "-L", str(runtime_python)],

0 commit comments

Comments
 (0)