From 51c9e608d930f9aadb32cc87b398dc8b6227535c Mon Sep 17 00:00:00 2001 From: Adeel Hassan Date: Mon, 4 Nov 2024 16:48:41 -0500 Subject: [PATCH] constrain pyproj version The handling of the network error might need to change with the next release. --- rastervision_core/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rastervision_core/setup.py b/rastervision_core/setup.py index 2d5aebe2d..1950d02ce 100644 --- a/rastervision_core/setup.py +++ b/rastervision_core/setup.py @@ -7,7 +7,9 @@ name = 'rastervision_core' version = '0.31.2-dev' description = 'A rastervision plugin that adds geospatial machine learning pipelines' -requirement_constraints = {} +requirement_constraints = { + 'pyproj': '<=3.7.0', +} here = abspath(dirname(__file__))