Skip to content

Commit

Permalink
fix: Fix version number check in repodata_patches_no_version_bump() (#…
Browse files Browse the repository at this point in the history
…946)

PR #855 was merged without review or, apparently, any testing 😄
  • Loading branch information
jmarshall authored Dec 13, 2023
1 parent 3a00a32 commit 73e69b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioconda_utils/lint/check_repodata_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def check_recipe(self, recipe):
return
repodata = utils.RepoData()
old_versions = repodata.get_versions("bioconda-repodata-patches")
if recipe.get('version') in old_versions:
if recipe.get('package/version') in old_versions:
self.message()


Expand Down

0 comments on commit 73e69b2

Please sign in to comment.