Merge remote-tracking branch 'upstream/develop' into develop

This commit is contained in:
baudbox 2017-11-23 20:53:09 +00:00
commit ec67946801
3 changed files with 2 additions and 5 deletions

View File

@ -68,7 +68,7 @@ class Trade(_DECL_BASE):
open_order_id = Column(String)
def __repr__(self):
return 'Trade(id={}, pair={}, amount={}, open_rate={}, open_since={})'.format(
return 'Trade(id={}, pair={}, amount={:.8f}, open_rate={:.8f}, open_since={})'.format(
self.id,
self.pair,
self.amount,

View File

@ -1,4 +1,4 @@
-e git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex
python-bittrex==0.2.1
SQLAlchemy==1.1.14
python-telegram-bot==8.1.1
arrow==0.10.0

View File

@ -36,9 +36,6 @@ setup(name='freqtrade',
'tabulate',
'cachetools',
],
dependency_links=[
"git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex"
],
include_package_data=True,
zip_safe=False,
classifiers=[