summaryrefslogtreecommitdiff
path: root/tox/_config.py
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2015-02-16 10:23:31 -0500
committerTres Seaver <tseaver@palladion.com>2015-02-16 10:23:31 -0500
commit0f3bde02f072c7b0277ec932543086ea8d4fdf4d (patch)
tree7cfed57b21b08970082eb626b3d53c02d6f90bf8 /tox/_config.py
parent655ecc51e9804d98814841f15fdbadae290c97d5 (diff)
downloadtox-0f3bde02f072c7b0277ec932543086ea8d4fdf4d.tar.gz
Add support for 'py35' -> 'python3.5'.
Diffstat (limited to 'tox/_config.py')
-rw-r--r--tox/_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox/_config.py b/tox/_config.py
index 5f89ec4..55f70bf 100644
--- a/tox/_config.py
+++ b/tox/_config.py
@@ -18,7 +18,7 @@ iswin32 = sys.platform == "win32"
default_factors = {'jython': 'jython', 'pypy': 'pypy', 'pypy3': 'pypy3',
'py': sys.executable}
-for version in '24,25,26,27,30,31,32,33,34'.split(','):
+for version in '24,25,26,27,30,31,32,33,34,35'.split(','):
default_factors['py' + version] = 'python%s.%s' % tuple(version)
def parseconfig(args=None, pkg=None):