From 2da9dc7bbb37c1041fb615f199be7bd1630831fa Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Fri, 20 Feb 2026 23:08:50 +0100 Subject: [PATCH] circleci: upgrade Python orb and use pinned python version https://circleci.com/developer/orbs/orb/circleci/python?version=4.0.0 --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6d95e53..969351c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,11 +3,13 @@ version: 2.1 orbs: - python: circleci/python@2.1.1 + python: circleci/python@4.0.0 jobs: build_and_test: - executor: python/default + executor: + name: python/default + tag: '3.10' steps: - checkout - python/install-packages: