Skip to content

Commit

Permalink
Changed max limit of nested imports when analyzing hidden imports. Th…
Browse files Browse the repository at this point in the history
…is avoids max recursion limit that was being raised even without circular imports
  • Loading branch information
keithbaum committed May 9, 2021
1 parent bd275b6 commit ae58d0b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pyinstaller/bot.spec
Expand Up @@ -14,6 +14,8 @@ from typing import (
Iterable,
Tuple
)
import sys
sys.setrecursionlimit(5000)

global SPEC

Expand Down

0 comments on commit ae58d0b

Please sign in to comment.