Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodegard committed Nov 3, 2023
1 parent f204147 commit c24d662
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions conda_build/inspect_pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ def test_installable(channel="defaults"):


@deprecated("3.28.0", "4.0.0")
def _installed(prefix):
return {rec["name"]: dist for dist, rec in linked_data(prefix).items()}
def _installed(prefix: str | os.PathLike | Path) -> dict[str, Dist]:
return {dist.name: dist for dist in linked_data(str(prefix))}


def _underlined_text(text):
Expand Down
1 change: 0 additions & 1 deletion tests/test_api_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1691,7 +1691,6 @@ def test_provides_features_metadata(testing_config):
# using different MACOSX_DEPLOYMENT_TARGET in parallel causes some SDK race condition
# https://github.com/conda/conda-build/issues/4708
@pytest.mark.serial
# @pytest.mark.flaky(reruns=5, reruns_delay=2)
def test_overlinking_detection(testing_config, variants_conda_build_sysroot):
testing_config.activate = True
testing_config.error_overlinking = True
Expand Down

0 comments on commit c24d662

Please sign in to comment.