Skip to content

Commit 012526f

Browse files
author
enryh
committed
🐛 make Windows Path for bundled quarto executable
- install quarto on server (as it seems to fail in conda envs which I use locally)
1 parent ac13935 commit 012526f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cdci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ jobs:
140140
# label: "macos-13-x64"
141141
- runner: "macos-15"
142142
label: "macos-15-arm64"
143-
# - runner: "windows-latest"
144-
# label: "windows-x64"
143+
- runner: "windows-latest"
144+
label: "windows-x64"
145145
steps:
146146
- uses: actions/checkout@v4
147147
- uses: actions/setup-python@v5

src/vuegen/quarto_reportview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self, report: r.Report, report_type: r.ReportType):
2828
self.report.logger.info("running in a PyInstaller bundle")
2929
self.BUNDLED_EXECUTION = True
3030
self.report.logger.debug(f"sys._MEIPASS: {sys._MEIPASS}")
31-
self.quarto_path = Path(sys._MEIPASS) / "quarto_cli" / "bin" / "quarto"
31+
self.quarto_path = str(Path(sys._MEIPASS) / "quarto_cli" / "bin" / "quarto")
3232
else:
3333
self.report.logger.info("running in a normal Python process")
3434

0 commit comments

Comments
 (0)