diff --git a/appveyor.yml b/appveyor.yml index 2145cc6..96e4b9d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,22 +1,27 @@ environment: global: CIBW_SKIP: "cp27* cp35* pp* *-win32 *-manylinux_i686" - matrix: - - APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu - APPVEYOR_JOB_NAME: "python39-x64-ubuntu" - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 - APPVEYOR_JOB_NAME: "python39-x64-vs2015" - - APPVEYOR_BUILD_WORKER_IMAGE: macos-mojave - APPVEYOR_JOB_NAME: "python39-x64-macos-sonoma" + CIBW_BUILD: "cp38-* cp39-* cp310-*" -stack: python 3.7 +matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu + APPVEYOR_JOB_NAME: "python39-x64-ubuntu" + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 + APPVEYOR_JOB_NAME: "python39-x64-vs2015" + - APPVEYOR_BUILD_WORKER_IMAGE: macos-sonoma + APPVEYOR_JOB_NAME: "python39-x64-macos-sonoma" + +stack: python 3.9 init: - cmd: set PATH=C:\Python39;C:\Python39\Scripts;%PATH% install: python -m pip install cibuildwheel==1.7.1 -build_script: python -m cibuildwheel --output-dir wheelhouse +build_script: + - python -m cibuildwheel --output-dir wheelhouse --platform linux --python 3.9 + - python -m cibuildwheel --output-dir wheelhouse --platform windows --python 3.9 + - python -m cibuildwheel --output-dir wheelhouse --platform macos --python 3.9 artifacts: - path: "wheelhouse\\*.whl"