Skip to content

Commit

Permalink
Merge branch 'main' into lazyimread
Browse files Browse the repository at this point in the history
  • Loading branch information
lyehe authored Sep 30, 2024
2 parents 74e3f56 + eec311b commit 5695cdf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/scripts/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ def _lint_recipes(gh, pr):

url = None
if recipe_version == 1:
for source_url in sources_section:
if source_url.startswith("https://pypi.io/packages/source/"):
url = source_url
for source_section in sources_section:
if str(source_section.get("url")).startswith("https://pypi.io/packages/source/"):
url = source_section["url"]
else:
for source_section in sources_section:
if str(source_section.get("url")).startswith(
Expand Down

0 comments on commit 5695cdf

Please sign in to comment.