Browse Source

Update Linux and Windows wheel builds

tags/v0.6.5
Ben Kurtovic 7 months ago
parent
commit
1f8121c691
2 changed files with 12 additions and 3 deletions
  1. +3
    -2
      .github/workflows/build-wheels.yml
  2. +9
    -1
      appveyor.yml

+ 3
- 2
.github/workflows/build-wheels.yml View File

@@ -11,11 +11,11 @@ jobs:
- name: Build manylinux2014 x86-64 wheels
uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_x86_64
with:
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
- name: Build manylinux 2014 aarch64 wheels
uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_aarch64
with:
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
- uses: actions/upload-artifact@v2
with:
name: wheels
@@ -37,6 +37,7 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2


+ 9
- 1
appveyor.yml View File

@@ -7,7 +7,7 @@ branches:
- main
- /v\d+(\.\d+)*/

image: Visual Studio 2019
image: Visual Studio 2022

environment:
global:
@@ -53,6 +53,14 @@ environment:
PYTHON_VERSION: "3.10"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python311"
PYTHON_VERSION: "3.11"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python311-x64"
PYTHON_VERSION: "3.11"
PYTHON_ARCH: "64"

install:
- "%PIP% install --disable-pip-version-check --user --upgrade pip"
- "%PIP% install wheel twine pytest"


Loading…
Cancel
Save