Skip to content

Commit 30a090f

Browse files
committed
1 parent bf7f789 commit 30a090f

File tree

3 files changed

+34
-37
lines changed

3 files changed

+34
-37
lines changed

Diff for: appveyor.yml

+24-32
Original file line numberDiff line numberDiff line change
@@ -12,50 +12,40 @@ environment:
1212

1313
matrix:
1414

15-
- PYTHON: "C:\\Python27"
16-
PYTHON_VERSION: "2.7"
17-
PYTHON_ARCH: "32"
18-
UIA_SUPPORT: "NO"
19-
20-
- PYTHON: "C:\\Python27-x64"
21-
PYTHON_VERSION: "2.7"
22-
PYTHON_ARCH: "64"
23-
UIA_SUPPORT: "YES"
15+
# - PYTHON: "C:\\Python38"
16+
# PYTHON_VERSION: "3.8"
17+
# PYTHON_ARCH: "32"
18+
# UIA_SUPPORT: "NO"
2419

25-
- PYTHON: "C:\\Python35"
26-
PYTHON_VERSION: "3.5"
20+
- PYTHON: "C:\\Python38"
21+
PYTHON_VERSION: "3.8"
2722
PYTHON_ARCH: "32"
2823
UIA_SUPPORT: "YES"
2924

30-
- PYTHON: "C:\\Python37"
31-
PYTHON_VERSION: "3.7"
32-
PYTHON_ARCH: "32"
33-
UIA_SUPPORT: "NO"
34-
35-
- PYTHON: "C:\\Python37-x64"
36-
PYTHON_VERSION: "3.7"
37-
PYTHON_ARCH: "64"
38-
UIA_SUPPORT: "YES"
25+
# - PYTHON: "C:\\Python38-x64"
26+
# PYTHON_VERSION: "3.8"
27+
# PYTHON_ARCH: "64"
28+
# UIA_SUPPORT: "NO"
3929

4030
- PYTHON: "C:\\Python38-x64"
4131
PYTHON_VERSION: "3.8"
4232
PYTHON_ARCH: "64"
4333
UIA_SUPPORT: "YES"
4434

45-
- PYTHON: "C:\\Python39"
46-
PYTHON_VERSION: "3.9"
47-
PYTHON_ARCH: "32"
48-
UIA_SUPPORT: "YES"
35+
# - PYTHON: "C:\\Python39"
36+
# PYTHON_VERSION: "3.9"
37+
# PYTHON_ARCH: "32"
38+
# UIA_SUPPORT: "YES"
4939

50-
- PYTHON: "C:\\Python310-x64"
51-
PYTHON_VERSION: "3.10"
52-
PYTHON_ARCH: "64"
53-
UIA_SUPPORT: "YES"
40+
# - PYTHON: "C:\\Python310-x64"
41+
# PYTHON_VERSION: "3.10"
42+
# PYTHON_ARCH: "64"
43+
# UIA_SUPPORT: "YES"
5444

55-
- PYTHON: "C:\\Python311-x64"
56-
PYTHON_VERSION: "3.11"
57-
PYTHON_ARCH: "64"
58-
UIA_SUPPORT: "YES"
45+
# - PYTHON: "C:\\Python311-x64"
46+
# PYTHON_VERSION: "3.11"
47+
# PYTHON_ARCH: "64"
48+
# UIA_SUPPORT: "YES"
5949

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

8274
# Enable desktop (for correct screenshots).

Diff for: ci/install.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function UpdateConda ($python_home) {
8686

8787
function InstallComtypes ($python_home) {
8888
$pip_path = $python_home + "\Scripts\pip.exe"
89-
$args = "install comtypes"
89+
$args = "install https://github.com/junkmd/comtypes/archive/refs/heads/typealias_cdatatype.zip"
9090
Start-Process -FilePath "$pip_path" -ArgumentList $args -Wait -Passthru
9191
}
9292

Diff for: dev-requirements.txt

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1-
pywin32==301 ; python_version == '3.6' and sys_platform == "win32"
2-
pywin32 ; python_version != '3.6' and sys_platform == "win32"
1+
docutils<0.18
2+
pywin32<=227; python_version <= '3.6' and platform_system == 'Windows'
3+
pywin32>=300; python_version > '3.6' and platform_system == 'Windows'
34
six
4-
pillow>=6.2.0
5+
Pillow==6.2.0; python_version <= '3.7'
6+
Pillow==10.4.0; python_version == '3.8'
7+
Pillow==11.1.0; python_version > '3.8'
58
coverage
69
nose
710
codecov
811
rst2pdf
912
Sphinx
1013
mock==2.0.0
1114
codacy-coverage
12-
PyQt5==5.15.4 ; python_version >= '3.6'
15+
PyQt5==5.15.9; python_version >= '3.6'
16+
PyQt5-sip==12.15.0; python_version >= '3.9' and python_version < '3.10'
17+
PyQt5-sip; python_version >= '3.10'

0 commit comments

Comments
 (0)