Versioning question: Is dropping support for an older version of a programming language a major or minor change? I.e. version 2.5 of my software supported Python 3.8-3.12, the next version supports only 3.10-3.12 (but no API/functional changes). What kind of version bump would you expect?
@anteru I might have voted wrong :D I was thinking that this might break backward compatibility, so it's a major version change. However the python version itself is only a minor version change, so it should still be compatible, unless you start using new APIs internally