From 9b939cb3d609a452f53c4e47ab5e94dc198c7479 Mon Sep 17 00:00:00 2001 From: Daniel Nunns Date: Wed, 29 Jan 2025 18:00:43 +0000 Subject: [PATCH 1/2] Remove redundant version check for fastparquet from build --- ci/pip_install_deps.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/pip_install_deps.py b/ci/pip_install_deps.py index 53e2391d..6d09b6e6 100644 --- a/ci/pip_install_deps.py +++ b/ci/pip_install_deps.py @@ -93,8 +93,7 @@ def main(args): import pandas import numpy import pyarrow - if (sys.version_info >= (3, 8) and sys.version_info < (3, 13)): - # As of this commit, fastparquet does not have a binary built for 3.13 + if sys.version_info >= (3, 8): import fastparquet From b0b51b8077642bc49bce5a734ba57d0ec9b6fb0f Mon Sep 17 00:00:00 2001 From: Daniel Nunns Date: Wed, 29 Jan 2025 18:15:38 +0000 Subject: [PATCH 2/2] Remove lower version check given 3.8 in project minimum --- ci/pip_install_deps.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/pip_install_deps.py b/ci/pip_install_deps.py index 6d09b6e6..389b34d8 100644 --- a/ci/pip_install_deps.py +++ b/ci/pip_install_deps.py @@ -93,8 +93,7 @@ def main(args): import pandas import numpy import pyarrow - if sys.version_info >= (3, 8): - import fastparquet + import fastparquet if __name__ == "__main__":