We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdc0224 commit 911c23eCopy full SHA for 911c23e
src/robotide/__init__.py
@@ -34,13 +34,11 @@
34
errorMessageTemplate = Template("""$reason
35
You need to install wxPython 2.8.12.1 with unicode support to run RIDE.
36
wxPython 2.8.12.1 can be downloaded from http://sourceforge.net/projects/wxpython/files/wxPython/2.8.12.1/""")
37
-supported_versions = ["2.8"]
+supported_versions = ["2.8", "3.0"]
38
39
try:
40
import wxversion
41
from wxversion import VersionError
42
- if sys.platform == 'darwin': # CAN NOT IMPORT IS_MAC AS THERE IS A wx IMPORT
43
- supported_versions.append("3.0")
44
wxversion.select(supported_versions)
45
import wx
46
except ImportError as e:
0 commit comments