230 # Parse the command line. |
230 # Parse the command line. |
231 global progName, modDir, doCleanup, doCompile, distDir |
231 global progName, modDir, doCleanup, doCompile, distDir |
232 global sourceDir, eric7SourceDir |
232 global sourceDir, eric7SourceDir |
233 |
233 |
234 if sys.version_info < (3, 7, 0) or sys.version_info >= (4, 0, 0): |
234 if sys.version_info < (3, 7, 0) or sys.version_info >= (4, 0, 0): |
235 print("Sorry, the eric debugger requires Python 3.7 or better" " for running.") |
235 print("Sorry, the eric debugger requires Python 3.7 or better for running.") |
236 exit(5) |
236 exit(5) |
237 |
237 |
238 progName = os.path.basename(argv[0]) |
238 progName = os.path.basename(argv[0]) |
239 |
239 |
240 if os.path.dirname(argv[0]): |
240 if os.path.dirname(argv[0]): |