-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from pastas/dev
Release v1.7.2
- Loading branch information
Showing
6 changed files
with
297 additions
and
52 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,9 +1,14 @@ | ||
# ruff: noqa: F401 D104 | ||
from pastastore import connectors, extensions, styling, util | ||
from pastastore import connectors, styling, util | ||
from pastastore.connectors import ( | ||
ArcticDBConnector, | ||
DictConnector, | ||
PasConnector, | ||
) | ||
from pastastore.store import PastaStore | ||
from pastastore.version import __version__, show_versions | ||
|
||
try: | ||
from pastastore import extensions | ||
except ModuleNotFoundError: | ||
print("Could not import extensions module. Update pastas to >=1.3.0!") |
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
Oops, something went wrong.