We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a62f0c commit 7f61d63Copy full SHA for 7f61d63
1 file changed
.github/workflows/release-binaries.yml
@@ -81,8 +81,12 @@ jobs:
81
82
- name: Install Python deps
83
run: |
84
- python -m pip install -U pip wheel setuptools
85
- pip install Nuitka[onefile]
+ python -m pip install -U pip wheel
+ # setuptools>=72 removed pkg_resources.DefaultProvider, which
86
+ # Nuitka 4.x's bundled Jinja2 copy requires during C code generation.
87
+ # Pin below 72 until Nuitka ships its own Jinja2 fix.
88
+ pip install "setuptools<72"
89
+ pip install nuitka[onefile]
90
pip install .
91
92
- name: Create entrypoint
0 commit comments