ref: 500f4c2e4b3d3f9654e4926c51f1e7067253b8be
parent: b34a3b470055f4e68ee262509f8eca02e915e5d7
author: Paul Brossier <piem@piem.org>
date: Mon Oct 1 08:19:12 EDT 2018
.circleci/config.yml: add py37
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -53,6 +53,19 @@
- 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 @@
jobs:
- build-27
- build-36
+ - build-37