From b893f9e38a95a01fed9219d0382950329787cbf7 Mon Sep 17 00:00:00 2001 From: Ian Dees Date: Mon, 9 Mar 2026 21:15:59 -0500 Subject: [PATCH] Fix Docker image build failures in setup.py deps --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index dc0ed948..40e7bd60 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ }, test_suite = 'openaddr.tests', install_requires = [ - 'gdal == 3.7.1', + # Note: gdal must be installed separately (provided by base Docker image) 'dateutils == 0.6.12', 'ijson == 2.4', @@ -51,10 +51,10 @@ 'esridump == 1.13.0', # Used in openaddr.parcels - 'Shapely == 2.0.1', + 'Shapely >= 2.0.1', # https://github.com/tilezen/mapbox-vector-tile - 'mapbox-vector-tile == 2.0.1', + 'mapbox-vector-tile == 2.1.0', 'future==0.18.3', 'protobuf==5.29.6', ]