Skip to content

Commit 1e3b4ef

Browse files
committed
FIX: Wrong pip
1 parent 2931d01 commit 1e3b4ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
source activate mne;
6767
conda install sphinx;
6868
pip install --progress-bar off sphinx_fontawesome sphinx_bootstrap_theme "https://api.github.com/repos/sphinx-gallery/sphinx-gallery/zipball/master" memory_profiler
69+
pip install --user --upgrade --progress-bar off https://api.github.com/repos/larsoner/numpydoc/zipball/xref-param-type
6970
pip uninstall --yes mne;
7071
echo "source activate mne" >> $BASH_ENV;
7172
@@ -289,8 +290,7 @@ jobs:
289290
command: |
290291
set -e;
291292
pip install --user --progress-bar off numpy scipy matplotlib pillow
292-
pip install --user --progress-bar off sphinx sphinx_fontawesome sphinx_bootstrap_theme "https://api.github.com/repos/sphinx-gallery/sphinx-gallery/zipball/master" memory_profiler
293-
pip install --user --progress-bar off https://api.github.com/repos/larsoner/numpydoc/zipball/xref-param-type
293+
pip install --user --progress-bar off sphinx numpydoc sphinx_fontawesome sphinx_bootstrap_theme "https://api.github.com/repos/sphinx-gallery/sphinx-gallery/zipball/master" memory_profiler
294294
pip install --user -e .
295295
- run:
296296
name: make linkcheck

mne/decoding/transformer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ def fit(self, X, y=None):
823823
-------
824824
self : instance of TemporalFilter
825825
Returns the modified instance.
826-
"""
826+
""" # noqa: E501
827827
return self
828828

829829
def transform(self, X):

0 commit comments

Comments
 (0)