From 482d6216ccb30f312ba0aed3109884f5b2042d62 Mon Sep 17 00:00:00 2001 From: Johan Herland Date: Wed, 28 Feb 2024 16:21:39 +0100 Subject: [PATCH] real_projects/python-algorithms: Pin qiskit at <1.0 qiskit v1.0 starts to declare the qiskit import name (see issue #176 for details about the weirdness that precedes v1.0). This changes the behavior of our real_projects test of the Algortihms project. qiskit has also dropped support for Python 3.7 (since v0.44), hence it is easier for us to keep our tests (which need to work with Python 3.7) running on the older version, for now. --- tests/real_projects/python-algorithms.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/real_projects/python-algorithms.toml b/tests/real_projects/python-algorithms.toml index 163fda3a..aebd4a26 100644 --- a/tests/real_projects/python-algorithms.toml +++ b/tests/real_projects/python-algorithms.toml @@ -116,7 +116,7 @@ requirements = [ "pandas", "pillow", "projectq", - "qiskit", + "qiskit<1", "requests", "rich", "scikit-fuzzy",