Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrueffer authored Nov 9, 2023
2 parents d7f1103 + 0cb924a commit 130e691
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [2.9.0](https://www.github.com/bioconda/bioconda-utils/compare/v2.8.0...v2.9.0) (2023-11-05)


### Features

* use new container version by default (3.0) ([#935](https://www.github.com/bioconda/bioconda-utils/issues/935)) ([11d53db](https://www.github.com/bioconda/bioconda-utils/commit/11d53dbb18d5edf0a6a546c5a53c6d5e942dfc4a))

## [2.8.0](https://www.github.com/bioconda/bioconda-utils/compare/v2.7.0...v2.8.0) (2023-11-02)


### Features

* Enable Live logs and add option to disable ([#930](https://www.github.com/bioconda/bioconda-utils/issues/930)) ([47eaadc](https://www.github.com/bioconda/bioconda-utils/commit/47eaadcd4f0da856733e3fd3170d3451ec9c4b8d))


### Bug Fixes

* try locale C.utf8 ([#931](https://www.github.com/bioconda/bioconda-utils/issues/931)) ([584fcdd](https://www.github.com/bioconda/bioconda-utils/commit/584fcddd45854b88cdf4af72df0a1ad5cc3c9fcc))

## [2.7.0](https://www.github.com/bioconda/bioconda-utils/compare/v2.6.0...v2.7.0) (2023-10-14)


Expand Down
4 changes: 2 additions & 2 deletions bioconda_utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ def build(recipe: str, pkg_paths: List[str] = None,
is_noarch = bool(meta.get_value('build/noarch', default=False))
use_base_image = meta.get_value('extra/container', {}).get('extended-base', False)
if use_base_image:
base_image = 'quay.io/bioconda/base-glibc-debian-bash:2.1.0'
base_image = 'quay.io/bioconda/base-glibc-debian-bash:3.0'
else:
base_image = 'quay.io/bioconda/base-glibc-busybox-bash:2.1.0'
base_image = 'quay.io/bioconda/base-glibc-busybox-bash:3.0'

build_failure_record = BuildFailureRecord(recipe)
build_failure_record_existed_before_build = build_failure_record.exists()
Expand Down

0 comments on commit 130e691

Please sign in to comment.