Files
2026-02-11 15:05:09 +01:00

11 lines
350 B
Python

"""MLX-Knife - HuggingFace model management for MLX."""
# Suppress urllib3 LibreSSL warning on macOS system Python 3.9
# (must run before any imports that may indirectly import urllib3)
import warnings
# Issue parity with 1.1.0 (Issue #22)
warnings.filterwarnings('ignore', message='urllib3 v2 only supports OpenSSL 1.1.1+')
__version__ = "2.0.4"