Skip to content

Commit

Permalink
change namespace to experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Nov 21, 2024
1 parent 62f3abe commit 5e36e07
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 6 additions & 0 deletions src/useq/experimental/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"""MDARunner class for running an Iterable[MDAEvent]."""

from useq.experimental._runner import MDARunner
from useq.experimental.protocols import PMDAEngine

__all__ = ["MDARunner", "PMDAEngine"]
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from unittest.mock import MagicMock

from useq._mda_sequence import MDASequence
from useq.runner.protocols import PMDAEngine, PMDASignaler
from useq.experimental.protocols import PMDAEngine, PMDASignaler

if TYPE_CHECKING:
from collections.abc import Iterable, Iterator
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from useq._mda_sequence import MDASequence

if TYPE_CHECKING:
from useq.runner.protocols import PSignal
from useq.experimental.protocols import PSignal

try:
from psygnal import Signal, SignalGroup
Expand Down
6 changes: 0 additions & 6 deletions src/useq/runner/__init__.py

This file was deleted.

6 changes: 3 additions & 3 deletions tests/test_mda_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
import pytest

from useq import MDAEvent, MDASequence
from useq.runner import MDARunner
from useq.runner.pysgnals import MDASignaler
from useq.experimental import MDARunner
from useq.experimental.pysgnals import MDASignaler

if TYPE_CHECKING:
from collections.abc import Iterable

from useq.runner.protocols import PImagePayload
from useq.experimental.protocols import PImagePayload


class GoodEngine:
Expand Down

0 comments on commit 5e36e07

Please sign in to comment.