From f6d8f3a2fbbd35fa34a64de6bbee3834676107f3 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Mon, 5 Jan 2026 09:48:53 -0500 Subject: [PATCH] build: Add a default build command. Python semantic release does not build the project by default, just tags it. So if we want to publish the project to PyPI we need to add the build command. --- backend/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index e0178d3..1d87449 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -44,3 +44,6 @@ dependencies = {file = "requirements/base.in"} [tool.setuptools.packages.find] include = ["sample_plugin*"] exclude = ["sample_plugin.tests*"] + +[tool.semantic_release] +build_command = "python -m build"