@elextr do we want to use "python3" in the shebang of the script? ``` diff --git a/scripts/gen-api-gtkdoc.py b/scripts/gen-api-gtkdoc.py index 75beb86c..7423257c 100755 --- a/scripts/gen-api-gtkdoc.py +++ b/scripts/gen-api-gtkdoc.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright 2015 The Geany contributors # ```
Technically it is not necessary as the script is called by Autotools with the detected Python interpreter but it would document that the script is meant to be run with Python3.