requirements and bytes/string

This commit is contained in:
Jack Robison 2018-08-24 12:21:11 -04:00
parent 584433e16c
commit 5a1f551ce5
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
4 changed files with 8 additions and 8 deletions

View file

@ -22,7 +22,7 @@ class EncryptedFileDownloader(CryptStreamDownloader):
payment_rate_manager, wallet, key, stream_name)
self.stream_hash = stream_hash
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
@defer.inlineCallbacks

View file

@ -1,10 +1,10 @@
certifi==2018.4.16
Twisted==16.6.0
Twisted==18.7.0'=
cryptography==2.3
appdirs==1.4.3
argparse==1.2.1
docopt==0.6.2
base58==0.2.2
base58==1.0.0
colorama==0.3.7
dnspython==1.12.0
ecdsa==0.13
@ -23,7 +23,6 @@ service_identity==16.0.0
six>=1.9.0
slowaes==0.1a1
txJSON-RPC==0.5
zope.interface==4.3.3
treq==17.8.0
typing
git+https://github.com/lbryio/torba.git#egg=torba

View file

@ -1,3 +1,3 @@
mock>=2.0,<3.0
Faker==0.8
Faker==0.8.17
git+https://github.com/lbryio/orchstr8.git#egg=orchstr8

View file

@ -23,10 +23,10 @@ setup(
},
install_requires=[
'aiohttp',
'twisted[tls]>=18.7.0',
'twisted[tls]==18.7.0',
'appdirs',
'distro',
'base58',
'base58==1.0.0',
'envparse',
'jsonrpc',
'cryptography',
@ -44,7 +44,8 @@ setup(
extras_require={
'test': (
'mock>=2.0,<3.0',
'faker==0.8.17'
'faker==0.8.17',
'orchstr8>=0.0.4'
)
}
)