From 7293915160814556e32ca78d899304af47092418 Mon Sep 17 00:00:00 2001 From: Juan Rocamonde Date: Thu, 29 Sep 2022 14:46:01 +0100 Subject: [PATCH] Upgrade Python version in Windows CI --- .circleci/config.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8af7eb5cc..9f90432c6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -127,10 +127,16 @@ commands: - run: name: install python and binary dependencies command: | - choco install --side-by-side -y python --version 3.8 + choco install --side-by-side -y python --version=3.8.10 choco install -y ffmpeg shell: powershell.exe + - run: + name: upgrade pip + command: | + python -m pip install --upgrade pip + shell: powershell.exe + - run: name: install virtualenv command: pip install virtualenv