summaryrefslogtreecommitdiff
path: root/msgpack/__init__.py
diff options
context:
space:
mode:
authorINADA Naoki <inada-n@klab.com>2012-08-19 04:17:56 +0900
committerINADA Naoki <inada-n@klab.com>2012-08-19 04:17:56 +0900
commit814c42c2917ca62637ee37344c042174dfb10b4b (patch)
tree50dd63858eeca77aefffa5681e06a2f6ec4f88b4 /msgpack/__init__.py
parent29b4b785d0152c964819bc613a0321214df78c47 (diff)
downloadmsgpack-python-814c42c2917ca62637ee37344c042174dfb10b4b.tar.gz
Change the way to manage version number.
Diffstat (limited to 'msgpack/__init__.py')
-rw-r--r--msgpack/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/__init__.py b/msgpack/__init__.py
index cdf045f..98b1ab7 100644
--- a/msgpack/__init__.py
+++ b/msgpack/__init__.py
@@ -1,5 +1,5 @@
# coding: utf-8
-from msgpack.__version__ import *
+from msgpack._version import version
from msgpack._msgpack import *
# alias for compatibility to simplejson/marshal/pickle.