We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db64d79 commit 9e2afdaCopy full SHA for 9e2afda
tests/test_statsmodels_scipy_compatibility.py
@@ -32,12 +32,14 @@ def check_versions():
32
def test_statsmodels_import():
33
"""Ensure statsmodels can be imported and has expected version."""
34
import statsmodels
35
+
36
assert statsmodels.__version__ >= "0.14.5"
37
38
39
def test_statsmodels_api_import():
40
"""Ensure statsmodels.api can be imported without triggering ImportError."""
41
import statsmodels.api as sm
42
43
assert hasattr(sm, "OLS")
44
assert len(dir(sm)) > 10 # Sanity check
45
0 commit comments