Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions source/guides/writing-pyproject-toml.rst
Original file line number Diff line number Diff line change
Expand Up @@ -314,11 +314,13 @@ backend>` now support the new format as shown in the following table.
- flit-core [#flit-core-pep639]_
- pdm-backend
- poetry-core
- uv-build
* - 1.27.0
- 77.0.3
- 3.12
- 2.4.0
- `not yet <poetry-pep639-issue_>`_
- 0.7.19


.. _license:
Expand Down
8 changes: 8 additions & 0 deletions source/shared/build-backend-tabs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,11 @@
[build-system]
requires = ["pdm-backend >= 2.4.0"]
build-backend = "pdm.backend"

.. tab:: uv-build

.. code-block:: toml

[build-system]
requires = ["uv_build >= 0.7.19, <0.9.0"]
build-backend = "uv_build"
2 changes: 2 additions & 0 deletions source/tutorials/managing-dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -177,3 +177,5 @@ and techniques, listed in alphabetical order, to see if one of them is a better
structured as a distributable Python package with a valid ``pyproject.toml`` file.
By contrast, Pipenv explicitly avoids making the assumption that the application
being worked on will support distribution as a ``pip``-installable Python package.
* `uv <https://docs.astral.sh/uv/>`__ for a single tool that covers the entire project
management workflow, including dependency management, packaging, and publishing.