removing version retrieval via pkg_resources. static version string in code.

This commit is contained in:
AlexV
2019-03-08 13:56:09 +01:00
parent aef752d777
commit 867d8784ce
+1 -6
View File
@@ -1,9 +1,4 @@
import pkg_resources
try:
__version__ = pkg_resources.get_distribution(__name__).version
except pkg_resources.DistributionNotFound:
__version__ = '1.1.0'
del pkg_resources
__version__ = '1.1.0'
from .usertools import monitor, timing