Merge pull request #10522 from freqtrade/dependabot/pip/develop/ccxt-4.3.79

chore(deps): bump ccxt from 4.3.76 to 4.3.79
This commit is contained in:
Matthias 2024-08-12 09:45:55 +02:00 committed by GitHub
commit 50b55c3f31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -4,7 +4,7 @@ bottleneck==1.4.0
numexpr==2.10.1
pandas-ta==0.3.14b
ccxt==4.3.76
ccxt==4.3.79
cryptography==42.0.8; platform_machine == 'armv7l'
cryptography==43.0.0; platform_machine != 'armv7l'
aiohttp==3.10.3

View File

@ -106,9 +106,7 @@ class TestCCXTExchange:
assert isinstance(fees, list)
for fee in fees:
assert isinstance(fee, dict)
assert isinstance(fee["cost"], str)
# TODO: this should be a float!
# assert isinstance(fee["cost"], float)
assert isinstance(fee["cost"], float)
assert isinstance(fee["currency"], str)
else: