From e43b9b65fa97084f696b6916eed2c2b17682cb8d Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 13 Jan 2023 07:00:13 +0100 Subject: [PATCH] increase minimium ccxt version to 2.6.6 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 13571731e..5a6931507 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ numpy==1.24.1 pandas==1.5.2 pandas-ta==0.3.14b -ccxt==2.5.56 +ccxt==2.6.6 # Pin cryptography for now due to rust build errors with piwheels cryptography==38.0.1; platform_machine == 'armv7l' cryptography==38.0.4; platform_machine != 'armv7l' diff --git a/setup.py b/setup.py index 894388554..23fd71612 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ setup( ], install_requires=[ # from requirements.txt - 'ccxt>=1.92.9', + 'ccxt>=2.6.6', 'SQLAlchemy', 'python-telegram-bot>=13.4', 'arrow>=0.17.0',