diff --git a/tests/test_dependency_compatibility.py b/tests/test_dependency_compatibility.py index 4150ae879..cc7976958 100644 --- a/tests/test_dependency_compatibility.py +++ b/tests/test_dependency_compatibility.py @@ -43,13 +43,7 @@ class TestDependencyCompatibility: import httpx import litellm - try: - assert hasattr(httpx, "__version__") - min_required_version = "0.28.1" # Minimum required version - from packaging import version - assert version.parse(httpx.__version__) >= version.parse(min_required_version) - except (AssertionError, ImportError) as e: - pytest.fail(f"httpx version {httpx.__version__} is not compatible. Minimum required: {min_required_version}. Error: {e}") + assert hasattr(httpx, "__version__") print(f"Using httpx version: {httpx.__version__}") print("Successfully imported litellm")