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

Commit

Permalink
Use non-conda-vendored boltons.setutils.IndexedSet
Browse files Browse the repository at this point in the history
conda._vendor.boltons has been marked for deprecation in conda=23.3 and
will be removed in conda=23.4.

refs:
- https://github.com/conda/conda/pull/12453/files

Signed-off-by: Marcel Bargull <[email protected]>
  • Loading branch information
mbargull committed Mar 14, 2024
1 parent d6eae80 commit 95fd1b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion boa/core/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
import os
import tempfile

from boltons.setutils import IndexedSet

from conda.base.constants import ChannelPriority
from conda.core.solve import diff_for_unlink_link_precs
from conda.common.serialize import json_dump
from conda.models.prefix_graph import PrefixGraph
from conda.core.prefix_data import PrefixData
from conda._vendor.boltons.setutils import IndexedSet
from conda.models.match_spec import MatchSpec
from conda.common.url import remove_auth, split_anaconda_token
from conda.core.index import _supplement_index_with_system
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"prompt-toolkit",
"joblib",
"beautifulsoup4",
"boltons",
]

setup(
Expand Down
1 change: 1 addition & 0 deletions tests/env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ channels:
dependencies:
- python>=3.7
- pip
- boltons
- conda
- libmambapy >=1.5,<1.6
- pytest
Expand Down

0 comments on commit 95fd1b8

Please sign in to comment.