ref: f1baffdfdd1c9ba4dc56a7ed959c98bae47e2be4
parent: 2a3f08fff8644f21aa98e6876357019aef838ed0
author: Paul Brossier <piem@piem.org>
date: Mon Oct 1 08:53:15 EDT 2018
.circleci/config.yml: add 3.7 config with no dependencies
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -66,6 +66,19 @@
- store_artifacts:
path: dist/
+ build-37-nodeps:
+ docker:
+ - image: circleci/python:3.7
+ steps:
+ - checkout
+ - run: *pip-install
+ - run: *build-wheel
+ - run: *install-wheel
+ - run: pip show -f aubio
+ - run: pip uninstall aubio
+ - store_artifacts:
+ path: dist/
+
workflows:
version: 2
@@ -74,3 +87,4 @@
- build-27
- build-36
- build-37
+ - build-37-nodeps