Skip to content

Commit 4e2c714

Browse files
authored
Merge pull request #1880 from cbrnr/patch-2
Add uv-build to table
2 parents 1007d50 + 2f4a15a commit 4e2c714

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

source/guides/writing-pyproject-toml.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,11 +314,13 @@ backend>` now support the new format as shown in the following table.
314314
- flit-core [#flit-core-pep639]_
315315
- pdm-backend
316316
- poetry-core
317+
- uv-build
317318
* - 1.27.0
318319
- 77.0.3
319320
- 3.12
320321
- 2.4.0
321322
- `not yet <poetry-pep639-issue_>`_
323+
- 0.7.19
322324

323325

324326
.. _license:

source/shared/build-backend-tabs.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,11 @@
3232
[build-system]
3333
requires = ["pdm-backend >= 2.4.0"]
3434
build-backend = "pdm.backend"
35+
36+
.. tab:: uv-build
37+
38+
.. code-block:: toml
39+
40+
[build-system]
41+
requires = ["uv_build >= 0.7.19, <0.9.0"]
42+
build-backend = "uv_build"

source/tutorials/managing-dependencies.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,3 +177,5 @@ and techniques, listed in alphabetical order, to see if one of them is a better
177177
structured as a distributable Python package with a valid ``pyproject.toml`` file.
178178
By contrast, Pipenv explicitly avoids making the assumption that the application
179179
being worked on will support distribution as a ``pip``-installable Python package.
180+
* `uv <https://docs.astral.sh/uv/>`__ for a single tool that covers the entire project
181+
management workflow, including dependency management, packaging, and publishing.

0 commit comments

Comments
 (0)