From f7e5f3c127b3b89be029672db6ee3f7a573c6458 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Fri, 7 Jan 2022 11:15:18 -0800 Subject: [PATCH] py: add 3.10 builds --- .github/workflows/python.yml | 16 ++++++++++++++++ setup.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index e288977..b25f59e 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -59,6 +59,11 @@ jobs: python: "3.9" piparch: macosx_10_9_intel + - name: osx 3.10 intel + os: macos-latest + python: "3.10" + piparch: macosx_10_10_intel + # Windows py builds ## missing Microsoft Visual C++ 9.0 @@ -91,6 +96,11 @@ jobs: python: "3.9" piparch: win_amd64 + - name: win64 3.10 + os: windows-latest + python: "3.10" + piparch: win_amd64 + steps: - uses: actions/checkout@v2 with: @@ -213,6 +223,12 @@ jobs: manylinux: manylinux2010 arch: x86_64 + - name: linux 3.10 amd64 + os: ubuntu-latest + pyver: cp310-cp310 + manylinux: manylinux2014 + arch: x86_64 + # Linux py builds x32 - name: linux 2.7 i686 pyver: cp27-cp27m diff --git a/setup.py b/setup.py index 647dc0d..1eb15d0 100755 --- a/setup.py +++ b/setup.py @@ -621,7 +621,7 @@ pvxs_ver = '%(PVXS_MAJOR_VERSION)s.%(PVXS_MINOR_VERSION)s.%(PVXS_MAINTENANCE_VER setup( name='pvxslibs', - version=pvxs_ver+"a3", + version=pvxs_ver+"a4", description="PVXS libraries packaged for python", url='https://mdavidsaver.github.io/pvxs', author='Michael Davidsaver',