From cfcabf7a12a2426410de69d882b882c11306cfe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristi=C3=A1n=20Maureira-Fredes?= Date: Tue, 31 Aug 2021 10:23:10 +0200 Subject: Remove lupdate changes temporarily The new version will be added in 6.2, and some changes were pushed to 6.1 but they were not working. Change-Id: I0ce85b1ebcfcba6bd0d683fa543bc8fdd7e4d080 Reviewed-by: Christian Tismer (cherry picked from commit 897e5d4651abb3e1c7b131a0ec10e011b2b187ce) --- sources/pyside-tools/pyside_tool.py | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'sources/pyside-tools/pyside_tool.py') diff --git a/sources/pyside-tools/pyside_tool.py b/sources/pyside-tools/pyside_tool.py index 6a47d3632..13b9ab24a 100644 --- a/sources/pyside-tools/pyside_tool.py +++ b/sources/pyside-tools/pyside_tool.py @@ -48,15 +48,6 @@ from subprocess import Popen, PIPE import PySide6 as ref_mod -def main(): - # This will take care of "pyside6-lupdate" listed as an entrypoint - # in setup.py are copied to 'scripts/..' - cmd = os.path.join("..", os.path.basename(sys.argv[0])) - command = [os.path.join(os.path.dirname(os.path.realpath(__file__)), cmd)] - command.extend(sys.argv[1:]) - sys.exit(subprocess.call(command)) - - def qt_tool_wrapper(qt_tool, args): # Taking care of pyside6-uic, pyside6-rcc, and pyside6-designer # listed as an entrypoint in setup.py @@ -134,7 +125,3 @@ def genpyi(): cmd = support / "generate_pyi.py" command = [sys.executable, os.fspath(cmd)] + sys.argv[1:] sys.exit(subprocess.call(command)) - - -if __name__ == "__main__": - main() -- cgit v1.2.3