From 6bd21b8995485d0a6b0d413f999b9a61238e64ea Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 19 Aug 2024 20:01:19 +0200 Subject: [PATCH] chore: pin tables for python 3.9 --- requirements.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 214a434e1..7e34690eb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,7 +22,9 @@ technical==1.4.4 tabulate==0.9.0 pycoingecko==3.1.0 jinja2==3.1.4 -tables==3.10.1 +# Tables 3.10 dropped support for Python 3.9 +tables==3.9.1; python_version < "3.10" +tables==3.10.1; python_version >= "3.10" joblib==1.4.2 rich==13.7.1 pyarrow==17.0.0; platform_machine != 'armv7l'