From 47a049736fdc09dac0206ba1e111a5ffc5299c70 Mon Sep 17 00:00:00 2001 From: Jelmer Draaijer Date: Tue, 7 Feb 2023 15:38:49 +0100 Subject: [PATCH 1/2] feat: add wheels for multiple platforms --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd492de..f522bdc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,11 +17,12 @@ env: jobs: build_wheels: - name: Build wheels on ${{ matrix.os }} + name: Build wheels on ${{ matrix.os }} with python ${{ matrix.python-version }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-18.04, macos-latest, windows-latest] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 @@ -31,7 +32,7 @@ jobs: - uses: actions/setup-python@v2 name: Install Python with: - python-version: 3.8 + python-version: ${{ matrix.python-version }} - uses: ilammy/msvc-dev-cmd@v1 with: From 525a861f9cd58319196517391264c5eafcffc70d Mon Sep 17 00:00:00 2001 From: Jelmer Draaijer Date: Tue, 7 Feb 2023 15:58:59 +0100 Subject: [PATCH 2/2] feat: update classifiers by adding 3.9 and 3.10 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 68cf94c..627f35a 100644 --- a/setup.py +++ b/setup.py @@ -177,9 +177,9 @@ def setup_package(): # Trove classifiers # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], cmdclass={"build_ext": BuildExt}, )