forked from LBRYCommunity/lbry-sdk
requirements and bytes/string
This commit is contained in:
parent
584433e16c
commit
5a1f551ce5
4 changed files with 8 additions and 8 deletions
|
@ -22,7 +22,7 @@ class EncryptedFileDownloader(CryptStreamDownloader):
|
||||||
payment_rate_manager, wallet, key, stream_name)
|
payment_rate_manager, wallet, key, stream_name)
|
||||||
self.stream_hash = stream_hash
|
self.stream_hash = stream_hash
|
||||||
self.storage = storage
|
self.storage = storage
|
||||||
self.file_name = os.path.basename(unhexlify(file_name))
|
self.file_name = os.path.basename(unhexlify(file_name).decode())
|
||||||
self._calculated_total_bytes = None
|
self._calculated_total_bytes = None
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
certifi==2018.4.16
|
certifi==2018.4.16
|
||||||
Twisted==16.6.0
|
Twisted==18.7.0'=
|
||||||
cryptography==2.3
|
cryptography==2.3
|
||||||
appdirs==1.4.3
|
appdirs==1.4.3
|
||||||
argparse==1.2.1
|
argparse==1.2.1
|
||||||
docopt==0.6.2
|
docopt==0.6.2
|
||||||
base58==0.2.2
|
base58==1.0.0
|
||||||
colorama==0.3.7
|
colorama==0.3.7
|
||||||
dnspython==1.12.0
|
dnspython==1.12.0
|
||||||
ecdsa==0.13
|
ecdsa==0.13
|
||||||
|
@ -23,7 +23,6 @@ service_identity==16.0.0
|
||||||
six>=1.9.0
|
six>=1.9.0
|
||||||
slowaes==0.1a1
|
slowaes==0.1a1
|
||||||
txJSON-RPC==0.5
|
txJSON-RPC==0.5
|
||||||
zope.interface==4.3.3
|
|
||||||
treq==17.8.0
|
treq==17.8.0
|
||||||
typing
|
typing
|
||||||
git+https://github.com/lbryio/torba.git#egg=torba
|
git+https://github.com/lbryio/torba.git#egg=torba
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
mock>=2.0,<3.0
|
mock>=2.0,<3.0
|
||||||
Faker==0.8
|
Faker==0.8.17
|
||||||
git+https://github.com/lbryio/orchstr8.git#egg=orchstr8
|
git+https://github.com/lbryio/orchstr8.git#egg=orchstr8
|
||||||
|
|
7
setup.py
7
setup.py
|
@ -23,10 +23,10 @@ setup(
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'aiohttp',
|
'aiohttp',
|
||||||
'twisted[tls]>=18.7.0',
|
'twisted[tls]==18.7.0',
|
||||||
'appdirs',
|
'appdirs',
|
||||||
'distro',
|
'distro',
|
||||||
'base58',
|
'base58==1.0.0',
|
||||||
'envparse',
|
'envparse',
|
||||||
'jsonrpc',
|
'jsonrpc',
|
||||||
'cryptography',
|
'cryptography',
|
||||||
|
@ -44,7 +44,8 @@ setup(
|
||||||
extras_require={
|
extras_require={
|
||||||
'test': (
|
'test': (
|
||||||
'mock>=2.0,<3.0',
|
'mock>=2.0,<3.0',
|
||||||
'faker==0.8.17'
|
'faker==0.8.17',
|
||||||
|
'orchstr8>=0.0.4'
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue