Skip to content

Commit

Permalink
Merge pull request #1 from boegel/86_encoding_scheme
Browse files Browse the repository at this point in the history
correct naming of classes for Python packages nose, numpy and scipy
  • Loading branch information
fgeorgatos committed Aug 18, 2012
2 parents c1cedcd + 95c9013 commit 854f0f9
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 854f0f9

Please sign in to comment.