Skip to content

Commit ce02dec

Browse files
authored
Some fixes ( <-- most original/descriptive title... ) (#593)
Some fixes ( <-- most original/descriptive title... )
2 parents 3333a3a + 1d3d154 commit ce02dec

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bioconda_utils/bioconda_utils-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# basics
22
python>=3.6
33
conda=4.6.14
4-
conda-build=3.18.7
4+
conda-build=3.18.9
55
conda-verify=3.1.*
66
argh=0.26.* # CLI
77
colorlog=3.1.* # Logging

bioconda_utils/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def build_recipes(recipe_folder: str, config_path: str, recipes: List[str],
261261

262262
# setup linting
263263
if do_lint:
264-
always_exclude = ('build_number_needs_bump')
264+
always_exclude = ('build_number_needs_bump',)
265265
if not lint_exclude:
266266
lint_exclude = always_exclude
267267
else:

bioconda_utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ def check_recipe_skippable(recipe, check_channels):
10171017
# No packages with same version + build num in channels: no need to skip
10181018
return False
10191019
num_new_pkg_builds = Counter(
1020-
(meta.name(), meta.version(), int(meta.build_number()) or 0, _meta_subdir(meta))
1020+
(meta.name(), meta.version(), int(meta.build_number() or 0), _meta_subdir(meta))
10211021
for meta in metas
10221022
)
10231023
return num_new_pkg_builds == num_existing_pkg_builds

0 commit comments

Comments
 (0)