Skip to content

Commit

Permalink
Some fixes ( <-- most original/descriptive title... ) (#593)
Browse files Browse the repository at this point in the history
Some fixes ( <-- most original/descriptive title... )
  • Loading branch information
bgruening authored Jul 26, 2019
2 parents 3333a3a + 1d3d154 commit ce02dec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bioconda_utils/bioconda_utils-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# basics
python>=3.6
conda=4.6.14
conda-build=3.18.7
conda-build=3.18.9
conda-verify=3.1.*
argh=0.26.* # CLI
colorlog=3.1.* # Logging
Expand Down
2 changes: 1 addition & 1 deletion bioconda_utils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def build_recipes(recipe_folder: str, config_path: str, recipes: List[str],

# setup linting
if do_lint:
always_exclude = ('build_number_needs_bump')
always_exclude = ('build_number_needs_bump',)
if not lint_exclude:
lint_exclude = always_exclude
else:
Expand Down
2 changes: 1 addition & 1 deletion bioconda_utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ def check_recipe_skippable(recipe, check_channels):
# No packages with same version + build num in channels: no need to skip
return False
num_new_pkg_builds = Counter(
(meta.name(), meta.version(), int(meta.build_number()) or 0, _meta_subdir(meta))
(meta.name(), meta.version(), int(meta.build_number() or 0), _meta_subdir(meta))
for meta in metas
)
return num_new_pkg_builds == num_existing_pkg_builds
Expand Down

0 comments on commit ce02dec

Please sign in to comment.