diff --git a/pyproject.toml b/pyproject.toml index b6325d5..1f27083 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sparse-ir" -version = "2.0.0a8" +version = "2.0.0a9" description = "Python bindings for the libsparseir library, providing efficient sparse intermediate representation for many-body physics calculations" readme = "README.md" requires-python = ">=3.10" diff --git a/tests/test_poly.py b/tests/test_poly.py index f486af4..f97952c 100644 --- a/tests/test_poly.py +++ b/tests/test_poly.py @@ -131,7 +131,6 @@ def test_broadcast_uv(sve_logistic, fn): assert_eq(f[l](np.reshape(x, (2, 2))), f[l](x).reshape(3, 2, 2)) -@pytest.mark.skip(reason="FTVector slicing not yet supported in C API") def test_broadcast_uhat(sve_logistic): sve_result = sve_logistic[42] basis = sparse_ir.FiniteTempBasis('B', 4.2, 10, sve_result=sve_result)