chore: update 'requires-python' version specifier to avoid ambiguity #309
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
I was about to start playing around with #267 and #278 locally and got the following warning:
Assuming the
~=3.9
was intentional to avoid a 4.x major version change, it might not be necessary as Python 4.x doesn't seem to be likely at all: https://www.geeksforgeeks.org/python/latest-update-on-python-4/This PR swaps the
~=
for a simple>=
, which dismisses the best practices warning fromuv
:Apologies for not logging an issue first, I wasn't sure if this would be considered valid or desired.
As a sidenote: Python 3.9 is also approaching EOL this month (October 2025). I'd be happy to make another PR to drop 3.9 support and bump the minimum version to 3.10 if you like?
Cheers,
Kyle