Skip to content

Commit

Permalink
#4050 add_build_info can take much longer now on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Nov 9, 2024
1 parent 62207c1 commit abbd056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1519,7 +1519,7 @@ def clean() -> None:

def add_build_info(*args) -> None:
cmd = [sys.executable, "./fs/bin/add_build_info.py"]+list(args)
r = subprocess.Popen(cmd).wait(TIMEOUT)
r = subprocess.Popen(cmd).wait(TIMEOUT * (1 + 10 * OSX))
assert r==0, "'%s' returned %s" % (" ".join(cmd), r)


Expand Down

0 comments on commit abbd056

Please sign in to comment.