-
-
Notifications
You must be signed in to change notification settings - Fork 18.9k
Description
Is there a chance that Python 3.12 wheels get uploaded to scientific-python-nightly-wheels i.e.
https://anaconda.org/scientific-python-nightly-wheels/pandas/files?
This would be useful for scikit-learn as we would like to build and test Python 3.12 wheels and we currently install pandas when we test wheels (pandas is an optional scikit-learn dependency). Numpy and scipy already upload a Python 3.12 wheel, see https://anaconda.org/scientific-python-nightly-wheels/numpy/files and https://anaconda.org/scientific-python-nightly-wheels/scipy/files.
In #53743 a Python 3.12 entry was added but commented out:
pandas/.github/workflows/wheels.yml
Lines 96 to 97 in b864b8e
# TODO: Enable Python 3.12 wheels when numpy releases a version that supports Python 3.12 | |
python: [["cp39", "3.9"], ["cp310", "3.10"], ["cp311", "3.11"]]#, ["cp312", "3.12"]] |
I am willing to have a go at a PR, but I thought I would ask in an issue first.