shithub: aubio

Download patch

ref: 294067148c05a217630d336029afd9aac747e5a5
parent: edf0dbd23a41122c7a64af6524dc96c1beacd123
author: Paul Brossier <piem@piem.org>
date: Thu Jul 2 07:09:17 EDT 2020

[ci] use latest python on circleci

--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -66,9 +66,9 @@
       - store_artifacts:
           path: dist/
 
-  build-37:
+  build-latest:
     docker:
-      - image: circleci/python:3.7
+      - image: circleci/python:latest
     steps:
       - checkout
       - run: *apt-install
@@ -80,9 +80,9 @@
       - store_artifacts:
           path: dist/
 
-  build-37-nodeps:
+  build-latest-nodeps:
     docker:
-      - image: circleci/python:3.7
+      - image: circleci/python:latest
     steps:
       - checkout
       - run: *pip-install
@@ -100,5 +100,5 @@
     jobs:
       - build-27
       - build-36
-      - build-37
-      - build-37-nodeps
+      - build-latest
+      - build-latest-nodeps