Skip to content

Commit

Permalink
no isolation 2
Browse files Browse the repository at this point in the history
  • Loading branch information
elParaguayo committed May 19, 2024
1 parent 9e04948 commit 4f5f286
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,9 @@ jobs:
PYTHON_VERSION: ${{ matrix.python-version }}
- name: Build wheels
run: |
python -m pip install cffi build auditwheel cairocffi xcffib pywlroots pywayland xkbcommon
python -m pip install cffi build auditwheel cairocffi xcffib pywayland setuptools-scm setuptools wheel
python -m pip install xkbcommon==0.8
python -m pip install --no-binary :all: pywlroots
python -m build -v --config-setting backend=wayland --no-isolation --wheel .
ls dist/
auditwheel show dist/qtile-*.whl
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def get_cffi_modules():
if can_import("wlroots.ffi_build"):
cffi_modules.append("libqtile/backend/wayland/cffi/build.py:ffi")
else:
importlib.import_module("wlroots.ffi_build")
print("Failed to find pywlroots. Wayland backend dependencies not built.")

return cffi_modules
Expand Down

0 comments on commit 4f5f286

Please sign in to comment.