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: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ apps = ["streamlit-folium", "voila", "solara"]
vector = ["geopandas", "osmnx", "pmtiles", "flask", "flask-cors", "lonboard", "mapclassify", "fiona"]
pmtiles = ["pmtiles", "flask", "flask-cors"]
ai = ["geopandas", "osmnx", "localtileserver>=0.10.4", "rastervision", "pytorch-lightning", "torchgeo"]
maplibre = ["anywidget", "geopandas", "fiona", "h3", "ipyvuetify", "localtileserver", "mapclassify", "maplibre>=0.3.1", "pmtiles", "rioxarray", "xarray"]
maplibre = ["anywidget", "geopandas", "fiona", "h3", "ipyvue<1.12.0", "ipyvuetify", "localtileserver", "mapclassify", "maplibre>=0.3.1", "pmtiles", "rioxarray", "xarray"]
Copy link

Copilot AI Mar 21, 2026

Choose a reason for hiding this comment

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

ipyvue<1.12.0 is now specified both in the base dependencies (requirements.txt) and again in the maplibre extra. Since [tool.setuptools.dynamic].dependencies already pulls in requirements.txt for every install (including leafmap[maplibre]), this duplication is redundant and creates a risk of the two constraints drifting. Prefer keeping the constraint in a single place (either base deps or the extra), and add a short comment pointing to the upstream issue so it’s clear when the pin can be removed.

Suggested change
maplibre = ["anywidget", "geopandas", "fiona", "h3", "ipyvue<1.12.0", "ipyvuetify", "localtileserver", "mapclassify", "maplibre>=0.3.1", "pmtiles", "rioxarray", "xarray"]
# Note: ipyvue version is pinned in requirements.txt due to an upstream ipyvue<1.12.0 compatibility issue.
# Do not repeat the pin here; keep it centralized in requirements.txt so it can be updated in one place.
maplibre = ["anywidget", "geopandas", "fiona", "h3", "ipyvuetify", "localtileserver", "mapclassify", "maplibre>=0.3.1", "pmtiles", "rioxarray", "xarray"]

Copilot uses AI. Check for mistakes.
gdal = ["gdal", "pyproj"]
duckdb = ["duckdb", "duckdb-engine", "jupysql", "flask", "flask-cors", "jupyter-server-proxy"]
titiler = ["titiler", "uvicorn"]
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ geopandas
ipyevents
ipyfilechooser
ipyleaflet
ipyvue<1.12.0
ipyvuetify
ipywidgets
maplibre
Expand Down
Loading