From 298838b44a75399eb1dc998f2639f9864eee0162 Mon Sep 17 00:00:00 2001 From: Julianne Swinoga Date: Sun, 4 Jun 2023 11:46:16 -0400 Subject: [PATCH] Fix Windows CI? --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 91f6e48..4aa1324 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -85,7 +85,9 @@ jobs: choco uninstall python --yes RefreshEnv choco uninstall python3 --yes - Remove-Item -Recurse -Force C:/Python310 + If (Test-Path C:/Python310) { + Remove-Item -Recurse -Force C:/Python310 + } - run: name: Install pyenv-win command: |