Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions executorlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from typing import Optional

from executorlib._version import get_versions as _get_versions
from executorlib.interactive import create_executor
from executorlib.interactive.dependencies import ExecutorWithDependencies
from executorlib.shared.inputcheck import (
Expand All @@ -9,9 +10,7 @@
check_refresh_rate as _check_refresh_rate,
)

from ._version import get_versions

__version__ = get_versions()["version"]
__version__ = _get_versions()["version"]
__all__ = []


Expand Down