(🐞) install --compile
installs with optimization level 1, which is confusing and undocumented
#7639
Labels
install --compile
installs with optimization level 1, which is confusing and undocumented
#7639
-vvv
option) and have included the output below.Issue
Additionally
I have no idea why these are labeled with
cpython-312
, my venv is python3.11`👉 poetry env info`
Could this be a bug(🐞)?
Okay, so basically
My use case
I need my deps to be compiled, but I don't want
opt-1
because I like to keep theassert
s. Additionally, I would need to setup my entire project to usepython -O x
, as otherwise it will just compile on the spot anyway.Workaround
Use
python -m compileall
.The text was updated successfully, but these errors were encountered: