Ticket #26994: patch-setup.py.diff

File patch-setup.py.diff, 640 bytes (added by khinsen (Konrad Hinsen), 14 years ago)
  • setup.py

    old new  
    5858except :
    5959    print 'nMOLDYN needs pyro %s or higher. The parallel computing functionnalities will be disabled.' % pyro_minversion
    6060
    61 # Check that we have Scientific 2.9.0 or higher.
     61# Check that we have Scientific 2.8.0 or higher.
    6262try:
    63     scientific_minversion = '2.9.0'
     63    scientific_minversion = '2.8'
    6464    from Scientific import __version__ as scientific_version
    6565    scientific_version = LooseVersion(vstring = scientific_version)
    6666    if scientific_version < LooseVersion(vstring = scientific_minversion):