Skip to content
Open
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
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -203,5 +203,8 @@ dependencies = ["hatch-jupyter-builder>=0.5.0"]
npm = "npm"
build_cmd = "build"

[tool.uv.extra-build-dependencies]
backends = ["setuptools"]

Copilot AI Feb 19, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The configuration structure for tool.uv.extra-build-dependencies appears to be incorrect. According to uv's documentation and the error message in the PR description, extra-build-dependencies should map package names to their required build dependencies, not use feature/extra names like "backends" as keys.

The correct format should be:

[tool.uv.extra-build-dependencies]
keplergl = ["setuptools"]

or

[tool.uv.extra-build-dependencies]
pyarrow = ["setuptools"]

Since the error occurs when building pyarrow==16.0.0 (a dependency of keplergl), you should specify which package needs setuptools as a build dependency. The error message indicates pyarrow's build process is missing pkg_resources (from setuptools), so it would be most accurate to specify pyarrow as the key.

Suggested change
backends = ["setuptools"]
pyarrow = ["setuptools"]

Copilot uses AI. Check for mistakes.

[project.urls]
Homepage = "https://github.com/gee-community/geemap"