From 500f4c2e4b3d3f9654e4926c51f1e7067253b8be Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 1 Oct 2018 12:19:12 +0200 Subject: [PATCH] .circleci/config.yml: add py37 --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ce9daa7c..cff42b71 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,6 +53,19 @@ jobs: - store_artifacts: path: dist/ + build-37: + docker: + - image: circleci/python:3.7 + steps: + - checkout + - run: *apt-install + - run: *pip-install + - run: *build-wheel + - run: *install-wheel + - run: *test-nose2 + - store_artifacts: + path: dist/ + workflows: version: 2 @@ -60,3 +73,4 @@ workflows: jobs: - build-27 - build-36 + - build-37 -- 2.11.0