forked from LBRYCommunity/lbry-sdk
Merge pull request #353 from lbryio/update-six
allow more recent versions of six
This commit is contained in:
commit
521ad57b61
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ requests==2.9.1
|
||||||
requests_futures==0.9.7
|
requests_futures==0.9.7
|
||||||
seccure==0.3.1.3
|
seccure==0.3.1.3
|
||||||
simplejson==3.8.2
|
simplejson==3.8.2
|
||||||
six==1.9.0
|
six>=1.9.0
|
||||||
slowaes==0.1a1
|
slowaes==0.1a1
|
||||||
txJSON-RPC==0.3.1
|
txJSON-RPC==0.3.1
|
||||||
wsgiref==0.1.2
|
wsgiref==0.1.2
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -54,7 +54,7 @@ requires = [
|
||||||
'requests_futures==0.9.7',
|
'requests_futures==0.9.7',
|
||||||
'seccure==0.3.1.3',
|
'seccure==0.3.1.3',
|
||||||
'simplejson==3.8.2',
|
'simplejson==3.8.2',
|
||||||
'six==1.9.0',
|
'six>=1.9.0',
|
||||||
'slowaes==0.1a1',
|
'slowaes==0.1a1',
|
||||||
'txJSON-RPC==0.3.1',
|
'txJSON-RPC==0.3.1',
|
||||||
'wsgiref==0.1.2',
|
'wsgiref==0.1.2',
|
||||||
|
|
Loading…
Reference in a new issue