Skip to content

Commit

Permalink
Stop sorting recipes (fixes issue conda#4133)
Browse files Browse the repository at this point in the history
  • Loading branch information
mingwandroid committed Nov 26, 2020
1 parent af423c9 commit a22c833
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conda_build/api.py
Expand Up @@ -200,7 +200,7 @@ def build(recipe_paths_or_metadata, post=None, need_source_download=True,
raise ValueError('No valid recipes found for input: {}'.format(recipe_paths_or_metadata))

return build_tree(
sorted(recipes),
recipes,
config=get_or_merge_config(config, **kwargs),
# If people don't pass in an object to capture stats in, they won't get them returned.
# We'll still track them, though.
Expand Down
25 changes: 25 additions & 0 deletions news/stop-sorting-recipes.rst
@@ -0,0 +1,25 @@
Enhancements:
-------------

* <news item>

Bug fixes:
----------

* Do not sort recipes. Build them in-order instead.

Deprecations:
-------------

* <news item>

Docs:
-----

* <news item>

Other:
------

* <news item>

0 comments on commit a22c833

Please sign in to comment.