We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c06369f commit 1a1bb8cCopy full SHA for 1a1bb8c
.github/workflows/build.yml
@@ -26,11 +26,13 @@ jobs:
26
- name: Install APT dependencies
27
if: runner.os == 'Linux'
28
run: |
29
- sudo apt-get install -y qt5-default libfontconfig1
+ # libxcb-cursor0 needed since Qt 6.5
30
+ # https://stackoverflow.com/a/75941575/965332
31
+ sudo apt-get install -y qt5-default libfontconfig1 libxcb-cursor0
32
- name: Install dependencies
33
shell: bash
34
- pip install poetry==1.3.2
35
+ pip install poetry
36
python -m venv venv
37
source venv/bin/activate || source venv/Scripts/activate
38
poetry install
0 commit comments