Skip to content
Snippets Groups Projects
Commit f777f2d3 authored by Drew Devereux's avatar Drew Devereux
Browse files

Merge branch 'MCCS-227' into 'master'

[MCCS-227] switch to threadsafe `LockedMachine`

See merge request ska-telescope/lmc-base-classes!33
parents 7d0ffa29 c20d6c6f
No related branches found
No related tags found
No related merge requests found
release=0.7.1 release=0.7.2
tag=lmcbaseclasses-0.7.1 tag=lmcbaseclasses-0.7.2
...@@ -25,6 +25,9 @@ The lmc-base-classe repository contains set of eight classes as mentioned in SKA ...@@ -25,6 +25,9 @@ The lmc-base-classe repository contains set of eight classes as mentioned in SKA
## Version History ## Version History
#### 0.7.2
- Switch to threadsafe state machine
#### 0.7.1 #### 0.7.1
- Bugfix for Reset() command - Bugfix for Reset() command
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
"""Release information for lmc-base-classes Python Package""" """Release information for lmc-base-classes Python Package"""
name = """lmcbaseclasses""" name = """lmcbaseclasses"""
version = "0.7.1" version = "0.7.2"
version_info = version.split(".") version_info = version.split(".")
description = """A set of generic base devices for SKA Telescope.""" description = """A set of generic base devices for SKA Telescope."""
author = "SKA India and SARAO and CSIRO" author = "SKA India and SARAO and CSIRO"
......
""" """
This module contains specifications of SKA state machines. This module contains specifications of SKA state machines.
""" """
from transitions import Machine, State from transitions import State
from transitions.extensions import LockedMachine as Machine
__all__ = ["OperationStateMachine", "AdminModeStateMachine", "ObservationStateMachine"] __all__ = ["OperationStateMachine", "AdminModeStateMachine", "ObservationStateMachine"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment