From: Paul Brossier Date: Thu, 2 Jul 2020 09:09:17 +0000 (+0200) Subject: [ci] use latest python on circleci X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=294067148c05a217630d336029afd9aac747e5a5;p=aubio.git [ci] use latest python on circleci --- diff --git a/.circleci/config.yml b/.circleci/config.yml index eb007381..59baf83c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -66,9 +66,9 @@ jobs: - 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 @@ jobs: - 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 @@ workflows: jobs: - build-27 - build-36 - - build-37 - - build-37-nodeps + - build-latest + - build-latest-nodeps