From be0ba7db8071b667b7dd2b7187e6096e7f0eddf8 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 1 Jun 2022 13:00:17 -0700 Subject: [PATCH] =?UTF-8?q?Install=20and=20test=20with=20the=20wheel,=20no?= =?UTF-8?q?t=20the=20deprecated=20distutils=20install=20command.=E2=80=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .azure/ci-linux-job.yml | 2 +- .azure/ci-macos-job.yml | 2 +- .azure/ci-windows-job.yml | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.azure/ci-linux-job.yml b/.azure/ci-linux-job.yml index d723d950..05c08e6f 100644 --- a/.azure/ci-linux-job.yml +++ b/.azure/ci-linux-job.yml @@ -65,6 +65,6 @@ jobs: - script: | python build.py bdist_wheel - python build.py install + python -m pip install dist/wxPython-*.whl python -c "import wx; print(wx.version());" displayName: 'build wheel and test install' diff --git a/.azure/ci-macos-job.yml b/.azure/ci-macos-job.yml index 9ae45c73..52f8ae36 100644 --- a/.azure/ci-macos-job.yml +++ b/.azure/ci-macos-job.yml @@ -60,6 +60,6 @@ jobs: - script: | python build.py bdist_wheel - python build.py install + python -m pip install dist/wxPython-*.whl python -c "import wx; print(wx.version());" displayName: 'build wheel and test install' diff --git a/.azure/ci-windows-job.yml b/.azure/ci-windows-job.yml index 301f9d4d..4b614c63 100644 --- a/.azure/ci-windows-job.yml +++ b/.azure/ci-windows-job.yml @@ -67,7 +67,6 @@ jobs: displayName: 'Install Python dependencies' - bash: | - which cl.exe python build.py --jobs=4 build_wx displayName: 'build wxWidgets' @@ -81,6 +80,6 @@ jobs: - bash: | python build.py bdist_wheel - python build.py install + python -m pip install dist/wxPython-*.whl python -c "import wx; print(wx.version());" displayName: 'build wheel and test install'