Browse Source

wxGUI: raise minimum version to 2.8.10.1

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55466 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 12 years ago
parent
commit
4f9b2ee7e6
3 changed files with 3 additions and 3 deletions
  1. 1 1
      REQUIREMENTS.html
  2. 1 1
      gui/wxpython/README
  3. 1 1
      gui/wxpython/core/globalvar.py

+ 1 - 1
REQUIREMENTS.html

@@ -146,7 +146,7 @@ Ctypes can be added as a third-party module in Python 2.3 and 2.4
 <a href="http://docs.python.org/library/ctypes.html">http://docs.python.org/library/ctypes.html</a>
 </li>
 
-<li><b>wxPython &gt;= 2.8.1.1</b> (for wxGUI)<br>
+<li><b>wxPython &gt;= 2.8.10.1</b> (for wxGUI)<br>
 <a href="http://www.wxpython.org">http://www.wxpython.org</a>
 </li>
 

+ 1 - 1
gui/wxpython/README

@@ -8,7 +8,7 @@ $Date$
  GRASS GIS >= 6.4
  Python    >= 2.4 (Python 3 not supported)
  	Python ElementTree (only for Python 2.4)
- wxPython  >= 2.8.1.1
+ wxPython  >= 2.8.10.1
  NumPy     >= 1.0.4
 
 

+ 1 - 1
gui/wxpython/core/globalvar.py

@@ -44,7 +44,7 @@ def CheckForWx():
     if 'wx' in sys.modules.keys():
         return
 
-    minVersion = [2, 8, 1, 1]
+    minVersion = [2, 8, 10, 1]
     try:
         try:
             import wxversion