Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Use update_index from conda-index directly #393

Merged
merged 1 commit into from
Feb 9, 2024
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
2 changes: 1 addition & 1 deletion boa/cli/mambabuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
from conda_build import api
from conda_build.config import Config, get_channel_urls
from conda_build.cli.main_build import parse_args
from conda_build.index import update_index
from conda_build.exceptions import DependencyNeedsBuildingError
from conda_index.index import update_index

from conda.base.context import context

Expand Down
2 changes: 1 addition & 1 deletion boa/core/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
from conda_build.utils import tmp_chdir

from conda_build import source, utils
from conda_build.index import update_index
from conda_build.post import (
post_process,
post_build,
fix_permissions,
get_build_metadata,
)
from conda_index.index import update_index

from conda_build.exceptions import indent

Expand Down
2 changes: 1 addition & 1 deletion boa/core/run_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
from conda.gateways.disk.create import mkdir_p
from conda_build import config as conda_build_config
from conda_build.utils import on_win
from conda_build.index import update_index
from conda_index.index import update_index

console = boa_config.console

Expand Down
2 changes: 1 addition & 1 deletion boa/core/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
pkgs_dirs,
)
from conda_build.create_test import create_all_test_files
from conda_build.index import update_index
from conda_build.post import post_build
from conda_build.render import bldpkg_path, try_download
from conda_build.utils import shutil_move_more_retrying
from conda_build.variants import set_language_env_vars
from conda_index.index import update_index

from conda_build import utils
from conda_build.environ import clean_pkg_cache
Expand Down
1 change: 1 addition & 0 deletions tests/env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies:
- libmambapy >=1.5,<1.6
- pytest
- "conda-build>=3.20"
- conda-index
- ruamel
- ruamel.yaml
- rich
Expand Down
Loading