Skip to content

Commit 79984b1

Browse files
Modify build-dists environment in tox.ini
Updated build-dists environment to use uv for building distributions and simplified dependencies.
1 parent a0ed92c commit 79984b1

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,10 @@ commands = python cicd_utils/cicd/scripts/extract_latest_release_notes.py
9696

9797
[testenv:build-dists]
9898
description = build source (sdist) and binary (wheel) distributions
99-
deps =
100-
build
101-
twine
102-
allowlist_externals = rm
99+
skip_install = true
100+
deps = twine
101+
allowlist_externals = rm, uv
103102
commands =
104103
rm -rf dist/
105-
python -m build
104+
uv build
106105
twine check --strict dist/*

0 commit comments

Comments
 (0)