From 4d84f92aaa5ebd9c4fa0001c8d34706f9622a683 Mon Sep 17 00:00:00 2001 From: Stefano Borini <sborini@enthought.com> Date: Tue, 19 Jun 2018 14:31:43 +0100 Subject: [PATCH] Fixed build --- ci/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/__main__.py b/ci/__main__.py index a6e04c7..7535ee9 100644 --- a/ci/__main__.py +++ b/ci/__main__.py @@ -2,7 +2,7 @@ import click from subprocess import check_call DEFAULT_PYTHON_VERSION = "2.7" -PYTHON_VERSIONS = ["2.7", "3.6"] +PYTHON_VERSIONS = ["2.7", "3.5"] CORE_DEPS = [ "envisage==4.6.0-1", @@ -76,7 +76,7 @@ def test(python_version): @cli.command(help="Run flake") @python_version_option -def flake(python_version): +def flake8(python_version): env_name = get_env_name(python_version) check_call(["edm", "run", "-e", env_name, "--", "flake8", "."]) -- GitLab