From c067d5fa430c97e0ef2ca54b3eae2a110e8e3581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Ricart?= Date: Tue, 4 Mar 2025 17:27:34 +0100 Subject: [PATCH] update tmp path --- pyproject.toml | 2 +- setup.py | 2 +- sphinxcontrib/d2lang/d2lang.py | 9 +++++++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1e1d20f..4600995 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sphinxcontrib-d2lang" -version = "0.0.1" +version = "0.0.3" authors = [ { name="Milka64", email="michael.ricart@0w.tf" }, ] diff --git a/setup.py b/setup.py index 33d7139..05bdb76 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ with open('README.md', 'r', encoding='utf8') as file: setup( name='sphinxcontrib-d2lang', - version='0.0.1', + version='0.0.3', author='Milka64', author_email='michael.ricart@0w.tf', url='https://git.0w.tf/Milka64/sphinx-d2lang/', diff --git a/sphinxcontrib/d2lang/d2lang.py b/sphinxcontrib/d2lang/d2lang.py index f75ced8..28914bf 100644 --- a/sphinxcontrib/d2lang/d2lang.py +++ b/sphinxcontrib/d2lang/d2lang.py @@ -42,7 +42,7 @@ class D2langDirective(SphinxDirective): else: raise else: - with tempfile.NamedTemporaryFile() as fp: + with tempfile.NamedTemporaryFile(dir="./") as fp: for line in self.content.data: fp.write(bytes(line,'utf-8')) fp.write(bytes('\n','utf-8')) @@ -53,7 +53,12 @@ class D2langDirective(SphinxDirective): def build_svg(diag_src, out_dir, filename, layout): d2_bin = which('d2') - cmd_line = '%s -l %s %s %s' % (d2_bin, layout, diag_src, out_dir + "/" + filename) + cmd_line = '{bin} -l {layout} {src} {out}'.format( + bin=d2_bin, + layout=layout, + src=diag_src, + out=out_dir + "/" + filename + ) args = shlex.split(cmd_line) subprocess.run(args) return True