[Boa Constr] wxWindows 2.3.1 != 2.3.0
Status: Beta
Brought to you by:
riaan
From: Warnes, G. R <gre...@gr...> - 2001-09-06 01:01:20
|
I discovered that the current release of Boa checks to be sure that wxWindows is exactly 2.3.0. However, I'm using 2.3.1, so it would stop with an error message. Since I figure that higher minor revisions shouldn't break Boa, I modified the code in Boa.py to allow this. Patch below. (BTW, is there a better place to send these?) -Greg $ cvs diff Boa.py Index: Boa.py =================================================================== RCS file: /cvsroot/boa-constructor/boa/Boa.py,v retrieving revision 1.23 diff -r1.23 Boa.py 109c109 < if (wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER) != (2, 3, 0): --- > if (wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER) < (2, 3, 0): 113c113 < raise 'wxPython 2.3.0 required' --- > raise 'wxPython 2.3.0 or later required' LEGAL NOTICE Unless expressly stated otherwise, this message is confidential and may be privileged. It is intended for the addressee(s) only. Access to this E-mail by anyone else is unauthorized. If you are not an addressee, any disclosure or copying of the contents of this E-mail or any action taken (or not taken) in reliance on it is unauthorized and may be unlawful. If you are not an addressee, please inform the sender immediately. |