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

Merge 25.1.x back into main #5591

Merged
merged 2 commits into from
Jan 15, 2025
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
8 changes: 5 additions & 3 deletions .authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@
alternate_emails:
- [email protected]
- name: Ken Odegard
num_commits: 229
num_commits: 232
email: [email protected]
first_commit: 2020-09-08 19:53:41
github: kenodegard
Expand All @@ -1225,7 +1225,7 @@
first_commit: 2020-11-19 10:46:41
- name: Jannis Leidel
email: [email protected]
num_commits: 34
num_commits: 35
github: jezdez
first_commit: 2020-11-19 10:46:41
- name: Christof Kaufmann
Expand Down Expand Up @@ -1489,5 +1489,7 @@
- name: Mahe Iram Khan
email: [email protected]
github: ForgottenProgramme
num_commits: 6
num_commits: 1
first_commit: 2025-01-13 18:15:05
alternate_emails:
- [email protected]
2 changes: 1 addition & 1 deletion .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Lennart Fricke <[email protected]>
Levi Naden <[email protected]>
Lori Burns <[email protected]>
Lukas Schrangl <[email protected]>
Mahe Iram Khan <[email protected]>
Mahe Iram Khan <[email protected]> Mahe Iram Khan <[email protected]>
Mandeep Bhutani <[email protected]> mandeep <[email protected]>
Mandeep Bhutani <[email protected]> mandeep <[email protected]>
Mandeep Bhutani <[email protected]> Mandeep Bhutani <[email protected]>
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
[//]: # (current developments)

## 25.1.1 (2025-01-14)

### Deprecations

* Remove `conda_build.exceptions.UnableToParseMissingJinja2`. (#5587)
* Remove `conda_build.index.get_build_index(locking)`. (#5587)
* Remove `conda_build.index.get_build_index(timeout)`. (#5587)

### Contributors

* @kenodegard



## 25.1.0 (2025-01-13)

### Enhancements
Expand Down
18 changes: 0 additions & 18 deletions conda_build/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

from conda import CondaError

from .deprecations import deprecated

SEPARATOR = "-" * 70

indent = lambda s: textwrap.fill(textwrap.dedent(s))
Expand Down Expand Up @@ -46,22 +44,6 @@ def indented_exception(self):
return f"Error Message:\n--> {indent(orig)}\n\n"


@deprecated("24.11", "25.1")
class UnableToParseMissingJinja2(UnableToParse):
def error_body(self):
return "\n".join(
[
super().error_body(),
indent(
"""\
It appears you are missing jinja2. Please install that
package, then attempt to build.
"""
),
]
)


class MissingDependency(CondaBuildException):
pass

Expand Down
3 changes: 0 additions & 3 deletions conda_build/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
from conda_index.index import update_index as _update_index

from . import utils
from .deprecations import deprecated
from .utils import (
get_logger,
)
Expand Down Expand Up @@ -45,8 +44,6 @@ def Index(channels: tuple[str | Channel, ...] = (), *args, **kwargs) -> dict: #
# os.environ['CONDA_ADD_ANACONDA_TOKEN'] = "false"


@deprecated.argument("24.11", "25.1", "locking")
@deprecated.argument("24.11", "25.1", "timeout")
def get_build_index(
subdir,
bldpkgs_dir,
Expand Down
21 changes: 0 additions & 21 deletions tests/test_exceptions.py

This file was deleted.

Loading