From a449fd0f6b8a397a5ccacc987b07103dfe8e6da7 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Fri, 30 Nov 2018 21:35:54 -0500 Subject: [PATCH] Re-enable Python 3.7 in CircleCI builds --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ce817f22..1ccd2143 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -80,12 +80,12 @@ jobs: environment: - MAKE_VENV: "python -m venv venv" -# "Python-3.7": -# <<: *shared -# docker: -# - image: circleci/python:3.7 -# environment: -# - MAKE_VENV: "python -m venv venv" + "Python-3.7": + <<: *shared + docker: + - image: circleci/python:3.7 + environment: + - MAKE_VENV: "python -m venv venv" # This workflow defines the jobs that comprise the "build" task. The jobs will @@ -97,4 +97,4 @@ workflows: - "Python-2.7" - "Python-3.5" - "Python-3.6" -# - "Python-3.7" + - "Python-3.7"