-
Notifications
You must be signed in to change notification settings - Fork 11
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
Remove requires-python #62
Comments
@blink1073 mentioned that myst requires 3.10 |
Ah, so maybe conditional on |
Oh! This comes from myst? This requirement tripped some people up who were trying to install their package into an existing envt that ran 3.9! |
Also, this is adding an install floor to the project for a documentation dependency. At best, it should be a requirement of |
Some discussion about classifiers: https://discuss.python.org/t/handling-stale-python-version-classifiers-for-low-churn-projects/66537/1 |
This copier always sets
requires-python = ">=3.10"
, but it doesn't know what versions of python the (yet-to-be-crated) package will be compatible with.Yes 3.10 is the lowest in-support version, but this is overly-restrictive to users. Especially for use in our tutorials, which use some very vanilla Python that would work all the way back to 3.3 I'd bet.
The text was updated successfully, but these errors were encountered: