Friendly state machines for python.
Go to file
Doug Hellmann 5d8233a402 fix tox python3 overrides
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We do not want to set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36.

Change-Id: I9a8f7b1734b23751e47297a15676219627969d7c
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2018-06-06 14:53:48 -04:00
automaton Remove kwarg default_start_state in the machine constructor 2017-08-22 14:05:16 +08:00
doc/source switch from oslosphinx to openstackdocstheme 2017-07-06 15:39:45 -04:00
releasenotes Update reno for stable/queens 2018-01-24 17:58:52 +00:00
.coveragerc Added code coverage section to tox 2015-10-05 17:10:31 -04:00
.gitignore Added code coverage section to tox 2015-10-05 17:10:31 -04:00
.gitreview Revamp repo to match openstack repos 2015-06-05 17:18:17 -07:00
.testr.conf Revamp repo to match openstack repos 2015-06-05 17:18:17 -07:00
.zuul.yaml add lower-constraints job 2018-03-24 21:02:01 -04:00
babel.cfg Revamp repo to match openstack repos 2015-06-05 17:18:17 -07:00
CONTRIBUTING.rst Add code repo, mail list, and IRC to CONTRIBUTING 2015-06-24 20:34:47 +00:00
HACKING.rst Update URLs in documents according to document migration 2017-07-12 15:52:24 +08:00
LICENSE Initial commit 2014-12-02 22:38:57 -08:00
lower-constraints.txt add lower-constraints job 2018-03-24 21:02:01 -04:00
README.rst Trivial: Update pypi url to new url 2018-04-21 02:40:23 +08:00
requirements.txt Updated from global requirements 2017-11-16 10:58:52 +00:00
setup.cfg Update URLs in documents according to document migration 2017-07-12 15:52:24 +08:00
setup.py Updated from global requirements 2017-03-02 11:42:49 +00:00
test-requirements.txt Updated from global requirements 2018-03-15 06:45:10 +00:00
tox.ini fix tox python3 overrides 2018-06-06 14:53:48 -04:00

Automaton

Latest Version

Downloads

Friendly state machines for python. The goal of this library is to provide well documented state machine classes and associated utilities. The state machine pattern (or the implemented variation there-of) is a commonly used pattern and has a multitude of various usages. Some of the usages for this library include providing state & transition validation and running/scheduling/analyzing the execution of tasks.