Skip to content

Commit

Permalink
fix bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
feihoo87 committed Feb 19, 2025
1 parent 5e06fab commit c5600d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions qulab/executor/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
@logger.catch(reraise=True)
def boot(script_path):
"""Run a script in a new terminal."""
import subprocess
import sys

from qulab.utils import run_detached_with_terminal

run_detached_with_terminal(sys.executable + ' ' + script_path)
proc = subprocess.Popen([sys.executable, script_path])
proc.communicate()


@logger.catch(reraise=True)
Expand Down
2 changes: 1 addition & 1 deletion qulab/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.7.3"
__version__ = "2.7.4"

0 comments on commit c5600d9

Please sign in to comment.