Skip to content

Commit

Permalink
trying to narrow down dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ullmannJan committed Jul 11, 2024
1 parent f0bf0b5 commit 820c9d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiling/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"--collect-all",
"measury",
"--collect-all",
"scipy",
"scipy.ndimage",
"--noconfirm",
]
)
Expand All @@ -58,7 +58,7 @@
# Append architecture to suffix
if "arm" in arch.lower():
suffix += "_arm"
elif "x86_64" in arch.lower() or "AMD64" in arch.lower():
elif "x86_64" in arch.lower() or "amd64" in arch.lower():
suffix += "_x64"

shutil.make_archive(
Expand Down

0 comments on commit 820c9d8

Please sign in to comment.