diff --git a/appveyor.yml b/appveyor.yml index 4fcf06c10..303fe6206 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,45 +12,35 @@ environment: matrix: - - PYTHON: "C:\\Python27" - PYTHON_VERSION: "2.7" + - PYTHON: "C:\\Python38" + PYTHON_VERSION: "3.8" 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: "C:\\Python38" + PYTHON_VERSION: "3.8" PYTHON_ARCH: "32" UIA_SUPPORT: "YES" - - PYTHON: "C:\\Python37" - PYTHON_VERSION: "3.7" - PYTHON_ARCH: "32" - UIA_SUPPORT: "NO" - - - PYTHON: "C:\\Python37-x64" - PYTHON_VERSION: "3.7" + - PYTHON: "C:\\Python38-x64" + PYTHON_VERSION: "3.8" PYTHON_ARCH: "64" - UIA_SUPPORT: "YES" + UIA_SUPPORT: "NO" - PYTHON: "C:\\Python38-x64" PYTHON_VERSION: "3.8" PYTHON_ARCH: "64" UIA_SUPPORT: "YES" - - PYTHON: "C:\\Python39" - PYTHON_VERSION: "3.9" - PYTHON_ARCH: "32" - UIA_SUPPORT: "YES" + # - PYTHON: "C:\\Python39" + # PYTHON_VERSION: "3.9" + # PYTHON_ARCH: "32" + # UIA_SUPPORT: "YES" - - PYTHON: "C:\\Python310-x64" - PYTHON_VERSION: "3.10" - PYTHON_ARCH: "64" - UIA_SUPPORT: "YES" + # - PYTHON: "C:\\Python310-x64" + # PYTHON_VERSION: "3.10" + # PYTHON_ARCH: "64" + # UIA_SUPPORT: "YES" - PYTHON: "C:\\Python311-x64" PYTHON_VERSION: "3.11" diff --git a/ci/install.ps1 b/ci/install.ps1 index 35764b414..b7cf92408 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_typing_overload.zip" Start-Process -FilePath "$pip_path" -ArgumentList $args -Wait -Passthru }