fix: update requires-python to include Python 3.14#1815
fix: update requires-python to include Python 3.14#1815yurivski wants to merge 6 commits intoData-Centric-AI-Community:developfrom
Conversation
Did you try installing or testing on Python 3.14? |
I tested on Python 3.13.5 — I don't have 3.14 installed locally. The main motivation for this change is that the classifiers already list Happy to run additional tests if needed. |
|
FWIW, we are running the ydata-profiling testsuite on Arch Linux with Python 3.14 in the AUR package and it generally works except for a few skipped tests (which are most likely unrelated to Python 3.14 anyway). Please merge this update. |
|
3.14 should also be added here: https://github.com/Data-Centric-AI-Community/ydata-profiling/blob/develop/.github/workflows/tests.yml#L19 |
Thanks for confirming it works on Python 3.14! I've added 3.14 to the CI test matrix in tests.yml as suggested. |
Fixes #1811
The
pyproject.tomllistsProgramming Language :: Python :: 3.14in classifiersbut
requires-pythonwas set to>=3.10,<3.14, preventing installation on Python 3.14.Changes
requires-pythonfrom<3.14to<3.15Testing