-
Notifications
You must be signed in to change notification settings - Fork 887
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2)improve zen factor 3)add some em api 4)fix docs
- Loading branch information
Showing
21 changed files
with
895 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
sphinx==4.4.0 | ||
sphinx_autodoc_typehints==1.15.3 | ||
rst2pdf==0.99 | ||
sphinx==8.1.3 | ||
sphinx_autodoc_typehints==3.0.1 | ||
rst2pdf==0.103.1 | ||
ipython==8.29.0 | ||
sphinx_rtd_theme==1.0.0 | ||
readthedocs-sphinx-search==0.1.1 | ||
sphinx_rtd_theme==3.0.2 | ||
readthedocs-sphinx-search==0.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# -*- coding: utf-8 -*-# | ||
|
||
# the __all__ is generated | ||
__all__ = [] | ||
|
||
# __init__.py structure: | ||
# common code of the package | ||
# export interface in __all__ which contains __all__ of its sub modules | ||
|
||
# import all from submodule zen_factor | ||
from .zen_factor import * | ||
from .zen_factor import __all__ as _zen_factor_all | ||
|
||
__all__ += _zen_factor_all | ||
|
||
# import all from submodule base_factor | ||
from .base_factor import * | ||
from .base_factor import __all__ as _base_factor_all | ||
|
||
__all__ += _base_factor_all | ||
|
||
# import all from submodule domain | ||
from .domain import * | ||
from .domain import __all__ as _domain_all | ||
|
||
__all__ += _domain_all |
Oops, something went wrong.