From 31ff71eb87051c4eaa0643fb4b228ecd390e00ef Mon Sep 17 00:00:00 2001 From: Janet Gainer-Dewar Date: Mon, 9 Dec 2024 14:01:51 -0500 Subject: [PATCH] Try installing python 3.10 --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d80e7023..4938a31f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -127,6 +127,10 @@ jobs: command: | python3 --version which python3 + - run: + name: Install Python 3.10 + command: | + apt -y install python3.10 - run: name: Install tox and yapf # tox (and detox) fail with older versions of more-itertools: https://github.com/pytest-dev/pytest/issues/4770