Commit bf5975c3 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Disable pylint for now on Python 3.13

parent 2c055ec9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -65,6 +65,10 @@ def main():
    """Process command line args and run Pylint."""
    args = []

    if sys.version_info >= (3, 13):
        # https://github.com/pylint-dev/pylint/issues/10112
        return

    for arg in sys.argv[1:]:
        if arg.startswith(YAML_RCFILE_PREFIX):
            config_path = arg[len(YAML_RCFILE_PREFIX):]