Skip to content

Commit

Permalink
ci(win32): install the setuptools package to build in appveyor
Browse files Browse the repository at this point in the history
Present so far, it wasn't installed in the first image containing Python 3.12.
  • Loading branch information
dvarrazzo committed Oct 27, 2023
1 parent ad5bee7 commit e73d2fa
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions scripts/build/appveyor.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,17 +71,14 @@ def step_install():
python_info()
configure_sdk()
configure_postgres()

if opt.is_wheel:
install_wheel_support()
install_python_build_tools()


def install_wheel_support():
def install_python_build_tools():
"""
Install an up-to-date pip wheel package to build wheels.
Install or upgrade pip and build tools.
"""
run_python("-m pip install --upgrade pip".split())
run_python("-m pip install wheel".split())
run_python("-m pip install --upgrade pip setuptools wheel".split())


def configure_sdk():
Expand Down

0 comments on commit e73d2fa

Please sign in to comment.