From ba3223a9a38e67914108214124baf57716052e9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 03:49:05 +0000 Subject: [PATCH 1/2] chore(deps): bump tables from 3.9.1 to 3.10.1 Bumps [tables](https://github.com/PyTables/PyTables) from 3.9.1 to 3.10.1. - [Release notes](https://github.com/PyTables/PyTables/releases) - [Changelog](https://github.com/PyTables/PyTables/blob/master/RELEASE_NOTES.rst) - [Commits](https://github.com/PyTables/PyTables/compare/v3.9.1...v3.10.1) --- updated-dependencies: - dependency-name: tables dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 2b82e72bb..214a434e1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,7 +22,7 @@ technical==1.4.4 tabulate==0.9.0 pycoingecko==3.1.0 jinja2==3.1.4 -tables==3.9.1 +tables==3.10.1 joblib==1.4.2 rich==13.7.1 pyarrow==17.0.0; platform_machine != 'armv7l' From 6bd21b8995485d0a6b0d413f999b9a61238e64ea Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 19 Aug 2024 20:01:19 +0200 Subject: [PATCH 2/2] 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'