Skip to content

Commit

Permalink
Merge branch 'wheel-312-win'
Browse files Browse the repository at this point in the history
  • Loading branch information
dvarrazzo committed Nov 1, 2023
2 parents 4e47301 + 46191f1 commit e0d1daf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .appveyor/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ environment:
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
- {PY_VER: "312", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
- {PY_VER: "312", PY_ARCH: "64", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
- {PY_VER: "311", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
- {PY_VER: "311", PY_ARCH: "64", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
- {PY_VER: "310", PY_ARCH: "32", APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019}
Expand Down
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 e0d1daf

Please sign in to comment.