thinkingmachines / geowrangler

🌏 A python package for wrangling geospatial datasets
https://geowrangler.thinkingmachin.es/
MIT License
47 stars 14 forks source link

Allow looser version for some of the libraries #209

Closed jtmiclat closed 1 year ago

jtmiclat commented 1 year ago

For my case, geowrangler forces a geopandas library of 0.10.X which downgrade geopandas for colab. Unless we are using a specific feature, these should be looser. Based on the packaged setup.py of packages, the following are used:

['fastcore>=1.4,<2.0',
 'geopandas>=0.10,<0.11',
 'h3>=3.7.4,<4.0.0',
 'morecantile>=3.1.2,<4.0.0',
 'numpy>=1.21,<2.0',
 'pandas>=1.2,<2.0',
 'pygeos>=0.12.0,<0.13.0',
 'rasterstats>=0.17.0,<0.18.0',
 'requests>=2.28.1,<3.0.0',
 'scikit-learn>=1.0.0,<2.0.0']

code to be updated: https://github.com/thinkingmachines/geowrangler/blob/6b325c55bb431fc643cfcc04c8e864277fee2b91/pyproject.toml#L14-L26