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