Bump MLX version (#200)

This commit is contained in:
Filip Strand 2025-06-04 16:35:40 +02:00 committed by GitHub
parent d3e71328b2
commit aaae64ad6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

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

View File

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