Changeset 3519


Ignore:
Timestamp:
Jul 30, 2018 10:59:46 PM (5 years ago)
Author:
toby
Message:

allow Python 3.7

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r3503 r3519  
    389389    def OnInit(self):
    390390        '''Called automatically when the app is created.'''
    391         knownVersions = ['2.7','3.6']
     391        knownVersions = ['2.7','3.6','3.7']
    392392        if platform.python_version()[:3] not in knownVersions:
    393393            dlg = wx.MessageDialog(None,
    394                 'GSAS-II requires Python 2.7.x or 3.6.x\n Yours is '+sys.version.split()[0],
     394                'GSAS-II requires Python 2.7.x or 3.6+\n Yours is '+sys.version.split()[0],
    395395                'Python version error',  wx.OK)
    396396            try:
Note: See TracChangeset for help on using the changeset viewer.