-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Python 3.13, drop 3.10 #143
Conversation
@sbillinge ready for review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Talking to Tieqiong, we realize that in the toml file we want the line requires-python = ">=3.10"
to be changed to 3.11 but also a <=3.13
(not sure the right syntax). In the future when conda-forge migrates to the next python version this will then fail with an unresolved error and not just break in the code.
This applies to all the packages so we need to let everyone know and have them update their packages this way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sbillinge ready for review - requires-python = ">=3.11, <=3.13"
added
@sbillinge Added an news item for |
@sbillinge Okay - |
@sbillinge Updated the news file as provided in the |
PLEASE READ FOR GITHUB MAINTAINERS:
If your package supports Python 3.10, 3.11, 3.12:
requires-python = ">=3.10, <3.13"
If your package supports Python 3.11, 3.12, 3.13:
requires-python = ">=3.11, <3.14"
For this PR reviewer:
Closes #144
Testing result:
No changes were needed.