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

Setup find_installed_packages to fix bootstrap instructions #472

Merged
merged 4 commits into from
Jan 22, 2022
Merged
Changes from 2 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
8 changes: 8 additions & 0 deletions bin/colcon
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ from colcon_core.prefix_path.colcon import ColconPrefixPath # noqa: E402
from colcon_core.shell import ALL_SHELLS_ENVIRONMENT_VARIABLE # noqa: E402
from colcon_core.shell.bat import BatShell # noqa: E402
from colcon_core.shell.dsv import DsvShell # noqa: E402
from colcon_core.shell.installed_packages \
import IsolatedInstalledPackageFinder # noqa: E402
from colcon_core.shell.installed_packages \
import MergedInstalledPackageFinder # noqa: E402
from colcon_core.shell.sh import ShShell # noqa: E402
from colcon_core.task.python.build import PythonBuildTask # noqa: E402
from colcon_core.task.python.test import PythonTestTask # noqa: E402
Expand Down Expand Up @@ -101,6 +105,10 @@ custom_entry_points.update({
# there is no point in registering the extension_point extensions here
# since they can't be queried through pkg_resources without installing
},
'colcon_core.shell.find_installed_packages': {
'colcon_isolated': IsolatedInstalledPackageFinder,
'colcon_merged': MergedInstalledPackageFinder,
},
'colcon_core.package_augmentation': {
'python': PythonPackageAugmentation,
},
Expand Down