Incorrect Minor Version Check for Python 3.10. Fails >= 3.5 Check.
Axe319 opened this issue · 0 comments
Axe319 commented
vpython-jupyter/vpython/__init__.py
Line 20 in d379190
The current implementation utilizes platform.python_version()
and does a < '5'
check against one character of the string.
A more stable way to check would be to use sys.version_info.major
and sys.version_info.minor
respectively.