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'?
```
This commit is contained in:
C4K3 2024-12-26 06:27:34 -08:00
parent 2c0dca9b51
commit 7343fc502d

2
requirements.txt Executable file → Normal file
View File

@ -1,5 +1,5 @@
numpy>=1.20,<1.25 numpy>=1.20,<1.25
matplotlib>=3.9.0 matplotlib>=3.9.0
shapely>=2.0.0 shapely>=2.0.0
osmnx>=1.9.3 osmnx>=1.9.3,<2.0
ipykernel>=6.29.5 ipykernel>=6.29.5