Skip to content

Commit e0d1daf

Browse files
committed
Merge branch 'wheel-312-win'
2 parents 4e47301 + 46191f1 commit e0d1daf

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.appveyor/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ environment:
66
matrix:
77
# For Python versions available on Appveyor, see
88
# https://www.appveyor.com/docs/windows-images-software/#python
9+
- {PY_VER: "312", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
10+
- {PY_VER: "312", PY_ARCH: "64", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
911
- {PY_VER: "311", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
1012
- {PY_VER: "311", PY_ARCH: "64", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
1113
- {PY_VER: "310", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}

scripts/build/appveyor.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,17 +71,14 @@ def step_install():
7171
python_info()
7272
configure_sdk()
7373
configure_postgres()
74-
75-
if opt.is_wheel:
76-
install_wheel_support()
74+
install_python_build_tools()
7775

7876

79-
def install_wheel_support():
77+
def install_python_build_tools():
8078
"""
81-
Install an up-to-date pip wheel package to build wheels.
79+
Install or upgrade pip and build tools.
8280
"""
83-
run_python("-m pip install --upgrade pip".split())
84-
run_python("-m pip install wheel".split())
81+
run_python("-m pip install --upgrade pip setuptools wheel".split())
8582

8683

8784
def configure_sdk():

0 commit comments

Comments
 (0)