Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions .github/workflows/test_oncall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,32 @@ jobs:
with:
python-version: '3.10'

# these libraries enable testing on Qt on linux
# - uses: tlambert03/setup-qt-libs@v1 # TODO CHECK IF NEEDED
# these libraries enable testing Qt on linux. The self-hosted Docker
# runner does not include sudo, so install directly when running as root.
- name: Install Qt runtime libraries
run: |
if command -v sudo >/dev/null 2>&1; then
APT_GET="sudo apt-get"
else
APT_GET="apt-get"
fi

$APT_GET update
DEBIAN_FRONTEND=noninteractive $APT_GET install -y --no-install-recommends \
libdbus-1-3 \
libegl1 \
libgl1 \
libopengl0 \
libxcb-cursor0 \
libxcb-icccm4 \
libxcb-image0 \
libxcb-keysyms1 \
libxcb-render-util0 \
libxcb-shape0 \
libxcb-xfixes0 \
libxcb-xinerama0 \
libxcb-xinput0 \
libxkbcommon-x11-0

# note: if you need dependencies from conda, considering using
# setup-miniconda: https://github.com/conda-incubator/setup-miniconda
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = napari-mAIcrobe
version = 0.0.5
version = 0.0.6
description = mAIcrobe
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
Loading
Loading