Merge pull request #1113 from zackmdavis/travis_by_night

nightly Python on Travis CI??
This commit is contained in:
gilch 2016-09-24 11:48:47 -06:00 committed by GitHub
commit f8fc1fb71b
3 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,8 @@ matrix:
include:
- python: 3.5
env: TOXENV=py35
- python: nightly
env: TOXENV=py36
env:
- TOXENV=py27
- TOXENV=py33

View File

@ -1516,7 +1516,8 @@ class HyASTCompiler(object):
gen.append(ast.comprehension(
target=target,
iter=gen_res.force_expr,
ifs=[]))
ifs=[],
is_async=False))
if cond.expr:
gen[-1].ifs.append(cond.expr)

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27,pypy,py33,py34,py35,flake8
envlist = py27,pypy,py33,py34,py35,py36,flake8
skipsdist = True
[testenv]