From 25d723c08bd39f89b947167b375d3f71074f1317 Mon Sep 17 00:00:00 2001 From: VasuAgrawal Date: Fri, 19 Jan 2024 18:04:33 -0500 Subject: [PATCH] Disable projectaria tools on Windows (#2794) * Update pyproject.toml to work for windows again * Actually pycolmap works now --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bb68bd4eb6..0dcfb6c9cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,7 +96,9 @@ dev = [ "opencv-stubs==0.0.7", "transformers==4.29.2", "pyright==1.1.331", - "projectaria_tools[all]>=1.2.0", + # NOTE: Disabling projectaria-tools because it doesn't have prebuilt windows wheels + # Syntax comes from here: https://pip.pypa.io/en/stable/reference/requirement-specifiers/ + "projectaria-tools>=1.3.1; sys_platform != 'win32'", ] # Documentation related packages