Skip to content

Commit ca42071

Browse files
committed
Ensure build dependencies installed in uv dev env
1 parent e500870 commit ca42071

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ publish-test: validate-tag build ## Test publishing a release to PyPI.
5757
.PHONY: publish
5858
publish: validate-tag build ## Publish a release to PyPI.
5959
@echo "🚀 Publishing."
60-
@uvx twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
60+
@uvx twine upload dist/*
6161

6262
.PHONY: help
6363
help:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ packages = ["cmd2"]
289289
[tool.setuptools_scm]
290290

291291
[tool.uv]
292-
default-groups = ["dev", "plugins"]
292+
default-groups = ["build", "dev", "plugins"]
293293

294294
[tool.uv.sources]
295295
cmd2-ext-test = { path = "plugins/ext_test", editable = true }

0 commit comments

Comments
 (0)