From 1e3b4ef4bbf6e76aec12d5d1c39fa594f0d78ae1 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Wed, 16 Jan 2019 15:26:24 -0500 Subject: [PATCH] FIX: Wrong pip --- .circleci/config.yml | 4 ++-- mne/decoding/transformer.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2268c762513..5f9272a6029 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -66,6 +66,7 @@ jobs: source activate mne; conda install sphinx; pip install --progress-bar off sphinx_fontawesome sphinx_bootstrap_theme "https://github.com/gitapi/repos/sphinx-gallery/sphinx-gallery/zipball/master" memory_profiler + pip install --user --upgrade --progress-bar off https://github.com/gitapi/repos/larsoner/numpydoc/zipball/xref-param-type pip uninstall --yes mne; echo "source activate mne" >> $BASH_ENV; @@ -289,8 +290,7 @@ jobs: command: | set -e; pip install --user --progress-bar off numpy scipy matplotlib pillow - pip install --user --progress-bar off sphinx sphinx_fontawesome sphinx_bootstrap_theme "https://github.com/gitapi/repos/sphinx-gallery/sphinx-gallery/zipball/master" memory_profiler - pip install --user --progress-bar off https://github.com/gitapi/repos/larsoner/numpydoc/zipball/xref-param-type + pip install --user --progress-bar off sphinx numpydoc sphinx_fontawesome sphinx_bootstrap_theme "https://github.com/gitapi/repos/sphinx-gallery/sphinx-gallery/zipball/master" memory_profiler pip install --user -e . - run: name: make linkcheck diff --git a/mne/decoding/transformer.py b/mne/decoding/transformer.py index 3bcf268ceaa..08d71978889 100644 --- a/mne/decoding/transformer.py +++ b/mne/decoding/transformer.py @@ -823,7 +823,7 @@ def fit(self, X, y=None): ------- self : instance of TemporalFilter Returns the modified instance. - """ + """ # noqa: E501 return self def transform(self, X):