238 |
238 |
239 # Parse the command line. |
239 # Parse the command line. |
240 global progName, modDir, doCleanup, doCompile, distDir |
240 global progName, modDir, doCleanup, doCompile, distDir |
241 global sourceDir |
241 global sourceDir |
242 |
242 |
243 if sys.version_info < (3, 5, 0) or sys.version_info >= (4, 0, 0): |
243 if sys.version_info < (3, 6, 0) or sys.version_info >= (4, 0, 0): |
244 print('Sorry, the eric6 debugger requires Python 3.5 or better' |
244 print('Sorry, the eric6 debugger requires Python 3.6 or better' |
245 ' for running.') |
245 ' for running.') |
246 exit(5) |
246 exit(5) |
247 |
247 |
248 progName = os.path.basename(argv[0]) |
248 progName = os.path.basename(argv[0]) |
249 |
249 |