Skip to content

Commit 8f45b3d

Browse files
committed
update ci
1 parent 936fa8e commit 8f45b3d

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/pack_linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@ jobs:
3737
# Runs a set of commands using the runners shell
3838
- name: test pack
3939
run: |
40+
python --version
4041
export QT_DEBUG_PLUGINS=1
4142
sudo apt-get update
42-
sudo apt-get install libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0
43+
sudo apt-get install libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xkb1 libxkbcommon-x11-0 libegl1
4344
pip3 install -r requirements.txt
44-
pip3 install pyinstaller wheel
45+
pip3 install -U pyinstaller wheel
4546
python setup.py sdist bdist_wheel
4647
python pack.py

pack.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import re
77

88

9-
if sys.version_info < (3, 8):
10-
print("only support python >= 3.8, but now is {}".format(sys.version_info))
9+
if sys.version_info < (3, 7):
10+
print("only support python >= 3.7, but now is {}".format(sys.version_info))
1111
sys.exit(1)
1212

1313

0 commit comments

Comments
 (0)