Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed Jan 13, 2025
1 parent bf7f789 commit d9e1ca4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 31 deletions.
50 changes: 21 additions & 29 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,50 +12,40 @@ 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"
PYTHON_ARCH: "64"
UIA_SUPPORT: "YES"
# - PYTHON: "C:\\Python311-x64"
# PYTHON_VERSION: "3.11"
# PYTHON_ARCH: "64"
# UIA_SUPPORT: "YES"

#init:
# Enable RDP.
Expand All @@ -77,6 +67,8 @@ install:
# compiled extensions and are not provided as pre-built wheel packages,
# pip will build them from source using the MSVC compiler matching the
# target Python version and architecture
- "%CMD_IN_ENV% python -m pip install --upgrade pip"
- "%CMD_IN_ENV% python -m pip install wheel"
- "%CMD_IN_ENV% pip install -r dev-requirements.txt"

# Enable desktop (for correct screenshots).
Expand Down
2 changes: 1 addition & 1 deletion ci/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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/moi15moi/comtypes/archive/refs/heads/Fix-#735.zip"
Start-Process -FilePath "$pip_path" -ArgumentList $args -Wait -Passthru
}

Expand Down
4 changes: 3 additions & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ rst2pdf
Sphinx
mock==2.0.0
codacy-coverage
PyQt5==5.15.4 ; python_version >= '3.6'
PyQt5==5.15.4 ; python_version >= '3.6'
PyQt5-sip==12.13.0 ; python_version < '3.8'
PyQt5-sip==12.15.0 ; python_version >= '3.8' and python_version < '3.9'

0 comments on commit d9e1ca4

Please sign in to comment.