changeset 181:91fe19d9eba4 2.02 2.02.0

Created a branch for the 2.02 release
author Oleg Oshmyan <chortos@inbox.lv>
date Thu, 14 Jul 2011 16:47:49 +0300
parents 760d38ee86d6
children a45ee530d136
files setup-exe.py setup.py upreckon/upreckon-vcs
diffstat 3 files changed, 3 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/setup-exe.py	Wed Jun 29 01:26:33 2011 +0300
+++ b/setup-exe.py	Thu Jul 14 16:47:49 2011 +0300
@@ -30,7 +30,7 @@
 os.rename('upreckon/unix.py', 'upreckon/unix.py~')
 try:
 	setup(name='Upreckon',
-	      version='2.01.0',
+	      version='2.02.0',
 	      author='Oleg Oshmyan',
 	      author_email='chortos@inbox.lv',
 	      url='http://chortos.selfip.net/~astiob/test.py/',
--- a/setup.py	Wed Jun 29 01:26:33 2011 +0300
+++ b/setup.py	Thu Jul 14 16:47:49 2011 +0300
@@ -28,7 +28,7 @@
 	ext_modules = []
 
 setup(name='upreckon',
-      version='2.01.0',
+      version='2.02.0',
       author='Oleg Oshmyan',
       author_email='chortos@inbox.lv',
       url='http://chortos.selfip.net/~astiob/test.py/',
--- a/upreckon/upreckon-vcs	Wed Jun 29 01:26:33 2011 +0300
+++ b/upreckon/upreckon-vcs	Thu Jul 14 16:47:49 2011 +0300
@@ -8,13 +8,12 @@
 from upreckon.compat import *
 
 version = '2.02.0 ($$REV$$)'
-parser = optparse.OptionParser(version='Upreckon '+version, epilog='Python 2.5 or newer is required.')
+parser = optparse.OptionParser(version='Upreckon '+version, epilog='Python 2.6 or newer is required.')
 parser.add_option('-1', dest='legacy', action='store_true', default=False, help='handle configuration files in a way more compatible with test.py 1.x')
 parser.add_option('-p', '--problem', dest='problems', metavar='PROBLEM', action='append', help='test only the PROBLEM (this option can be specified more than once with different problem names, all of which will be tested)')
 parser.add_option('--list-problems', action='store_true', default=False, help='just list all problem names')
 parser.add_option('-m', '--copy-io', dest='copyonly', action='store_true', default=False, help='create a copy of the input/output files of the last test case for manual testing and exit')
 parser.add_option('-x', '--auto-exit', dest='pause', action='store_false', default=True, help='do not wait for a key to be pressed after finishing testing')
-#parser.add_option('-s', '--save-io', dest='erase', action='store_false', default=True, help='do not delete the copies of input/output files after the last test case; create copies of input files and store output in files even if the solution uses standard I/O; delete the stored input/output files if the solution uses standard I/O and the -c/--cleanup option is specified')
 parser.add_option('-s', '--save-io', dest='erase', action='store_false', default=True, help='do not delete the copies of input/output files after the last test case; create copies of input files and store output in files even if the solution uses standard I/O')
 parser.add_option('-k', '--skim', action='store_true', default=False, help='skip test groups as soon as one test case is failed')
 parser.add_option('--no-time-limits', dest='no_maxtime', action='store_true', default=False, help='disable all time limits')