From d54771454fa398b333783b6bbddfe976f5509173 Mon Sep 17 00:00:00 2001 From: Jun Komoda <45822440+junkmd@users.noreply.github.com> Date: Sat, 20 Jul 2024 01:13:51 +0000 Subject: [PATCH] test enthought/comtypes#590 --- 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..71be496d7 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/junkmd/comtypes/archive/refs/heads/codegenerator_modulenamer_typing.zip" Start-Process -FilePath "$pip_path" -ArgumentList $args -Wait -Passthru }