From ef3225d11351165f74896906ea9ec4563dc0b7a4 Mon Sep 17 00:00:00 2001 From: junkmd Date: Tue, 13 Jun 2023 19:11:34 +0900 Subject: [PATCH] test enthought/comtypes#478 --- appveyor.yml | 15 --------------- ci/install.ps1 | 2 +- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 4fcf06c10..6fc65fada 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,21 +12,6 @@ environment: matrix: - - PYTHON: "C:\\Python27" - PYTHON_VERSION: "2.7" - PYTHON_ARCH: "32" - UIA_SUPPORT: "NO" - - - PYTHON: "C:\\Python27-x64" - PYTHON_VERSION: "2.7" - PYTHON_ARCH: "64" - UIA_SUPPORT: "YES" - - - PYTHON: "C:\\Python35" - PYTHON_VERSION: "3.5" - PYTHON_ARCH: "32" - UIA_SUPPORT: "YES" - - PYTHON: "C:\\Python37" PYTHON_VERSION: "3.7" PYTHON_ARCH: "32" diff --git a/ci/install.ps1 b/ci/install.ps1 index 35764b414..4d03d1819 100644 --- a/ci/install.ps1 +++ b/ci/install.ps1 @@ -86,7 +86,7 @@ function UpdateConda ($python_home) { function InstallComtypes ($python_home) { $pip_path = $python_home + "\Scripts\pip.exe" - $args = "install comtypes" + $args = "install https://github.com/bennyrowland/comtypes/archive/refs/heads/477_clear_cache_module.zip" Start-Process -FilePath "$pip_path" -ArgumentList $args -Wait -Passthru }