From e2741a67038461e9e0e204349f7137a7f5e872a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimund=20Schl=C3=BC=C3=9Fler?= Date: Wed, 21 Sep 2022 12:24:28 +0200 Subject: [PATCH 1/2] Fix bmlab to last compatible version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 58798d3..a739844 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ description=description, long_description=open('README.rst').read() if exists('README.rst') else '', install_requires=["czifile==2019.7.2", # bc cgohlke and used for signature - "bmlab>=0.2.3", + "bmlab==0.5.1", "h5py>=2.10.0", "numpy>=1.17.0", "pyqt6>=6.2.0", From 5393230920bbaed8f7b979c58fec7c35338226dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Raimund=20Schl=C3=BC=C3=9Fler?= Date: Wed, 21 Sep 2022 12:32:03 +0200 Subject: [PATCH 2/2] Fix broken check pipeline --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 91f4021..37872ce 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -26,7 +26,7 @@ jobs: if: runner.os == 'Linux' run: | sudo apt-get update - sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 libegl1-mesa + sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 libegl1-mesa libxcb-shape0 # start xvfb in the background sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 & - name: Install dependencies