From aaae64ad6e3db060d6e6e8f7effbdcd3589c5131 Mon Sep 17 00:00:00 2001 From: Filip Strand Date: Wed, 4 Jun 2025 16:35:40 +0200 Subject: [PATCH] Bump MLX version (#200) --- Makefile | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4e5cf25..b1e96ac 100644 --- a/Makefile +++ b/Makefile @@ -93,7 +93,7 @@ check: ensure-ruff .PHONY: test test: ensure-pytest # 🏗️ Running tests... - uv pip install mlx==0.25.0 # Install pinned MLX version specifically for testing + uv pip install mlx==0.26.1 # Install pinned MLX version specifically for testing $(PYTHON) -m pytest # ✅ Tests completed diff --git a/pyproject.toml b/pyproject.toml index b2fd4d0..ea71101 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ requires-python = ">=3.10" dependencies = [ "huggingface-hub>=0.24.5,<1.0", "matplotlib>=3.9.2,<4.0", - "mlx>=0.22.0,<0.26.0", + "mlx>=0.22.0,<0.27.0", "numpy>=2.0.1,<3.0", "opencv-python>=4.10.0,<5.0", "piexif>=1.1.3,<2.0", @@ -48,7 +48,7 @@ classifiers = [ dev = [ "pytest>=8.3.0,<9.0", "pytest-timer>=1.0,<2.0", - "mlx==0.25.0", # Used ONLY during test runs to ensure deterministic test results + "mlx==0.26.1", # Used ONLY during test runs to ensure deterministic test results ] [project.urls]