Sun, 31 May 2020 17:26:14 +0200
Merged with default branch to prepare new release.
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # Copyright (c) 2009 - 2020 Detlev Offenbach <detlev@die-offenbachs.de> # """ Script for eric6 to compile all .ui files to Python source. """ import sys from PyQt5.uic import compileUiDir def __pyName(py_dir, py_file): """ Local function to create the Python source file name for the compiled .ui file. @param py_dir suggested name of the directory (string) @param py_file suggested name for the compile source file (string) @return tuple of directory name (string) and source file name (string) """ return py_dir, "Ui_{0}".format(py_file) def compileUiFiles(): """ Compile the .ui files to Python sources. """ compileUiDir("eric6", True, __pyName) def main(argv): """ The main function of the script. @param argv the list of command line arguments. """ # Compile .ui files print("Compiling user interface files...") compileUiFiles() if __name__ == "__main__": try: main(sys.argv) except SystemExit: raise except Exception: print( "\nAn internal error occured. Please report all the output of the" " program, \nincluding the following traceback, to" " eric-bugs@eric-ide.python-projects.org.\n") raise # # eflag: noqa = M801