Skip to content

Commit

Permalink
upgrade core dependencies when creating venv
Browse files Browse the repository at this point in the history
  • Loading branch information
elikoga committed Aug 14, 2024
1 parent 2aee66b commit 349c15d
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 @@ -87,7 +87,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, symlinks=True)
venv.create(target, with_pip=False, symlinks=True, upgrade_deps=True)

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

0 comments on commit 349c15d

Please sign in to comment.