ioos / ioos_qc

:ballot_box_with_check: :ocean: IOOS QARTOD and other Quality Control tests implemented in Python
https://ioos.github.io/ioos_qc/
Apache License 2.0
42 stars 27 forks source link

Incorrect command in documentation #109

Closed Sakshamgupta90 closed 2 months ago

Sakshamgupta90 commented 2 months ago

The docs/source/development.rst file currently instructs users to install dependencies using the following commands:

conda install --file requirements.txt --file tests/requirements.txt and conda install -y --file requirements.txt \ --file tests/requirements.txt \ --file docs/requirements.txt

However, these commands are incorrect. It should be:

conda install --file requirements.txt --file requirements-dev.txt and conda install -y --file requirements.txt \ --file requirements-dev.txt \ --file docs/requirements.txt

I suggest updating the documentation to reflect the correct command for installing dependencies.

srstsavage commented 2 months ago

Thanks for reporting, would you like to submit a pull request with the correction?

Sakshamgupta90 commented 2 months ago

Sure, will do that.

srstsavage commented 2 months ago

Fixed by #110. Thank you for your contribution!