From 61dfe123e247e191d6d2c9700a7e9ad332586374 Mon Sep 17 00:00:00 2001 From: gibsondan Date: Thu, 31 Oct 2024 13:55:14 -0500 Subject: [PATCH] Bring back --sh-boot to github action dagster cloud PEx Summary: I believe after the test changes in https://github.com/dagster-io/dagster-cloud-action/pull/206 to no longer run the tests locally, it is safe (and more correct) to use this insteda of expecting python to be available at a particular path. --- scripts/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.py b/scripts/release.py index 8b8f5e5..3a0aeb8 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -128,7 +128,7 @@ def build_dagster_cloud_pex( "--pip-version=23.0", "--resolver-version=pip-2020-resolver", "--venv=prepend", - "--python-shebang=/usr/bin/env python", + "--sh-boot", "-vvvvv", ] print(f"Running {args}")