From d1946d8eca985eb2ae5cd6db60afc3196f6cd5ce Mon Sep 17 00:00:00 2001 From: J08nY Date: Fri, 21 Nov 2025 13:08:41 +0100 Subject: Fix EPA plot test. --- test/sca/test_epa.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/sca/test_epa.py b/test/sca/test_epa.py index 65caa92..0975e35 100644 --- a/test/sca/test_epa.py +++ b/test/sca/test_epa.py @@ -1,4 +1,5 @@ import random +import sys from functools import partial import networkx as nx @@ -343,6 +344,7 @@ def toy_params(): return DomainParameters(curve, g, 0xCB5E1D94601A3AC5, 1) +@pytest.mark.skipif(sys.version_info < (3, 11), reason="Requires Python 3.11 or higher (networkx >= 3.5)") def test_plot(toy_params, mult, plot_path): mult_class, mult_factory = mult precomp_ctx, full_ctx, out = multiple_graph( -- cgit v1.3.1