Skip to content

Commit

Permalink
fix: auto-install GUI dependencies (#114)
Browse files Browse the repository at this point in the history
* fix: auto-install GUI dependencies

Signed-off-by: Stephen Crowe <[email protected]>
  • Loading branch information
crowecawcaw authored Sep 5, 2024
1 parent f3a5888 commit cb9f28f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
]

dependencies = [
"deadline >= 0.48.7,< 0.49",
"deadline >= 0.48.8,< 0.49",
"openjd-adaptor-runtime >= 0.7,< 0.9",
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def gui_submit(bundle_directory: str) -> Optional[dict[str, Any]]:
shell_executable,
"-i",
"-c",
f"echo \"START_DEADLINE_OUTPUT\";deadline bundle gui-submit '{bundle_directory}' --output json",
f"echo \"START_DEADLINE_OUTPUT\";deadline bundle gui-submit '{bundle_directory}' --output json --install-gui",
],
check=True,
capture_output=True,
Expand All @@ -335,6 +335,7 @@ def gui_submit(bundle_directory: str) -> Optional[dict[str, Any]]:
str(bundle_directory),
"--output",
"json",
"--install-gui",
],
check=True,
capture_output=True,
Expand Down

0 comments on commit cb9f28f

Please sign in to comment.