Skip to content

Instantly share code, notes, and snippets.

@fmder
Created September 16, 2014 18:44
Show Gist options
  • Save fmder/abc048e35cf01a5c8adf to your computer and use it in GitHub Desktop.
Save fmder/abc048e35cf01a5c8adf to your computer and use it in GitHub Desktop.
import subprocess
try:
tree = subprocess.check_output(["git", "rev-parse", "HEAD"]).strip()
except OSError:
import warnings
warnings.warn("Cannot link examples because we cannot retrieve the git version", Warning)
else:
extlinks = {'example': ('https://github.com/DEAP/deap/blob/{tree}/examples/%s.py'.format(tree=tree), "examples/")}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment