From 1f8121c691d94e49bba359e0c3ec22be0ced6b27 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Mon, 4 Sep 2023 19:31:02 -0400 Subject: [PATCH] Update Linux and Windows wheel builds --- .github/workflows/build-wheels.yml | 5 +++-- appveyor.yml | 10 +++++++++- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 4ce1aba..afdad0e 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -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 diff --git a/appveyor.yml b/appveyor.yml index 7f4ad23..8444753 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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"