(mod)
| 99 | # Check which dependencies are installed and greater than minimum version. |
| 100 | #----------------------------------------------------------------------------- |
| 101 | def extract_version(mod): |
| 102 | return mod.__version__ |
| 103 | |
| 104 | def test_for(item, min_version=None, callback=extract_version): |
| 105 | """Test to see if item is importable, and optionally check against a minimum |
nothing calls this directly
no outgoing calls
no test coverage detected