Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

correct naming of classes for Python packages nose, numpy and scipy #1

Merged
merged 1 commit into from
Aug 18, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions easybuild/easyblocks/p/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def getcfg(self, *args, **kwargs):
return self.mself.getcfg(*args, **kwargs)


class eb_Nose(eb_DefaultPythonPackage):
class eb_nose(eb_DefaultPythonPackage):
"""nose package"""
def __init__(self, mself, pkg, pkginstalldeps):
eb_DefaultPythonPackage.__init__(self, mself, pkg, pkginstalldeps)
Expand Down Expand Up @@ -227,7 +227,7 @@ def make(self):
run_cmd(cmd, log_all=True, simple=True)


class eb_Numpy(eb_FortranPythonPackage):
class eb_numpy(eb_FortranPythonPackage):
"""numpy package"""

def __init__(self, mself, pkg, pkginstalldeps):
Expand Down Expand Up @@ -310,7 +310,7 @@ def make_install(self):
self.log.debug("build dir %s already clean" % builddir)


class eb_Scipy(eb_FortranPythonPackage):
class eb_scipy(eb_FortranPythonPackage):
"""scipy package"""

def __init__(self, mself, pkg, pkginstalldeps):
Expand Down