CIL icon indicating copy to clipboard operation
CIL copied to clipboard

Pythonic optional deps

Open casperdcl opened this issue 6 months ago • 0 comments

  • tests: use X = pytest.importorskip("X")
  • elsewhere:
    • delay imports
    • or try: import X; except ImportError: X = None if needed (e.g. for version.py)
  • deprecate has_X = importlib.util.find_spec("X")

casperdcl avatar Jun 10 '25 15:06 casperdcl