Skip to content

Commit 2fe8480

Browse files
authored
Fix index error (#118)
1 parent d1bbd33 commit 2fe8480

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.8"]
17-
os: [ubuntu-latest]
16+
python-version: ["3.8", "3.9", "3.10", "3.11"]
17+
os: [ubuntu-latest, macOS-latest, windows-latest]
1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
KEYWORDS = ["hierarchical classification"]
2828
DACS_SOFTWARE = "https://gitlab.com/dacs-hpi"
2929
# What packages are required for this module to be executed?
30-
REQUIRED = ["networkx", "numpy", "scikit-learn"]
30+
REQUIRED = ["networkx", "numpy", "scikit-learn", "scipy<1.13"]
3131

3232
# What packages are optional?
3333
# 'fancy feature': ['django'],}

0 commit comments

Comments
 (0)