To add and remove support of these python versions, open pyproject.toml and first replace this line,
requires-python = ">=3.11, <3.14"
with this line
requires-python = ">=3.12, <3.15"
Then, remove this line
'Programming Language :: Python :: 3.11',
and add this line
'Programming Language :: Python :: 3.14',
Finally, do a global search in the repo to make sure nothing else needs to be changed.
To add and remove support of these python versions, open
pyproject.tomland first replace this line,with this line
Then, remove this line
and add this line
Finally, do a global search in the repo to make sure nothing else needs to be changed.