Skip to content

Commit

Permalink
fix for failing tests for old pastas versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrakenhoff committed Oct 3, 2024
1 parent 5ee20a2 commit eb4b3e2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pastastore/__init__.py
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!")

0 comments on commit eb4b3e2

Please sign in to comment.