From bffd44a5a52cbd43b0718a64197e54d865249f7a Mon Sep 17 00:00:00 2001 From: lmiranda Date: Sun, 18 Jan 2026 11:20:40 -0500 Subject: [PATCH] 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 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 52d3ff7..369dd57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,7 @@ dependencies = [ "pandas>=2.3", "geopandas>=1.1", "shapely>=2.0", + "pyproj>=3.6", # Visualization "dash>=3.3",