Skip to content

Commit 7a58dab

Browse files
authored
Merge pull request #2573 from etpinard/use-julia-project-in-JuliaRunner
Use `julia --project` in `JuliaRunner`
2 parents d49a440 + dc313bb commit 7a58dab

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
## [UNRELEASED]
6+
7+
## Changed
8+
9+
- [#2573](https://github.com/plotly/dash/pull/2573) Use `julia --project` command inside `JuliaRunner`.
10+
511
## [2.11.0] - 2023-06-23
612

713
## Added

dash/testing/application_runners.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,9 @@ def start(self, app, start_timeout=30, cwd=None):
505505

506506
logger.info("Run Dash.jl app with julia => %s", app)
507507

508-
args = shlex.split(f"julia {os.path.realpath(app)}", posix=not self.is_windows)
508+
args = shlex.split(
509+
f"julia --project {os.path.realpath(app)}", posix=not self.is_windows
510+
)
509511
logger.debug("start Dash.jl process with %s", args)
510512

511513
try:

0 commit comments

Comments
 (0)