Include build for python 3.10 (finally)

This commit is contained in:
Andrew Cassidy 2022-04-01 20:27:00 -07:00
parent e8e0f4e29b
commit 70b7251eae
2 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,7 @@ jobs:
uses: joerick/cibuildwheel@v1.11.0 uses: joerick/cibuildwheel@v1.11.0
env: env:
MACOSX_DEPLOYMENT_TARGET: "10.15" MACOSX_DEPLOYMENT_TARGET: "10.15"
CIBW_BUILD: "cp{37,38,39}-*" CIBW_BUILD: "cp{37,38,39,310}-*"
CIBW_SKIP: "*-win32 *-manylinux_i686" CIBW_SKIP: "*-win32 *-manylinux_i686"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014" CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
CIBW_TEST_EXTRAS: "tests" CIBW_TEST_EXTRAS: "tests"

View File

@ -145,6 +145,7 @@ setup(
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"Topic :: Multimedia :: Graphics :: Graphics Conversion", "Topic :: Multimedia :: Graphics :: Graphics Conversion",
'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: C++' 'Programming Language :: C++'