Changeset 9674


Ignore:
Timestamp:
Feb 16, 2015, 11:50:21 AM (10 years ago)
Author:
steve
Message:

Update version

Location:
trunk/anuga_core
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/anuga/__init__.py

    r9667 r9674  
    3939# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
    4040#
    41 __version__ = '1.3.6'
     41__version__ = '1.3.7'
    4242
    4343__svn_revision__ = filter(str.isdigit, "$Revision$")
     
    8282        import subprocess
    8383        try:
    84             output = subprocess.check_output('gcc -dumpmachine', shell=True)
     84            output = subprocess.check_output('gcc -dumpmachine', shell=True, stderr=subprocess.STDOUT)
    8585            MinGW = 'mingw' in output
    8686        except Exception as e:
  • trunk/anuga_core/anuga/tsunami_source/setup.py

    r9664 r9674  
    1616    config.add_data_dir(join('tests','data'))
    1717   
    18     if sys.platform != 'win32':
    19                 config.add_extension('okada_tsunami_fortran',
    20                             sources=['okada_tsunami_fortran.f'])
     18   
     19    #config.add_extension('okada_tsunami_fortran',
     20        #                                       sources=['okada_tsunami_fortran.f'])
    2121
    2222   
  • trunk/anuga_core/setup.cfg

    r9665 r9674  
    1212
    1313
    14 #[pip]
    15 #compiler=mingw32
    1614
    1715#[build]
  • trunk/anuga_core/setup.py

    r9670 r9674  
    7272        zip_safe=False,  # the package can run out of an .egg file
    7373        include_package_data=True,
     74                install_requires=['numpy',
     75                          'scipy',
     76                          'netcdf4',
     77                          'nose',
     78                          'matplotlib',
     79                          'gdal']
    7480    )
    7581else:
     
    8995            for filename in filenames:
    9096                if (filename.endswith('.so') or filename.endswith('.pyd')
    91                         or filename.endswith('.dll')
    9297                        or filename.endswith('.pyc')):
    9398                    os.unlink(os.path.join(dirpath, filename))
     
    141146                                 'Programming Language :: Python :: 2.7',
    142147                                 ],
    143                     install_requires=['numpy',
    144                                       'scipy',
    145                                       'netcdf4',
    146                                       'nose',
    147                                       'matplotlib',
    148                                       'gdal',
    149                                       'geos'],
    150148                    cmdclass={'clean': CleanCommand},
    151149                    **extra_setuptools_args)
     
    176174if __name__ == "__main__":
    177175
     176
    178177    setup_package()
    179178   
Note: See TracChangeset for help on using the changeset viewer.