Seems that #420 adds a check for: ```python if getattr(pytest, "__version_tuple__", (0, 0, 0) < (7,)): ... ``` Although that module has no `__version_tuple__` attribute, so the fallback value is used: ```console python -c "import pytest; pytest.__version_tuple__" ``` Raises: ``` AttributeError: module pytest has no attribute __version_tuple__. Did you mean: 'version_tuple'? ``` --- ```console $ pytest --version >>> pytest 7.1.3 ```