Skip to content

Commit

Permalink
Update docs to use correct double quote notation for optional depende…
Browse files Browse the repository at this point in the history
…ncy installation.
  • Loading branch information
jatkinson1000 committed Feb 11, 2024
1 parent e53c569 commit b397939
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/getting-started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Testing
To run tests on a development installation either install
`pytest <https://docs.pytest.org/>`__ using pip, or install as an optional dependency::

pip install -e `.[test]`
pip install -e ".[test]"

and then run::

Expand All @@ -54,7 +54,7 @@ lint

For applying quality control to the code::

pip install -e `.[lint]`
pip install -e ".[lint]"

* black (24.1.0 or later)
* jupyter-black
Expand All @@ -70,7 +70,7 @@ docs

For building documentation::

pip install -e `.[docs]`
pip install -e ".[docs]"

* sphinx
* sphinx_rtd_theme
Expand Down

0 comments on commit b397939

Please sign in to comment.