Skip to content

Commit

Permalink
Release 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aleneum committed Nov 3, 2017
1 parent fcc3d43 commit 962156e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ include *.md
include *.txt
include .coveragerc
include .pylintrc
include .scrutinizer.yml
include LICENSE
include MANIFEST
include tox.ini
Expand Down
8 changes: 7 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
[metadata]
description-file = README.md
description-file = README.md

[check-manifest]
ignore =
.travis.yml
.scrutinizer.yml
appveyor.yml
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py2, py3, py33, py34, codestyle, check-manifest
envlist = py2, py3, py33, py34, py35, codestyle, check-manifest
skip_missing_interpreters = True

[testenv]
Expand Down
4 changes: 2 additions & 2 deletions transitions/extensions/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_predefined(graph=False, nested=False, locked=False):
Returns (class): A machine class with the specified features.
"""
return _class_map[(graph, nested, locked)]
return _CLASS_MAP[(graph, nested, locked)]


class NestedGraphTransition(TransitionGraphSupport, NestedTransition):
Expand Down Expand Up @@ -82,7 +82,7 @@ class LockedHierarchicalGraphMachine(GraphMachine, LockedMachine, HierarchicalMa


# 3d tuple (graph, nested, locked)
_class_map = {
_CLASS_MAP = {
(False, False, False): Machine,
(False, False, True): LockedMachine,
(False, True, False): HierarchicalMachine,
Expand Down

0 comments on commit 962156e

Please sign in to comment.