Skip to content

Commit

Permalink
fix version and required easyblocks version
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Oct 21, 2012
1 parent 435c4f8 commit 24253fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Expand Up @@ -4,9 +4,11 @@
import sys
from distutils import log

VERSION = "0.9.0"
VERSION = "0.9.0dev"
API_VERSION = VERSION.split('.')[0]
EB_VERSION = '.'.join(VERSION.split('.')[0:2])
if VERSION.endswith('dev'):
EB_VERSION += 'dev'

# log levels: 0 = WARN (default), 1 = INFO, 2 = DEBUG
log.set_verbosity(1)
Expand Down

0 comments on commit 24253fe

Please sign in to comment.