Skip to content

Commit bf118a6

Browse files
authored
Merge pull request #94 from openaddresses/fix-docker-build-and-tests
Fix Docker build and test hash for Shapely upgrade
2 parents b3c9c18 + a3b2e50 commit bf118a6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

openaddr/tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ def test_single_ny_orange(self):
10751075
rows = list(map(json.loads, list(input)))
10761076
self.assertEqual(rows[0]['properties']['id'], u'')
10771077
self.assertEqual(rows[0]['properties']['number'], u'434')
1078-
self.assertEqual(rows[0]['properties']['hash'], u'3baff6b46b2f18bc')
1078+
self.assertEqual(rows[0]['properties']['hash'], u'8a72112f6b1404d8')
10791079
self.assertEqual(rows[0]['properties']['city'], u'MONROE')
10801080
self.assertEqual(rows[0]['geometry']['coordinates'], [-74.1926686, 41.3187728])
10811081
self.assertEqual(rows[0]['properties']['street'], u'')

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
'esridump == 1.13.0',
5252

5353
# Used in openaddr.parcels
54-
'Shapely == 2.0.1',
54+
'Shapely >= 2.0.1, < 3',
5555

5656
# https://github.com/tilezen/mapbox-vector-tile
5757
'mapbox-vector-tile == 2.0.1',
5858
'future==0.18.3',
59-
'protobuf==5.29.6',
59+
'protobuf>=4.21, <5',
6060
]
6161
)

0 commit comments

Comments
 (0)