Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
kulbachcedric committed Dec 25, 2024
1 parent ed61ee5 commit 88162ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 88162ed

Please sign in to comment.