3.12 not build?
#1568
-
I just wanted to try out the new Python 3.12 support. When building from gh-actions with the config - name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD_VERBOSITY: 3
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7, <=3.12"
CIBW_ENVIRONMENT: >
CFLAGS='-s'
CXXFLAGS='-s'
CIBW_SKIP: "pp37* pp38*"
CIBW_ARCHS_WINDOWS: auto64
CIBW_ARCHS_LINUX: auto64
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: "pytest {project}/tests/"
CIBW_TEST_SKIP: "*-macosx_arm64" though, I'm only getting 3.7 to 3.11. The same is true when adding CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* Any idea why that might be? ( |
Beta Was this translation helpful? Give feedback.
Answered by
Czaki
Aug 9, 2023
Replies: 1 comment 3 replies
-
problem is here:
we use
Maybe you should change to:
|
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
nschloe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
problem is here:
we use
SpecifierSet
frompackaging
and fast check shows:Maybe you should change to: