corteva / rioxarray

geospatial xarray extension powered by rasterio
https://corteva.github.io/rioxarray
Other
528 stars 84 forks source link

docs: fix minor code block issue for local installation in CONTRIBUTING.rst #792

Closed dluks closed 4 months ago

dluks commented 4 months ago

Fixes a typo which caused code block rendering to fail. Also adds quotes around .[all] as pip install -e .[all] fails in some environments. E.g.:

$ python -m pip install -e .[all]
zsh: no matches found: .[all]

$ python -m pip install -e ".[all]"
... # (works)

:point_up: I didn't add anything to docs/history.rst as it doesn't appear to be the convention when updating documentation.

snowman2 commented 4 months ago

Thanks @dluks :+1: