Skip to content

Commit

Permalink
installer: fix optimization level (#7666)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4dfb894)
  • Loading branch information
radoering committed Mar 18, 2023
1 parent 7b021d4 commit b98c15c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry/installation/wheel_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self, env: Env) -> None:
)

def enable_bytecode_compilation(self, enable: bool = True) -> None:
self._destination.bytecode_optimization_levels = (1,) if enable else ()
self._destination.bytecode_optimization_levels = (-1,) if enable else ()

def install(self, wheel: Path) -> None:
with WheelFile.open(wheel) as source:
Expand Down
2 changes: 2 additions & 0 deletions tests/installation/test_wheel_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,7 @@ def test_enable_bytecode_compilation(
if compile:
assert cache_dir.exists()
assert list(cache_dir.glob("*.pyc"))
assert not list(cache_dir.glob("*.opt-1.pyc"))
assert not list(cache_dir.glob("*.opt-2.pyc"))
else:
assert not cache_dir.exists()

0 comments on commit b98c15c

Please sign in to comment.