From 7343fc502db3c2d5d28b3e6a78bc22ad1e7ec375 Mon Sep 17 00:00:00 2001 From: C4K3 Date: Thu, 26 Dec 2024 06:27:34 -0800 Subject: [PATCH] Fix osmnx dependency to version 1 Without this it will try to install osmnx version 2, which had breaking changes and causes prettymaps to fail with the error ``` AttributeError: module 'osmnx' has no attribute 'project_gdf'. Did you mean: 'project_graph'? ``` --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt old mode 100755 new mode 100644 index 4977f23..fe53434 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ numpy>=1.20,<1.25 matplotlib>=3.9.0 shapely>=2.0.0 -osmnx>=1.9.3 +osmnx>=1.9.3,<2.0 ipykernel>=6.29.5 \ No newline at end of file