From 91200e599cb0af351a9bd9e522ae61741c6687c9 Mon Sep 17 00:00:00 2001 From: Marius Brehler Date: Mon, 11 Nov 2024 18:46:30 +0100 Subject: [PATCH] [shortfin] Add missing build time dependency (#474) Adds `typing-extensions` as a build time dependency as it required by nanobind, see https://github.com/nod-ai/SHARK-Platform/actions/runs/11777270868/job/32801349583#step:5:744 --- shortfin/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/shortfin/pyproject.toml b/shortfin/pyproject.toml index eb54c835b..47cde6775 100644 --- a/shortfin/pyproject.toml +++ b/shortfin/pyproject.toml @@ -4,6 +4,7 @@ requires = [ "setuptools>=61.0", "wheel", "ninja", + 'typing-extensions ; python_version == "3.10" ', ] build-backend = "setuptools.build_meta"