Supported Python versions 3.3 to 3.13 #269
Open
+459
−609
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.
🤔 What's changed?
pip install radon[notebook]
)toml
extra install to poetry build⚡️ What's your motivation?
colorama
distribution since v4.2.0 (Adapt dependency on colorama according to python version #195)futures
dependency (chore: remove obsolete future dep #234) and incompatibilities with pyproject.toml support code (pyproject.toml support #236) - improving project maintainability and aligning with mando dropping Python 2 support in v0.8.0 (drop python2 support, six mando#57)Python 2 incompatibility
This can be resolved by installing
futures
.python2.7 -m pip install futures
However an additional error is encountered within configuration parsing.
Code optimisations have been largely applied by the ruff linter through its
--fix
functionality; using the pyupgrade (UP) ruleset.Python 3.3 incompatibility
Package installation fails with Python 3.3 as installation of an incompatible distribution of
colorama
is attempted which is only supported from Python 3.4.🏷️ What kind of change is this?
♻️ Anything particular you want feedback on?
encoding
keyword argument can be provided withopen
inPyPy