Closed jwilk closed 6 years ago
sys.version[:3] won't return the right thing in Python 3.10. Use the sys.version_info tuple instead.
sys.version[:3]
sys.version_info
Thank you!
sys.version[:3]
won't return the right thing in Python 3.10. Use thesys.version_info
tuple instead.