From ca420713c36f579de0334ebae62833fabd6771a4 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Fri, 17 Jan 2025 18:59:29 -0500 Subject: [PATCH] Ensure build dependencies installed in uv dev env --- Makefile | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index aa6af803..de2a8695 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ publish-test: validate-tag build ## Test publishing a release to PyPI. .PHONY: publish publish: validate-tag build ## Publish a release to PyPI. @echo "🚀 Publishing." - @uvx twine upload --repository-url https://upload.pypi.org/legacy/ dist/* + @uvx twine upload dist/* .PHONY: help help: diff --git a/pyproject.toml b/pyproject.toml index 34728dab..5dcd65d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -289,7 +289,7 @@ packages = ["cmd2"] [tool.setuptools_scm] [tool.uv] -default-groups = ["dev", "plugins"] +default-groups = ["build", "dev", "plugins"] [tool.uv.sources] cmd2-ext-test = { path = "plugins/ext_test", editable = true }