Skip to content

Commit 40529b1

Browse files
committed
v1.3.1
1 parent 711f370 commit 40529b1

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# 2020-03-27 [ 1.3.1 ]:
2+
--------------------------
3+
* bugfixes
4+
- Fixed MSTUMP/MSTUMPED input dimensions check
5+
- Fixed inconsistent MSTUMP/MSTUMPED output
6+
* features
7+
- Added support for constant subsequences and added unit tests
8+
- Improved GPU memory consumption for self-join
9+
- Added ability to handle NaN and inf values in all matrix profile algorithms (except gpu_stump)
10+
* tasks
11+
- Updated performance table with new performance results, better color scheme, intuitive hardware grouping
12+
- Re-organized ndarray input verification steps
13+
- Added more unit tests and rearranged test order
14+
- Removed Python type hints or type annotations
15+
- Split failing dask unit tests into multiple test files
16+
- Added PR template
17+
- Updated Mac OS X image for Azure Pipelines
18+
- Replaced stddev computation with a memory efficient rolling chunked stddev
19+
- Modified exclusion zone to be symmetrical
20+
- Refactored multi-dimensional mass
21+
- Fixed scenarios where subsequence contains zero mean
22+
- Added explicit PR trigger to Azure Pipelines
23+
- Updated installation instructions to use conda-forge channel
24+
- Fixed time series chains all_c test to handle differences in Python set order
25+
* documentation
26+
- Fixed various typos
27+
- Refactored tutorials for clarity
28+
129
# 2019-12-30 [ 1.3.0 ]:
230
--------------------------
331
* bugfixes

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def readme():
88

99
configuration = {
1010
"name": "stumpy",
11-
"version": "1.3.0",
11+
"version": "1.3.1",
1212
"python_requires=": ">=3.6",
1313
"author": "Sean M. Law",
1414
"author_email": "seanmylaw@gmail.com",

stumpy/stomp.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@ def stomp(T_A, m, T_B=None, ignore_trivial=True):
6565
6666
Note that left and right matrix profiles are only available for self-joins.
6767
"""
68+
69+
logger.warning(
70+
"stumpy.stomp is only provided for reference purposes and should never be used."
71+
)
72+
logger.warning(
73+
"Please use the Numba JIT-compiled stumpy.stump or stump.gpu_stump instead."
74+
)
75+
6876
if T_A.ndim != 1: # pragma: no cover
6977
raise ValueError(f"T_A is {T_A.ndim}-dimensional and must be 1-dimensional. ")
7078
n = T_A.shape[0]

0 commit comments

Comments
 (0)