.. _using-exception-groups-in-unsupported-version: using-exception-groups-in-unsupported-version / W2603 ===================================================== **Message emitted:** ``Exception groups are not supported by all versions included in the py-version setting`` **Description:** *Used when the py-version set by the user is lower than 3.11 and pylint encounters ``except*`` or `ExceptionGroup``.* **Problematic code:** .. literalinclude:: /data/messages/u/using-exception-groups-in-unsupported-version/bad.py :language: python **Correct code:** .. literalinclude:: /data/messages/u/using-exception-groups-in-unsupported-version/good.py :language: python **Configuration file:** .. literalinclude:: /data/messages/u/using-exception-groups-in-unsupported-version/pylintrc :language: ini **Additional details:** Exception groups were introduced in Python 3.11; to use it, please use a more recent version of Python. Created by the `unsupported_version `__ checker.