Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
victorlei committed Nov 20, 2016
1 parent 93f1b84 commit c2a95af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import os
from setuptools import setup

__VERSION__ = "0.32"
try:
__VERSION__ = os.popen("git describe --tags", "r").read().strip()
except:
__VERSION__ = "0.32"

open("smop/version.py","w").write("__version__='%s'\n" % __VERSION__)

Expand Down
1 change: 0 additions & 1 deletion smop/version.py

This file was deleted.

0 comments on commit c2a95af

Please sign in to comment.