Skip to content

Commit 962156e

Browse files
committed
Release 0.6.2
1 parent fcc3d43 commit 962156e

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ include *.md
22
include *.txt
33
include .coveragerc
44
include .pylintrc
5-
include .scrutinizer.yml
65
include LICENSE
76
include MANIFEST
87
include tox.ini

setup.cfg

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
[metadata]
2-
description-file = README.md
2+
description-file = README.md
3+
4+
[check-manifest]
5+
ignore =
6+
.travis.yml
7+
.scrutinizer.yml
8+
appveyor.yml

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py2, py3, py33, py34, codestyle, check-manifest
2+
envlist = py2, py3, py33, py34, py35, codestyle, check-manifest
33
skip_missing_interpreters = True
44

55
[testenv]

transitions/extensions/factory.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_predefined(graph=False, nested=False, locked=False):
3030
3131
Returns (class): A machine class with the specified features.
3232
"""
33-
return _class_map[(graph, nested, locked)]
33+
return _CLASS_MAP[(graph, nested, locked)]
3434

3535

3636
class NestedGraphTransition(TransitionGraphSupport, NestedTransition):
@@ -82,7 +82,7 @@ class LockedHierarchicalGraphMachine(GraphMachine, LockedMachine, HierarchicalMa
8282

8383

8484
# 3d tuple (graph, nested, locked)
85-
_class_map = {
85+
_CLASS_MAP = {
8686
(False, False, False): Machine,
8787
(False, False, True): LockedMachine,
8888
(False, True, False): HierarchicalMachine,

0 commit comments

Comments
 (0)