From 87720a8908a4f3fb90891659768ce2fb7cf98fa1 Mon Sep 17 00:00:00 2001 From: Cheng Date: Wed, 30 Apr 2025 22:04:07 +0900 Subject: [PATCH] Fix building with uv (#2141) --- .gitignore | 1 + MANIFEST.in | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index e748ee2bf..43629548d 100644 --- a/.gitignore +++ b/.gitignore @@ -36,6 +36,7 @@ share/python-wheels/ .installed.cfg *.egg MANIFEST +uv.lock # vim *.swp diff --git a/MANIFEST.in b/MANIFEST.in index 9faafee45..d0daeb7ae 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,6 @@ include CMakeLists.txt +include mlx.pc.in recursive-include mlx/ * +include cmake/* include python/src/* include python/mlx/py.typed # support type hinting as in PEP-561