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

Remove deprecated code for conda-build 24.5 #5299

Merged
merged 14 commits into from
Apr 19, 2024
23 changes: 0 additions & 23 deletions conda_build/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
# make the Config class available in the api namespace
from .config import DEFAULT_PREFIX_LENGTH as _prefix_length
from .config import Config, get_channel_urls, get_or_merge_config
from .deprecations import deprecated
from .utils import (
CONDA_PACKAGE_EXTENSIONS,
LoggingContext,
Expand Down Expand Up @@ -170,28 +169,6 @@ def get_output_file_paths(
return sorted(list(set(outs)))


@deprecated("24.3.0", "24.5.0", addendum="Use `get_output_file_paths` instead.")
def get_output_file_path(
recipe_path_or_metadata,
no_download_source=False,
config=None,
variants=None,
**kwargs,
):
"""Get output file paths for any packages that would be created by a recipe

Both split packages (recipes with more than one output) and build matrices,
created with variants, contribute to the list of file paths here.
"""
return get_output_file_paths(
recipe_path_or_metadata,
no_download_source=no_download_source,
config=config,
variants=variants,
**kwargs,
)


def check(recipe_path, no_download_source=False, config=None, variants=None, **kwargs):
"""Check validity of input recipe path

Expand Down
298 changes: 0 additions & 298 deletions conda_build/bdist_conda.py

This file was deleted.

Loading
Loading