We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
minimum dependencies defaults to using Python 3.8. It would be nice if it defaulted to reading the minimum Python version in pyproject.toml.
parse pyproject.toml looking for project.requires-python (or wheel metadata looking for the equivalent field) instead of hardcoding Python 3.8
came up bumping minimum Python to 3.9 in ipykernel, where the minimum dependency test started failing due to using an unsupported Python 3.8.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
minimum dependencies defaults to using Python 3.8. It would be nice if it defaulted to reading the minimum Python version in pyproject.toml.
Proposed Solution
parse pyproject.toml looking for project.requires-python (or wheel metadata looking for the equivalent field) instead of hardcoding Python 3.8
Additional context
came up bumping minimum Python to 3.9 in ipykernel, where the minimum dependency test started failing due to using an unsupported Python 3.8.
The text was updated successfully, but these errors were encountered: