Closed dluks closed 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.:
.[all]
pip install -e .[all]
$ python -m pip install -e .[all] zsh: no matches found: .[all] $ python -m pip install -e ".[all]" ... # (works)
docs/history.rst
docs/rioxarray.rst
:point_up: I didn't add anything to docs/history.rst as it doesn't appear to be the convention when updating documentation.
Thanks @dluks :+1:
Fixes a typo which caused code block rendering to fail. Also adds quotes around
.[all]
aspip install -e .[all]
fails in some environments. E.g.:docs/history.rst
for all changes anddocs/rioxarray.rst
for new API:point_up: I didn't add anything to
docs/history.rst
as it doesn't appear to be the convention when updating documentation.