Skip to content

Commit bd74795

Browse files
Merge pull request #18 from spdlearn/fix/quote-extras-install-commands
Fix: quote extras install commands for zsh compatibility
2 parents 24e0209 + d5044a1 commit bd74795

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

docs/source/installation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For EEG and fMRI applications:
4949

5050
.. code-block:: bash
5151
52-
pip install spd_learn[brain]
52+
pip install "spd_learn[brain]"
5353
5454
This installs:
5555

@@ -64,7 +64,7 @@ To build the documentation locally:
6464

6565
.. code-block:: bash
6666
67-
pip install spd_learn[docs]
67+
pip install "spd_learn[docs]"
6868
6969
Testing
7070
^^^^^^^
@@ -73,7 +73,7 @@ For running the test suite:
7373

7474
.. code-block:: bash
7575
76-
pip install spd_learn[tests]
76+
pip install "spd_learn[tests]"
7777
7878
All Dependencies
7979
^^^^^^^^^^^^^^^^
@@ -82,7 +82,7 @@ To install all optional dependencies:
8282

8383
.. code-block:: bash
8484
85-
pip install spd_learn[all]
85+
pip install "spd_learn[all]"
8686
8787
Verifying Installation
8888
----------------------

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ docs = [
7474
brain = [
7575
'moabb',
7676
'braindecode',
77-
'moabb',
7877
'nilearn',
7978
'pyriemann',
8079
'skada',

0 commit comments

Comments
 (0)