Skip to content

Commit 7d45355

Browse files
Merge pull request #158 from boschresearch/uplift-scipy-restriction
Uplift scipy version restriction and restrict tsfresh>=0.21.0
2 parents bbf1e68 + 0bd4177 commit 7d45355

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ python_requires = >=3.9
4848
# For more information, check out https://semver.org/.
4949
install_requires =
5050
numpy>=1.23.5
51-
scipy<1.15.0
51+
scipy
5252
pandas>=2.2
5353
h5py!=3.7.0
5454

@@ -98,7 +98,7 @@ analysis =
9898
pep8-naming
9999

100100
tsfresh =
101-
tsfresh
101+
tsfresh>=0.21.0
102102
numba>=0.60
103103

104104
all = %(tsfresh)s

Diff for: tests/strength/test_parameter_calculations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_compute_beta_success(P_A, expected_beta):
3939
assert np.isclose(beta, expected_beta)
4040

4141

42-
@pytest.mark.parametrize("P_A", [-1,0,1,2])
42+
@pytest.mark.parametrize("P_A", [-1.0, 0.0, 1.01, 2.0])
4343
def test_compute_beta_fails(P_A):
4444

4545
expected_error_message = f"Could not compute the value of beta for P_A={P_A}, " \

0 commit comments

Comments
 (0)