Fix packaging of gguflib (#435)

This commit is contained in:
Angelos Katharopoulos 2024-01-11 13:56:03 -08:00 committed by GitHub
parent 46dc24d835
commit 006d01ba42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -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 -------------------------

View File

@ -10,8 +10,8 @@ import subprocess
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 ---------------------------------------------------

View File

@ -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>)

View File

@ -164,7 +164,7 @@ if __name__ == "__main__":
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.",