Merge pull request #718 from lbryio/lbryum-refactor
update lbryum imports
This commit is contained in:
commit
0f32260e2c
5 changed files with 9 additions and 7 deletions
|
@ -18,6 +18,8 @@ at anytime.
|
||||||
* Renamed `lbrynet.lbryfilemanager` to `lbrynet.file_manager`
|
* Renamed `lbrynet.lbryfilemanager` to `lbrynet.file_manager`
|
||||||
* Renamed `lbrynet.lbrynet_daemon` to `lbrynet.daemon`
|
* Renamed `lbrynet.lbrynet_daemon` to `lbrynet.daemon`
|
||||||
* Initialize lbrynet settings when configuring an api client if they are not set yet
|
* Initialize lbrynet settings when configuring an api client if they are not set yet
|
||||||
|
* Updated lbryum imports
|
||||||
|
*
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed some log messages throwing exceptions
|
* Fixed some log messages throwing exceptions
|
||||||
|
|
|
@ -12,9 +12,10 @@ from collections import defaultdict, deque
|
||||||
from zope.interface import implements
|
from zope.interface import implements
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
|
|
||||||
from lbryum import SimpleConfig, Network
|
|
||||||
from lbryum.lbrycrd import COIN
|
|
||||||
import lbryum.wallet
|
import lbryum.wallet
|
||||||
|
from lbryum.network import Network
|
||||||
|
from lbryum.simple_config import SimpleConfig
|
||||||
|
from lbryum.constants import COIN
|
||||||
from lbryum.commands import known_commands, Commands
|
from lbryum.commands import known_commands, Commands
|
||||||
|
|
||||||
from lbryschema.uri import parse_lbry_uri
|
from lbryschema.uri import parse_lbry_uri
|
||||||
|
|
|
@ -4,11 +4,10 @@ import subprocess
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from urllib2 import urlopen
|
from urllib2 import urlopen
|
||||||
|
from lbryschema import __version__ as lbryschema_version
|
||||||
|
from lbryum import __version__ as LBRYUM_VERSION
|
||||||
from lbrynet import build_type, __version__ as lbrynet_version
|
from lbrynet import build_type, __version__ as lbrynet_version
|
||||||
from lbrynet.conf import ROOT_DIR
|
from lbrynet.conf import ROOT_DIR
|
||||||
from lbryum.version import LBRYUM_VERSION
|
|
||||||
from lbryschema import __version__ as lbryschema_version
|
|
||||||
|
|
||||||
|
|
||||||
def get_lbrynet_version():
|
def get_lbrynet_version():
|
||||||
|
|
|
@ -14,7 +14,7 @@ jsonrpc==1.2
|
||||||
jsonrpclib==0.1.7
|
jsonrpclib==0.1.7
|
||||||
jsonschema==2.5.1
|
jsonschema==2.5.1
|
||||||
git+https://github.com/lbryio/lbryschema.git@v0.0.7#egg=lbryschema
|
git+https://github.com/lbryio/lbryschema.git@v0.0.7#egg=lbryschema
|
||||||
git+https://github.com/lbryio/lbryum.git@v3.0.1#egg=lbryum
|
git+https://github.com/lbryio/lbryum.git@v3.1.0#egg=lbryum
|
||||||
miniupnpc==1.9
|
miniupnpc==1.9
|
||||||
pbkdf2==1.3
|
pbkdf2==1.3
|
||||||
pycrypto==2.6.1
|
pycrypto==2.6.1
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -21,7 +21,7 @@ requires = [
|
||||||
'envparse',
|
'envparse',
|
||||||
'jsonrpc',
|
'jsonrpc',
|
||||||
'jsonschema',
|
'jsonschema',
|
||||||
'lbryum==3.0.1',
|
'lbryum==3.1.0',
|
||||||
'lbryschema==0.0.7',
|
'lbryschema==0.0.7',
|
||||||
'miniupnpc',
|
'miniupnpc',
|
||||||
'pycrypto',
|
'pycrypto',
|
||||||
|
|
Loading…
Reference in a new issue