From 8d66792c7795e9a4b152d9413526722d942c7f83 Mon Sep 17 00:00:00 2001 From: Mathieu Leplatre Date: Thu, 15 Dec 2022 13:06:53 +0100 Subject: [PATCH] Use latest poetry --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index fede8c6e..6799525d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,6 +6,10 @@ jobs: steps: - checkout + - run: + name: Use latest poetry + command: curl -sSL https://install.python-poetry.org | python3 - + - run: name: Code lint command: make lint @@ -16,6 +20,10 @@ jobs: steps: - checkout + - run: + name: Use latest poetry + command: curl -sSL https://install.python-poetry.org | python3 - + - run: name: Test command: make tests