diff --git a/pyproject.toml b/pyproject.toml index b45f7aba..adc43e75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,7 +52,6 @@ antropy = [ { version = "^0.1.5", python = "<3.8" }, { version = ">=0.1.6", python = ">=3.8" } ] -# antropy = { git = "https://github.com/raphaelvallat/antropy.git", branch = "master" } # replace with pip when > 0.1.5 release available nolds = "^0.5.2" pyentrp = [ { version = "^0.7.1", python = "<3.8" }, diff --git a/tests/test_features_integration.py b/tests/test_features_integration.py index 3abe3210..bdb95d5d 100644 --- a/tests/test_features_integration.py +++ b/tests/test_features_integration.py @@ -2,6 +2,7 @@ __author__ = "Jeroen Van Der Donckt, Emiel Deprost, Jonas Van Der Donckt" + import sys import numpy as np @@ -20,10 +21,6 @@ from .utils import dummy_data -# import tsfresh -# import tsfel - - ## SEGLEARN @@ -333,14 +330,11 @@ def test_catch22_all_features(dummy_data): ## ANTROPY - -# With the current version that is used for Python 3.11, a small bug is present in the +# With the current version that is used for Python 3.7, a small bug is present in the # source code of Antropy, which makes this test fail. -# Whilst we wait for a fix, we currently skip this test -# PR: https://github.com/raphaelvallat/antropy/pull/30 -@pytest.mark.skipif( - sys.version_info >= (3, 11), reason="test disabled for Python 3.11 and higher." -) +# A fix for this bug is incuded in v0.1.6 of Antropy, but this version is not supported +# for Python 3.7. +@pytest.mark.skipif(sys.version_info < (3, 8), reason="test disabled for Python 3.7.") def test_antropy_all_features(dummy_data): # Tests if we integrate with ALL antropy features # -> this requires no additional wrapper!