forked from LBRYCommunity/lbry-sdk
cd65b6fd13
setuptools will force a version to be 'normalized' which means that it removes the dash. This will probably cause some weirdness on the version numbers in the windows build; might have to re-work my patches on cx_freeze: https://bitbucket.org/jobevers/cx_freeze/commits/all
6 lines
144 B
Python
6 lines
144 B
Python
import logging
|
|
|
|
__version__ = "0.7.6rc0"
|
|
version = tuple(__version__.split('.'))
|
|
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|