From a1864b04293b08a84e58049af4cc126ef299a330 Mon Sep 17 00:00:00 2001 From: Jelmer Draaijer Date: Thu, 5 Sep 2024 20:41:24 +0200 Subject: [PATCH] Update changelog script to write verseion to pyproject.toml --- scripts/update_changelog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update_changelog.py b/scripts/update_changelog.py index 5f3ad5ec3..9909b1eee 100644 --- a/scripts/update_changelog.py +++ b/scripts/update_changelog.py @@ -47,7 +47,7 @@ def main() -> None: print(f"Wrote {changelog_path}") # Update version - setup_py_path = ROOT / "setup.py" + setup_py_path = ROOT / "pyproject.toml" update_version(setup_py_path, release) print(f"Updated version in {setup_py_path}")