From 88a8b1675f8892ae3755c0dfa5274974e12d046e Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Mon, 20 Mar 2023 10:01:18 -0600 Subject: [PATCH] Pin pandas < 2 Pandas is expecting to release v2 in two weeks (https://github.com/pandas-dev/pandas/issues/46776#issuecomment-1473785540). But we are still incompatible with their main branch: - #7441 - https://github.com/pydata/xarray/issues/7420 This PR pins pandas to `<2` --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 759dea985bc..43512144386 100644 --- a/setup.cfg +++ b/setup.cfg @@ -76,7 +76,7 @@ include_package_data = True python_requires = >=3.9 install_requires = numpy >= 1.21 # recommended to use >= 1.22 for full quantile method support - pandas >= 1.4 + pandas >= 1.4, <2 packaging >= 21.3 [options.extras_require]