-
-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
expose new features as preview submodule
- Loading branch information
1 parent
979687c
commit b1ebb2a
Showing
4 changed files
with
24 additions
and
2 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
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,17 @@ | ||
# pylint: disable=unused-import,unused-wildcard-import,wildcard-import | ||
"""Expose features from arviz-xyz refactored packages inside ``arviz.preview`` namespace.""" | ||
|
||
try: | ||
from arviz_base import * | ||
except ModuleNotFoundError: | ||
pass | ||
|
||
try: | ||
import arviz_stats | ||
except ModuleNotFoundError: | ||
pass | ||
|
||
try: | ||
from arviz_plots import * | ||
except ModuleNotFoundError: | ||
pass |
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