From a621424542419393226ac6460714621124e47774 Mon Sep 17 00:00:00 2001 From: sayalaruano Date: Wed, 20 Aug 2025 16:45:27 +0200 Subject: [PATCH 1/3] =?UTF-8?q?=E2=9C=85=20Enable=20pytest=20on=20github?= =?UTF-8?q?=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cdci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cdci.yml b/.github/workflows/cdci.yml index a557686..2d961e2 100644 --- a/.github/workflows/cdci.yml +++ b/.github/workflows/cdci.yml @@ -48,8 +48,8 @@ jobs: python -m pip install --upgrade pip pip install pytest pip install -e . - # - name: Run tests - # run: python -m pytest tests + - name: Run tests + run: python -m pytest tests publish: From 226f18dd3c68c90c12a4dbff85db7829871bd9fd Mon Sep 17 00:00:00 2001 From: sayalaruano Date: Wed, 20 Aug 2025 16:55:01 +0200 Subject: [PATCH 2/3] =?UTF-8?q?=E2=9E=95=20Add=20strenum=20dependency=20fo?= =?UTF-8?q?r=20python=20<=203.11=20on=20the=20pyproject.toml=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 1d82aa0..ea34ca0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ dependencies = [ "acore", "dash-cytoscape", "pydantic", + "strenum>=0.4.15,<0.5; python_version < '3.11'", "nbformat>=4.2.0", ] From 76982ea267f780084d0a3a37a709985aef8705f3 Mon Sep 17 00:00:00 2001 From: sayalaruano Date: Wed, 20 Aug 2025 17:00:39 +0200 Subject: [PATCH 3/3] =?UTF-8?q?=E2=9C=85=20Remove=203.9=20and=203.10=20pyt?= =?UTF-8?q?hon=20versions=20from=20the=20cicd=20ga=20tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cdci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/cdci.yml b/.github/workflows/cdci.yml index 2d961e2..f93878c 100644 --- a/.github/workflows/cdci.yml +++ b/.github/workflows/cdci.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -51,7 +51,6 @@ jobs: - name: Run tests run: python -m pytest tests - publish: name: Publish package if: startsWith(github.ref, 'refs/tags')