From: W. Trevor King Date: Sun, 24 Oct 2010 13:45:02 +0000 (-0400) Subject: Move __version__ import from sawsim_histogram to sawsim (for caching). X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a71fe609cbd86a91f1fe57b93d16bb4c33b70241;p=sawsim.git Move __version__ import from sawsim_histogram to sawsim (for caching). --- diff --git a/pysawsim/sawsim.py b/pysawsim/sawsim.py index 67cfe29..c0589ef 100644 --- a/pysawsim/sawsim.py +++ b/pysawsim/sawsim.py @@ -35,6 +35,7 @@ from random import shuffle import shutil from uuid import uuid4 +from . import __version__ from .manager import MANAGERS, get_manager, InvokeJob diff --git a/pysawsim/sawsim_histogram.py b/pysawsim/sawsim_histogram.py index 8208c79..3001fd8 100644 --- a/pysawsim/sawsim_histogram.py +++ b/pysawsim/sawsim_histogram.py @@ -19,7 +19,6 @@ import numpy -from . import __version__, log from .histogram import Histogram from .manager import MANAGERS, get_manager from .sawsim import SawsimRunner