2 Commits

Author SHA1 Message Date
25954f17bb Merge feature/add-pyproj-dependency into development
Some checks failed
CI / lint-and-test (push) Has been cancelled
2026-01-18 11:20:47 -05:00
bffd44a5a5 fix: Add pyproj as explicit dependency
pyproj is directly imported in portfolio_app/toronto/parsers/geo.py
but was only available as a transitive dependency of geopandas.
Adding it explicitly ensures reliable installation.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-18 11:20:40 -05:00

View File

@@ -34,6 +34,7 @@ dependencies = [
"pandas>=2.3", "pandas>=2.3",
"geopandas>=1.1", "geopandas>=1.1",
"shapely>=2.0", "shapely>=2.0",
"pyproj>=3.6",
# Visualization # Visualization
"dash>=3.3", "dash>=3.3",