Skip to content

Uplift scipy version restriction and restrict tsfresh>=0.21.0 #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ python_requires = >=3.9
# For more information, check out https://semver.org/.
install_requires =
numpy>=1.23.5
scipy<1.15.0
scipy
pandas>=2.2
h5py!=3.7.0

Expand Down Expand Up @@ -98,7 +98,7 @@ analysis =
pep8-naming

tsfresh =
tsfresh
tsfresh>=0.21.0
numba>=0.60

all = %(tsfresh)s
Expand Down
2 changes: 1 addition & 1 deletion tests/strength/test_parameter_calculations.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_compute_beta_success(P_A, expected_beta):
assert np.isclose(beta, expected_beta)


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

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