@todd_a_jacobs There's no SemVer fail because Python doesn't follow SemVer (it predates it). Python minor versions are not backwards compatible, things are removed in minor versions:
https://docs.python.org/3/faq/general.html#how-does-the-python-version-numbering-scheme-work
For example, here are backwards incompatible removals in 3.13:
https://docs.python.org/3/whatsnew/3.13.html#removed-modules-and-apis
(Conda also doesn't use SemVer but CalVer)