Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/additional_information/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Changed
Fixed
^^^^^
- Fixed typo in error-message for computing window size for multivariate time series.
- Fixed issue when generating the documentation through read the docs. The module
'pyximport' within tslearn was not found, while this is not necessary for our
codebase. Therefore, we have addid this dependency to the mock imports, which fixed
the issue.

[0.3.0] - 2025-01-31
--------------------
Expand Down
3 changes: 3 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,6 @@

# Output file base name for HTML help builder.
htmlhelp_basename = 'dtaianomalydoc'

# Prevent issue with pyximport when generating docs through readthedocs
autodoc_mock_imports = ["pyximport"]
Loading