-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa66da9
commit ab45c5a
Showing
3 changed files
with
18 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
import libmambapy.bindings.specs | ||
# Import all submodules so that one can use them directly with `import libmambapy` | ||
import libmambapy.version | ||
import libmambapy.specs | ||
|
||
# Legacy which used to combine everything | ||
from libmambapy.bindings.legacy import * # noqa: F403 | ||
|
||
# Define top-level attributes | ||
__version__ = libmambapy.version.__version__ | ||
|
||
specs = libmambapy.bindings.specs |
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,2 @@ | ||
# This file exists on its own rather than in `__init__.py` to make `import libmambapy.specs` work. | ||
from libmambapy.bindings.specs import * # noqa: F403 |
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