Merge branch 'develop' into pyup-initial-update

This commit is contained in:
Michael Egger 2017-11-23 21:49:56 +01:00 committed by GitHub
commit fd30f5dc59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 5 deletions

View File

@ -68,7 +68,7 @@ class Trade(_DECL_BASE):
open_order_id = Column(String) open_order_id = Column(String)
def __repr__(self): 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.id,
self.pair, self.pair,
self.amount, 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.15 SQLAlchemy==1.1.15
python-telegram-bot==8.1.1 python-telegram-bot==8.1.1
arrow==0.10.0 arrow==0.10.0

View File

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