Changeset 9674
- Timestamp:
- Feb 16, 2015, 11:50:21 AM (10 years ago)
- Location:
- trunk/anuga_core
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/anuga/__init__.py
r9667 r9674 39 39 # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. 40 40 # 41 __version__ = '1.3. 6'41 __version__ = '1.3.7' 42 42 43 43 __svn_revision__ = filter(str.isdigit, "$Revision$") … … 82 82 import subprocess 83 83 try: 84 output = subprocess.check_output('gcc -dumpmachine', shell=True )84 output = subprocess.check_output('gcc -dumpmachine', shell=True, stderr=subprocess.STDOUT) 85 85 MinGW = 'mingw' in output 86 86 except Exception as e: -
trunk/anuga_core/anuga/tsunami_source/setup.py
r9664 r9674 16 16 config.add_data_dir(join('tests','data')) 17 17 18 if sys.platform != 'win32':19 20 18 19 #config.add_extension('okada_tsunami_fortran', 20 # sources=['okada_tsunami_fortran.f']) 21 21 22 22 -
trunk/anuga_core/setup.cfg
r9665 r9674 12 12 13 13 14 #[pip]15 #compiler=mingw3216 14 17 15 #[build] -
trunk/anuga_core/setup.py
r9670 r9674 72 72 zip_safe=False, # the package can run out of an .egg file 73 73 include_package_data=True, 74 install_requires=['numpy', 75 'scipy', 76 'netcdf4', 77 'nose', 78 'matplotlib', 79 'gdal'] 74 80 ) 75 81 else: … … 89 95 for filename in filenames: 90 96 if (filename.endswith('.so') or filename.endswith('.pyd') 91 or filename.endswith('.dll')92 97 or filename.endswith('.pyc')): 93 98 os.unlink(os.path.join(dirpath, filename)) … … 141 146 'Programming Language :: Python :: 2.7', 142 147 ], 143 install_requires=['numpy',144 'scipy',145 'netcdf4',146 'nose',147 'matplotlib',148 'gdal',149 'geos'],150 148 cmdclass={'clean': CleanCommand}, 151 149 **extra_setuptools_args) … … 176 174 if __name__ == "__main__": 177 175 176 178 177 setup_package() 179 178
Note: See TracChangeset
for help on using the changeset viewer.