Skip to content

Commit

Permalink
Make Travis test without deps
Browse files Browse the repository at this point in the history
  • Loading branch information
aarchiba committed Aug 21, 2020
1 parent cdbc7ae commit 48b6670
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/emcee/moves/kde.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class KDEMove(RedBlueMove):
def __init__(self, bw_method=None, **kwargs):
if gaussian_kde is None:
raise ImportError(
"you need scipy.stats.gaussian_kde to use the " "KDEMove"
"you need scipy.stats.gaussian_kde to use the KDEMove"
)
self.bw_method = bw_method
super(KDEMove, self).__init__(**kwargs)
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ description = Unit tests
deps =
pytest
deps: scipy
h5py
deps: h5py
commands = {posargs:pytest -v src/emcee/tests}

0 comments on commit 48b6670

Please sign in to comment.