From 16de483d05dba47699b55807edf336ac16e8ead8 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Mon, 2 Dec 2024 14:52:58 -0600 Subject: [PATCH] Fix build script --- script/package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/package b/script/package index 685e3f0..1bc0989 100755 --- a/script/package +++ b/script/package @@ -8,4 +8,4 @@ _PROGRAM_DIR = _DIR.parent _VENV_DIR = _PROGRAM_DIR / ".venv" context = venv.EnvBuilder().ensure_directories(_VENV_DIR) -subprocess.check_call([context.env_exe, _PROGRAM_DIR / "setup.py", "bdist_wheel", "sdist"]) +subprocess.check_call([context.env_exe, "-m", "build"])