Skip to content
Snippets Groups Projects
Commit 71914e1b authored by Joseph Ciurej's avatar Joseph Ciurej Committed by Todd Gamblin
Browse files

Fixed a few minor style issues with the updated Python packages.

parent 90235b4d
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,5 @@ class PyAstropy(Package):
depends_on('expat')
def install(self, spec, prefix):
setup_py('build', '--use-system-cfitsio',
'--use-system-expat')
setup_py('build', '--use-system-cfitsio', '--use-system-expat')
setup_py('install', '--prefix={0}'.format(prefix))
......@@ -56,8 +56,7 @@ class PyH5py(Package):
depends_on('py-six', type=nolink)
def install(self, spec, prefix):
setup_py('configure',
'--hdf5={0}'.format(spec['hdf5'].prefix))
setup_py('configure', '--hdf5={0}'.format(spec['hdf5'].prefix))
if '+mpi' in spec:
env['CC'] = spec['mpi'].mpicc
......
......@@ -64,6 +64,4 @@ def patch(self):
'shiboken_postinstall.py')
def install(self, spec, prefix):
setup_py('install',
'--prefix=%s' % prefix,
'--jobs=%s' % make_jobs)
setup_py('install', '--prefix=%s' % prefix, '--jobs=%s' % make_jobs)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment