From 9a8ad83fa87d4da41c29c63345b5d1f9c903fd27 Mon Sep 17 00:00:00 2001 From: Roberto Rossini <71787608+robomics@users.noreply.github.com> Date: Sun, 11 Feb 2024 20:57:32 +0100 Subject: [PATCH] Workaround import issue when running tests Pandas 2.2.0 raises an annoying warning upon import that cannot be ignored when running pytest. See https://github.com/pandas-dev/pandas/pull/57003 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 354570f..cf08eb8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,7 +22,7 @@ python_requires = >=3.6 install_requires = msvc-runtime; os_name=="nt" numpy - pandas + pandas!=2.2.0 scipy importlib-metadata; python_version<"3.8"