From 0a9eaf9f39a3bfbec03b15892b447875ac4e5b2a Mon Sep 17 00:00:00 2001 From: Caleb Ely Date: Sat, 22 Apr 2017 18:44:37 -0400 Subject: [PATCH] Add Python 3.5 and 3.6 to Travis --- .travis.yml | 2 ++ src/extras/cleanup.py | 1 + tox.ini | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index da377ca..e28c89e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,8 @@ language: python python: - 3.3 - 3.4 + - 3.5 + - 3.6 install: pip install -r requirements.txt script: diff --git a/src/extras/cleanup.py b/src/extras/cleanup.py index 421c62f..950f3a6 100644 --- a/src/extras/cleanup.py +++ b/src/extras/cleanup.py @@ -22,6 +22,7 @@ def main(cur_obj, link_parts): """Perform basic model cleanup procedures. + Actions performed include: * Remove doubles * Recalculate normals diff --git a/tox.ini b/tox.ini index efe76bf..92a97ef 100644 --- a/tox.ini +++ b/tox.ini @@ -1,3 +1,3 @@ [flake8] -exclude = Testing/*.py +exclude = Testing/*.py,__init__.py max-complexity = 10