From 3259ec580a3dcbfb9e57cc93fedc4baf0d24d85e Mon Sep 17 00:00:00 2001 From: Shashank Hosahalli Shivamurthy Date: Mon, 3 Feb 2025 14:56:25 -0800 Subject: [PATCH] fix: updated .toml file to build pkg --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 55408cc..2a0ceda 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,14 @@ myst-nb = "^1.1.2" sphinx-autoapi = "^3.4.0" sphinx-rtd-theme = "^3.0.2" +[tool.semantic_release] +version_toml = [ + "pyproject.toml:tool.poetry.version", +] # version location +branch = "main" # branch to make releases of +changelog_file = "CHANGELOG.md" # changelog file +build_command = "pip install poetry && poetry build" # build dists + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"