Open
Conversation
paulmelnikow
commented
Feb 20, 2026
| "Topic :: Artistic Software", | ||
| "Topic :: Multimedia :: Graphics :: 3D Modeling", | ||
| "Topic :: Scientific/Engineering :: Visualization", | ||
| "License :: OSI Approved :: MIT License", |
Contributor
Author
There was a problem hiding this comment.
Clear a warning on build by replacing these deprecated classifiers with an SPDX license specifier in pyproject.toml.
| # We do not need to support Python 3.6–3.8, and we only need | ||
| # manylinux for testing. PyPy isn't useful as this is a binary | ||
| # extension. | ||
| CIBW_SKIP: pp* cp36-* cp37-* cp38-* *-musllinux_* |
Contributor
Author
There was a problem hiding this comment.
pp and cp36–37 are now skipped by default, and cp38 is excluded in pyproject.toml.
| CIBW_SKIP: pp* cp36-* cp37-* cp38-* *-manylinux_x86_64 | ||
| CIBW_ARCHS_WINDOWS: "AMD64" | ||
| # The quick build has already taken care of manylinux. | ||
| CIBW_SKIP: "*-manylinux_x86_64" |
Contributor
Author
There was a problem hiding this comment.
- Remove 32-bit builds (universal2 and x86)
- pp and cp38–37 are now off by default
- cp38 is disabled in pyproject.toml
| uses: pypa/cibuildwheel@v3.3.1 | ||
| env: | ||
| CIBW_ARCHS_WINDOWS: "ARM64" | ||
| CIBW_SKIP: pp* |
Contributor
Author
There was a problem hiding this comment.
Now skipped by default
Contributor
Author
|
This PR and possibly this branch will need updating once #405 is merged, but in the meantime it should be possible to review it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is a follow-on to #405 which needs to land first.