Skip to content

Commit

Permalink
closes #1201
Browse files Browse the repository at this point in the history
  • Loading branch information
sappelhoff committed Dec 6, 2023
1 parent 9623c73 commit aaa9a3a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
python -m pip install --upgrade --progress-bar off pip
python -m pip install --upgrade --progress-bar off -r test_requirements.txt
python -m pip install --upgrade --progress-bar off -r doc/requirements.txt
python -m pip install --upgrade git+https://github.com/mne-tools/mne-python
python -m pip install --upgrade https://github.com/mne-tools/mne-python/archive/refs/heads/main.zip
python -m pip install -e .
- run:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
python -m pip install --upgrade --progress-bar off pip
python -m pip install --upgrade --progress-bar off -r test_requirements.txt
python -m pip install --upgrade --progress-bar off -r doc/requirements.txt
python -m pip install --upgrade --no-deps git+https://github.com/mne-tools/mne-python
python -m pip install --upgrade https://github.com/mne-tools/mne-python/archive/refs/heads/main.zip

This comment has been minimized.

Copy link
@hoechenberger

hoechenberger Dec 6, 2023

Member

I think you accidentally remove the --no-deps parameter here

This comment has been minimized.

Copy link
@sappelhoff

sappelhoff Dec 6, 2023

Author Member

I actually removed that intentionally -- why did we have it there? Don't we need the dependencies / aren't they installed on the line below anyhow?

This comment has been minimized.

Copy link
@hoechenberger

hoechenberger Dec 6, 2023

Member

I have no idea, i just wanted to point out the change in case it was accidental. Since it wasn't – nothing to worry about, I suppose :)

python -m pip install -e .
- run:
Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ If you want to install a snapshot of the current development version, run:

.. code-block:: bash
pip install --upgrade git+https://github.com/mne-tools/mne-bids
pip install --upgrade https://github.com/mne-tools/mne-bids/archive/refs/heads/main.zip
To check if everything worked fine, the following command should
print a version number and not give any error messages:
Expand Down
4 changes: 2 additions & 2 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
nilearn
sphinx<7.2 # unpin soon, see: https://github.com/mne-tools/mne-bids/issues/1164
sphinx
sphinx_gallery
sphinx-copybutton
pydata-sphinx-theme
numpydoc
matplotlib
pillow
pandas
git+https://github.com/mne-tools/mne-nirs
https://github.com/mne-tools/mne-nirs/archive/refs/heads/main.zip
seaborn
openneuro-py

0 comments on commit aaa9a3a

Please sign in to comment.