From e10ac104fb1ce5beede0e5d198d6ca26e5e37bb6 Mon Sep 17 00:00:00 2001 From: Lukas Burgholzer Date: Sun, 21 Jan 2024 18:21:42 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20ignore=20new=20pandas=20deprecat?= =?UTF-8?q?ion=20warning=20(#536)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description This PR ignores a new DeprecationWarning issued by pandas. This should let the CI pipeline pass again. ## Checklist: - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d01648e42..687cf1cf8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -134,6 +134,7 @@ filterwarnings = [ 'ignore:.*qiskit.__qiskit_version__.*:DeprecationWarning:qiskit:', 'ignore:.*qiskit.utils.algorithm_globals.QiskitAlgorithmGlobals*:DeprecationWarning:qiskit', 'ignore:.*Building a flow controller with keyword arguments is going to be deprecated*:PendingDeprecationWarning:qiskit', + 'ignore:\s.*Pyarrow.*:DeprecationWarning:', ] log_cli_level = "info" testpaths = ["test/python"]