We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad5bee7 commit e73d2faCopy full SHA for e73d2fa
scripts/build/appveyor.py
@@ -71,17 +71,14 @@ def step_install():
71
python_info()
72
configure_sdk()
73
configure_postgres()
74
-
75
- if opt.is_wheel:
76
- install_wheel_support()
+ install_python_build_tools()
77
78
79
-def install_wheel_support():
+def install_python_build_tools():
80
"""
81
- Install an up-to-date pip wheel package to build wheels.
+ Install or upgrade pip and build tools.
82
83
- run_python("-m pip install --upgrade pip".split())
84
- run_python("-m pip install wheel".split())
+ run_python("-m pip install --upgrade pip setuptools wheel".split())
85
86
87
def configure_sdk():
0 commit comments