From 5fb9cdc2b1590aa459414b60cb48df21e6575c64 Mon Sep 17 00:00:00 2001 From: kingbri Date: Sat, 3 Aug 2024 17:43:14 -0400 Subject: [PATCH] Dependencies: Add Python 3.12 specific dependencies Install a prebuilt fastparquet wheel for Windows and add setuptools since torch may require it for some reason. Signed-off-by: kingbri --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 7cacebc..e591a15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,6 +39,10 @@ dependencies = [ # TEMP: Remove once 2.x is fixed in upstream "numpy < 2.0.0", + + # For python 3.12 + "fastparquet @ https://github.com/theroyallab/fastparquet/releases/download/v2024.5.0/fastparquet-0.1.dev837-cp312-cp312-win_amd64.whl ; platform_system == 'Windows' and python_version == '3.12'", + "setuptools ; python_version == '3.12'" ] [project.urls]