From f0fd0239f96fa06b9cedfaf565530718dabd63ae Mon Sep 17 00:00:00 2001 From: Jessy Lauer <30733203+jeylau@users.noreply.github.com> Date: Thu, 15 Dec 2022 08:52:14 +0100 Subject: [PATCH 1/3] Update branch name --- .github/workflows/python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 34cedff7ee..99ee799ddf 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -2,9 +2,9 @@ name: Python package on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: build: From fb72ce78f655191a28f57af89c9658d82bb2f84c Mon Sep 17 00:00:00 2001 From: Jessy Lauer <30733203+jeylau@users.noreply.github.com> Date: Thu, 15 Dec 2022 08:57:13 +0100 Subject: [PATCH 2/3] Remove GUI-related deps from requirements.txt --- requirements.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index d8c7121649..52060404a2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,12 +6,10 @@ imageio-ffmpeg imgaug==0.4.0 numba>=0.54.0 matplotlib<=3.5.2 -napari-deeplabcut>=0.0.6 networkx>=2.6 numpy>=1.18.5 pandas>=1.0.1,!=1.5.0 pyyaml -qdarkstyle==3.1 scikit-image>=0.17 scikit-learn>=1.0 scipy>=1.4 @@ -23,4 +21,3 @@ tf_slim==1.1.0 torch tqdm Pillow>=7.1 -PySide6<6.3.2 From d796bb4d064bf2b7ed2738bbbe9a71b28faaa0e1 Mon Sep 17 00:00:00 2001 From: Jessy Lauer <30733203+jeylau@users.noreply.github.com> Date: Thu, 15 Dec 2022 09:02:31 +0100 Subject: [PATCH 3/3] Update actions' versions --- .github/workflows/python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 99ee799ddf..8576ae4d67 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -30,10 +30,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}