From 9af7ab123d8017e449242bd8b3ab6e83fac74942 Mon Sep 17 00:00:00 2001 From: SatoshiTerasaki Date: Wed, 17 Dec 2025 13:57:33 +0900 Subject: [PATCH 1/2] Do not skip FTVector slicing test --- tests/test_poly.py | 1 - 1 file changed, 1 deletion(-) 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) From 1409cd018f8e7b0121b6d26b94c8c3ec7d405cb2 Mon Sep 17 00:00:00 2001 From: Satoshi Terasaki Date: Wed, 17 Dec 2025 14:36:59 +0900 Subject: [PATCH 2/2] Bump to v2.0.0a9 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"