From 2ea777fb038f66df1d6203a41e85460d25596bb9 Mon Sep 17 00:00:00 2001 From: Milan Topalovic <163355844+mtopalovicTT@users.noreply.github.com> Date: Fri, 2 Aug 2024 12:23:12 +0200 Subject: [PATCH] [Minor] Downgrading `mypy` from latest (1.11) to 1.10 (#31) Downgrading version of `mypy` to fix dependency conflict. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bafab148c..4f8f6ff4c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,7 +51,7 @@ add_subdirectory(pybuda) ### Generate stubs for ttforge ### Run `cmake --build build -- make_stubs` to generate stubs add_custom_target(make_stubs - COMMAND pip install mypy + COMMAND pip install mypy==1.10 COMMAND stubgen -m pybuda._C -m pybuda._C.autograd -m pybuda._C.graph -m pybuda._C.torch_device -m pybuda._C.runtime -o pybuda -v COMMENT "Generating stubs for ttforge" USES_TERMINAL