Replies: 1 comment
-
Yes, of course we should do this. Dependency changes are not breaking changes, according to semver. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Python 3.7 reached EOL on June 27. Should we drop support? It would simplify the code base a bit, e.g.:
shutil.copytree
backport.typing.{Literal,Protocol,get_args}
imports which requiretyping-extensions
for Python 3.7.cached_property
imports which requirebackports
for Python 3.7, and we could drop thebackports
dependency.importlib.metadata
import and drop theimportlib-metadata
dependency.Would this require a new major release? I think projects handle dropping Python version support differently, some consider it a breaking change, some don't.
Beta Was this translation helpful? Give feedback.
All reactions