Skip to content

Commit

Permalink
Merge pull request #41 from flyingcircusio/40-venv-macos-fix
Browse files Browse the repository at this point in the history
Fix creating venv on macos with homebrew
  • Loading branch information
zagy authored May 28, 2024
2 parents 270ca49 + bc002a6 commit 1cf9b50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/appenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def ensure_venv(target):
version = sys.version.split()[0]
python_maj_min = ".".join(str(x) for x in sys.version_info[:2])
print("Creating venv ...")
venv.create(target, with_pip=False)
venv.create(target, with_pip=False, symlinks=True)

try:
# This is trying to detect whether we're on a proper Python stdlib
Expand Down

0 comments on commit 1cf9b50

Please sign in to comment.