-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Closed
Labels
Milestone
Description
Problem
Trying to get pre-release testing on 3.12 working across some repositories I work on. Matplotlib is currently a blocker for projects that have it as a mandatory dependency. With numpy 1.26.0b1 on PyPI, I suspect this is now doable?
Looking through the issue/PR list, this isn't obviously on the roadmap, so I'm hoping this is a nudge, not pestering.
Proposed solution
If it's just a matter of duplicating the following with cp312
, I'm happy to submit a PR:
matplotlib/.github/workflows/cibuildwheel.yml
Lines 138 to 145 in 0b5940f
- name: Build wheels for CPython 3.11 | |
uses: pypa/cibuildwheel@39a63b5912f086dd459cf6fcb13dcdd3fe3bc24d # v2.15.0 | |
with: | |
package-dir: dist/${{ needs.build_sdist.outputs.SDIST_NAME }} | |
env: | |
CIBW_BUILD: "cp311-*" | |
CIBW_ARCHS: ${{ matrix.cibw_archs }} | |