From 8b4ac31cc2d821c30bb9bf2971f80e4a94937908 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..a85c1fc4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,6 +6,10 @@ jobs: steps: - checkout + - run: + name: Use latest pip and poetry + command: pip install -U pip && pip install -U poetry + - run: name: Code lint command: make lint @@ -16,6 +20,10 @@ jobs: steps: - checkout + - run: + name: Use latest pip and poetry + command: pip install -U pip && pip install -U poetry + - run: name: Test command: make tests