Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor-IX committed Nov 20, 2024
2 parents 6851c5b + 84aece2 commit 3a8062d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions source/threads/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,15 @@ def new_blender_build(self, tag, url, branch_type):
branch = "daily"
subversion = subversion.replace(prerelease=build_var)

if self.platform == "macOS":
# Skip Intel builds on Apple Silicon
if self.architecture == "arm64" and "arm64" not in link:
return None

# Skip Apple Silicon builds on Intel
if self.architecture == "x64" and "x64" not in link:
return None

commit_time = dateparser.parse(info["last-modified"]).astimezone()
r.release_conn()
r.close()
Expand Down

0 comments on commit 3a8062d

Please sign in to comment.