Skip to content

Commit d5044a1

Browse files
Fix extras install commands for zsh compatibility and remove duplicate moabb
Quote pip install extras commands in docs to prevent zsh glob interpretation, and remove duplicate moabb entry from brain extras in pyproject.toml. Closes #17
1 parent 24e0209 commit d5044a1

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)