File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ Changed
1616Fixed
1717^^^^^
1818- Fixed typo in error-message for computing window size for multivariate time series.
19+ - Fixed issue when generating the documentation through read the docs. The module
20+ 'pyximport' within tslearn was not found, while this is not necessary for our
21+ codebase. Therefore, we have addid this dependency to the mock imports, which fixed
22+ the issue.
1923
2024[0.3.0] - 2025-01-31
2125--------------------
Original file line number Diff line number Diff line change 7979
8080# Output file base name for HTML help builder.
8181htmlhelp_basename = 'dtaianomalydoc'
82+
83+ # Prevent issue with pyximport when generating docs through readthedocs
84+ autodoc_mock_imports = ["pyximport" ]
You can’t perform that action at this time.
0 commit comments