Skip to content

Commit 911c23e

Browse files
committed
Add 3.0 to supported versions
1 parent bdc0224 commit 911c23e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/robotide/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,11 @@
3434
errorMessageTemplate = Template("""$reason
3535
You need to install wxPython 2.8.12.1 with unicode support to run RIDE.
3636
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"]
37+
supported_versions = ["2.8", "3.0"]
3838

3939
try:
4040
import wxversion
4141
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")
4442
wxversion.select(supported_versions)
4543
import wx
4644
except ImportError as e:

0 commit comments

Comments
 (0)