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

Unify handling of pylibdirs and don't add duplicated $PYTHONPATH in PythonBundle #2281

Merged
Merged
Show file tree
Hide file tree
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/generic/pythonbundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

from easybuild.easyblocks.generic.bundle import Bundle
from easybuild.easyblocks.generic.pythonpackage import EBPYTHONPREFIXES, EXTS_FILTER_PYTHON_PACKAGES
from easybuild.easyblocks.generic.pythonpackage import PythonPackage, det_pylibdir, pick_python_cmd
from easybuild.easyblocks.generic.pythonpackage import PythonPackage, get_pylibdirs, pick_python_cmd
from easybuild.tools.build_log import EasyBuildError
from easybuild.tools.filetools import which
from easybuild.tools.modules import get_software_root
Expand Down Expand Up @@ -111,8 +111,8 @@ def prepare_step(self, *args, **kwargs):

python_cmd = pick_python_cmd(req_maj_ver=req_py_majver, req_min_ver=req_py_minver)

self.pylibdir = det_pylibdir(python_cmd=python_cmd)
self.all_pylibdirs = [self.pylibdir, det_pylibdir(plat_specific=True, python_cmd=python_cmd)]
self.all_pylibdirs = get_pylibdirs(python_cmd=python_cmd)
self.pylibdir = self.all_pylibdirs[0]

# if 'python' is not used, we need to take that into account in the extensions filter
# (which is also used during the sanity check)
Expand Down
43 changes: 26 additions & 17 deletions easybuild/easyblocks/generic/pythonpackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,30 @@ def det_pylibdir(plat_specific=False, python_cmd=None):
return pylibdir


def get_pylibdirs(python_cmd):
"""Return a list of python library paths to use. The first entry will be the main one"""
log = fancylogger.getLogger('get_pylibdirs', fname=False)

# pylibdir is the 'main' Python lib directory
pylibdir = det_pylibdir(python_cmd=python_cmd)
log.debug("Python library dir: %s" % pylibdir)

# on (some) multilib systems, the platform-specific library directory for the system Python is different
# cfr. http://serverfault.com/a/88739/126446
# so, we keep a list of different Python lib directories to take into account
all_pylibdirs = nub([pylibdir, det_pylibdir(plat_specific=True, python_cmd=python_cmd)])
log.debug("All Python library dirs: %s" % all_pylibdirs)

# make very sure an entry starting with lib/ is present,
# since older versions of setuptools hardcode 'lib' rather than using the value produced by
# distutils.sysconfig.get_python_lib (which may always be lib64/...)
if not any(pylibdir.startswith('lib' + os.path.sep) for pylibdir in all_pylibdirs):
pylibdir = os.path.join('lib', *pylibdir.split(os.path.sep)[1:])
all_pylibdirs.append(pylibdir)
log.debug("No lib/ entry found in list of Python lib dirs, so added it: %s", all_pylibdirs)
return all_pylibdirs


def det_pip_version():
"""Determine version of currently active 'pip' command."""

Expand Down Expand Up @@ -331,23 +355,8 @@ def __init__(self, *args, **kwargs):
def set_pylibdirs(self):
"""Set Python lib directory-related class variables."""

# pylibdir is the 'main' Python lib directory
self.pylibdir = det_pylibdir(python_cmd=self.python_cmd)
self.log.debug("Python library dir: %s" % self.pylibdir)

# on (some) multilib systems, the platform-specific library directory for the system Python is different
# cfr. http://serverfault.com/a/88739/126446
# so, we keep a list of different Python lib directories to take into account
self.all_pylibdirs = nub([self.pylibdir, det_pylibdir(plat_specific=True, python_cmd=self.python_cmd)])
self.log.debug("All Python library dirs: %s" % self.all_pylibdirs)

# make very sure an entry starting with lib/ is present,
# since older versions of setuptools hardcode 'lib' rather than using the value produced by
# distutils.sysconfig.get_python_lib (which may always be lib64/...)
if not any(pylibdir.startswith('lib/') for pylibdir in self.all_pylibdirs):
pylibdir = os.path.join('lib', *self.pylibdir.split(os.path.sep)[1:])
self.all_pylibdirs.append(pylibdir)
self.log.debug("No lib/ entry found in list of Python lib dirs, so added it: %s", self.all_pylibdirs)
self.all_pylibdirs = get_pylibdirs(python_cmd=self.python_cmd)
self.pylibdir = self.all_pylibdirs[0]

def prepare_python(self):
"""Python-specific preperations."""
Expand Down