Skip to content

Commit 3c76276

Browse files
Update test_and_deploy.yml
1 parent 07cfb87 commit 3c76276

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
platform: [ubuntu-latest, windows-latest, macos-latest]
24+
platform: [ubuntu-latest, windows-latest]
2525
python-version: [3.8, 3.9]
2626

2727
steps:
@@ -31,6 +31,15 @@ jobs:
3131
uses: actions/setup-python@v5
3232
with:
3333
python-version: ${{ matrix.python-version }}
34+
35+
- name: Install Linux libraries
36+
if: runner.os == 'Linux'
37+
run: |
38+
sudo apt-get update
39+
sudo apt-get install -y libdbus-1-3 libxkbcommon-x11-0 libxcb-icccm4 \
40+
libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 \
41+
libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 pkg-config libhdf5-103 libhdf5-dev \
42+
libegl1
3443
3544
# tox-conda: https://github.com/tox-dev/tox-conda
3645
- name: Install dependencies

0 commit comments

Comments
 (0)