mirror of
https://github.com/cloudstack-llc/mlx-knife.git
synced 2026-07-21 01:55:25 -04:00
11 lines
350 B
Python
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"
|