From 88162eded57f48c8c8e508a38e53b5175abedffe Mon Sep 17 00:00:00 2001 From: Cedric Kulbach Date: Wed, 25 Dec 2024 11:18:09 +0100 Subject: [PATCH] Update --- .github/workflows/unit-tests.yml | 10 +++++----- poetry.lock | 2 +- pyproject.toml | 1 - 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 49bccee..53d2796 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -36,14 +36,14 @@ jobs: - name: Check compatibility run: | - if [[ "${{ matrix.python }}" == "3.9" && "${{ matrix.river }}" == "0.22.0" ]]; then - echo "Skipping incompatible configuration: Python ${{ matrix.python }} and river ${{ matrix.river }}" + if [ "${{ matrix.python }}" == "3.9" ] && [ "${{ matrix.river }}" == "0.22.0" ]; then + echo "Skipping: Python ${{ matrix.python }} and river ${{ matrix.river }} are incompatible" exit 0 - fi - if [[ "${{ matrix.python }}" == "3.11" && "${{ matrix.river }}" == "0.21.1" ]]; then - echo "Skipping incompatible configuration: Python ${{ matrix.python }} and river ${{ matrix.river }}" + elif [ "${{ matrix.python }}" == "3.11" ] && [ "${{ matrix.river }}" == "0.21.1" ]; then + echo "Skipping: Python ${{ matrix.python }} and river ${{ matrix.river }} are incompatible" exit 0 fi + shell: bash - name: Load cached venv id: cached-poetry-dependencies diff --git a/poetry.lock b/poetry.lock index 0820cd7..135448d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -6070,4 +6070,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<3.13" -content-hash = "c2bd3f767e1ce6ea14b62e5889be53cfd09e0554c5f97fef81eb7c02c4a60ae2" +content-hash = "258b45377f7d413057bcf63d881b9790d8d1435a3e94ac7bb882ac652d93fe86" diff --git a/pyproject.toml b/pyproject.toml index e74d24f..4a23a46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,6 @@ torch = "~2.2.2" pandas = "~2.2.2" numpy = "~1.26.4" river = "*" -scipy = "~1.13.0" tqdm = "~4.66.5" ordered-set = "~4.1.0" torchviz = "~0.0.2"