19 lines
478 B
YAML
19 lines
478 B
YAML
environment:
|
|
matrix:
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2204
|
|
APPVEYOR_JOB_NAME: "linux-x64"
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
|
|
APPVEYOR_JOB_NAME: "windows-x64"
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: macos-sonoma
|
|
APPVEYOR_JOB_NAME: "macos-x64"
|
|
|
|
stack: python 3.12
|
|
|
|
install: python -m pip install cibuildwheel==2.23.0
|
|
|
|
build_script: python -m cibuildwheel --output-dir wheelhouse
|
|
|
|
artifacts:
|
|
- path: "wheelhouse\\*.whl"
|
|
name: Wheels
|