Skip to content

Commit 006d01b

Browse files
authored
Fix packaging of gguflib (#435)
1 parent 46dc24d commit 006d01b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ option(MLX_BUILD_METAL "Build metal backend" ON)
1818
option(BUILD_SHARED_LIBS "Build mlx as a shared library" OFF)
1919

2020
if(NOT MLX_VERSION)
21-
set(MLX_VERSION 0.0.8)
21+
set(MLX_VERSION 0.0.9)
2222
endif()
2323

2424
# --------------------- Processor tests -------------------------

docs/src/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
project = "MLX"
1111
copyright = "2023, MLX Contributors"
1212
author = "MLX Contributors"
13-
version = "0.0.8"
14-
release = "0.0.8"
13+
version = "0.0.9"
14+
release = "0.0.9"
1515

1616
# -- General configuration ---------------------------------------------------
1717

mlx/io/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ target_include_directories(
2727
$<INSTALL_INTERFACE:include/gguflib>
2828
)
2929
add_library(
30-
gguflib SHARED
30+
gguflib STATIC
3131
${gguflib_SOURCE_DIR}/fp16.c
3232
${gguflib_SOURCE_DIR}/gguflib.c)
3333
target_link_libraries(mlx $<BUILD_INTERFACE:gguflib>)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def run(self) -> None:
164164

165165
setup(
166166
name="mlx",
167-
version=get_version("0.0.8"),
167+
version=get_version("0.0.9"),
168168
author="MLX Contributors",
169169
author_email="[email protected]",
170170
description="A framework for machine learning on Apple silicon.",

0 commit comments

Comments
 (0)