File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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
8784def configure_sdk ():
You can’t perform that action at this time.
0 commit comments