Skip to content

Commit

Permalink
Bump appveyor requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
wboykinm committed Dec 16, 2024
1 parent 1323c83 commit 92c17de
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 92c17de

Please sign in to comment.