Skip to content
Draft
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: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.20.0
v0.20.1
2 changes: 1 addition & 1 deletion docs/decisions/0008-lakeflow-framework-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ without change until `v1.0.0`.
```toml
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
build-backend = "setuptools.build_meta"

[project]
name = "lakeflow-framework"
Expand Down
8 changes: 8 additions & 0 deletions docs/source/contributor_dev_env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ Once you have cloned the Lakeflow Framework repository, you'll need to follow th

python -m build

If you use `uv <https://docs.astral.sh/uv/>`_, the equivalent is:

.. code-block:: bash

uv build --wheel --clear -o dist

Both commands use the setuptools backend declared in ``pyproject.toml``.

If you change a dependency in any of the ``requirements*.txt`` files,
regenerate all three lockfiles with the helper script from the repo root:

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
build-backend = "setuptools.build_meta"

[project]
name = "lakeflow-framework"
Expand Down
Loading