Skip to content

Commit

Permalink
Fix packaging of gguflib (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloskath authored Jan 11, 2024
1 parent 46dc24d commit 006d01b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ option(MLX_BUILD_METAL "Build metal backend" ON)
option(BUILD_SHARED_LIBS "Build mlx as a shared library" OFF)

if(NOT MLX_VERSION)
set(MLX_VERSION 0.0.8)
set(MLX_VERSION 0.0.9)
endif()

# --------------------- Processor tests -------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
project = "MLX"
copyright = "2023, MLX Contributors"
author = "MLX Contributors"
version = "0.0.8"
release = "0.0.8"
version = "0.0.9"
release = "0.0.9"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion mlx/io/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ target_include_directories(
$<INSTALL_INTERFACE:include/gguflib>
)
add_library(
gguflib SHARED
gguflib STATIC
${gguflib_SOURCE_DIR}/fp16.c
${gguflib_SOURCE_DIR}/gguflib.c)
target_link_libraries(mlx $<BUILD_INTERFACE:gguflib>)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def run(self) -> None:

setup(
name="mlx",
version=get_version("0.0.8"),
version=get_version("0.0.9"),
author="MLX Contributors",
author_email="mlx@group.apple.com",
description="A framework for machine learning on Apple silicon.",
Expand Down

0 comments on commit 006d01b

Please sign in to comment.