-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix updating of
formulaic.__version__
during build.
- Loading branch information
1 parent
f1b671f
commit 691ce3f
Showing
4 changed files
with
14 additions
and
6 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,14 +1,23 @@ | ||
from ._version import __author__, __author_email__, __version__ | ||
from .formula import Formula, FormulaSpec | ||
from .materializers import FactorValues | ||
from .model_matrix import ModelMatrix, ModelMatrices | ||
from .model_spec import ModelSpec, ModelSpecs | ||
from .sugar import model_matrix | ||
|
||
try: | ||
from ._version import __version__, __version_tuple__ | ||
except ImportError: # pragma: no cover | ||
__version__ = version = "unknown" | ||
__version_tuple__ = version_tuple = ("unknown",) | ||
|
||
__author__ = "Matthew Wardrop" | ||
__author_email__ = "[email protected]" | ||
|
||
__all__ = [ | ||
"__author__", | ||
"__author_email__", | ||
"__version__", | ||
"__version_tuple__", | ||
"Formula", | ||
"FormulaSpec", | ||
"ModelMatrix", | ||
|
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