From 9685207ae4a8a5a60279d2273a73df48fbcf4730 Mon Sep 17 00:00:00 2001 From: gibsondan Date: Tue, 12 Nov 2024 10:27:11 -0600 Subject: [PATCH] Bring back --sh-boot to github action dagster cloud PEx (#207) 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}")