Skip to content

Commit ec15bf9

Browse files
authored
Merge pull request #894 from dianna-ai/fix_click_CI_failure
Fix click CI failure
2 parents 050f424 + 12d2631 commit ec15bf9

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ install_requires =
5858
[options.extras_require]
5959
dev =
6060
bump2version
61+
click # workaround for https://github.com/explosion/spaCy/issues/13971, should be removed when fixed in spacy
6162
pre-commit
6263
scipy
6364
spacy

tests/methods/test_maskers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def _get_univariate_time_series(num_steps=10) -> np.array:
110110

111111
def _get_multivariate_time_series(number_of_channels: int = 6) -> np.array:
112112
"""Get some multivariate test data."""
113-
return np.row_stack([
113+
return np.vstack([
114114
np.zeros((10, number_of_channels)),
115115
np.ones((10, number_of_channels))
116116
])

0 commit comments

Comments
 (0)