Skip to content

Instantly share code, notes, and snippets.

@bryder
Created December 3, 2015 04:00
Show Gist options
  • Save bryder/8936c6b4569ef0c1de5a to your computer and use it in GitHub Desktop.
Save bryder/8936c6b4569ef0c1de5a to your computer and use it in GitHub Desktop.
Check module version in python is a minimum
from distutils.version import LooseVersion
if LooseVersion(thing.__version__) < LooseVersion('1.11.1'):
exit("Use the right version dude")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment