|
From: Kevin A. <ka...@us...> - 2004-10-03 18:55:16
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1099 Modified Files: about.py __version__.py debug.py setup.py Log Message: renamed ver to VERSION_STRING and added VERSION tuple Index: debug.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/debug.py,v retrieving revision 1.132 retrieving revision 1.133 diff -C2 -d -r1.132 -r1.133 *** debug.py 12 Aug 2004 19:11:13 -0000 1.132 --- debug.py 3 Oct 2004 18:53:22 -0000 1.133 *************** *** 13,17 **** import font import registry - import __version__ import pprint import configuration --- 13,16 ---- Index: __version__.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/__version__.py,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** __version__.py 20 Aug 2004 00:20:49 -0000 1.36 --- __version__.py 3 Oct 2004 18:53:22 -0000 1.37 *************** *** 13,15 **** """ ! ver = '0.8.1' --- 13,16 ---- """ ! VERSION = (0, 8, 1) ! VERSION_STRING = '0.8.1' Index: setup.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/setup.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** setup.py 18 Aug 2004 23:08:01 -0000 1.21 --- setup.py 3 Oct 2004 18:53:22 -0000 1.22 *************** *** 84,88 **** setup(name=APPLICATION_NAME, ! version=__version__.ver, description="PythonCard GUI-builder", author="PythonCard Developers", --- 84,88 ---- setup(name=APPLICATION_NAME, ! version=__version__.VERSION_STRING, description="PythonCard GUI-builder", author="PythonCard Developers", Index: about.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/about.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** about.py 1 Oct 2004 00:00:13 -0000 1.5 --- about.py 3 Oct 2004 18:53:22 -0000 1.6 *************** *** 19,23 **** """ ! txt += "PythonCard version: %s\n" % __version__.ver txt += "wxPython version: %s\n" % wx.VERSION_STRING txt += "Python version: %s\n" % sys.version --- 19,23 ---- """ ! txt += "PythonCard version: %s\n" % __version__.VERSION_STRING txt += "wxPython version: %s\n" % wx.VERSION_STRING txt += "Python version: %s\n" % sys.version |