From 8d10539090f3a274ba3c4f4a7cd4badfea41dc21 Mon Sep 17 00:00:00 2001 From: Irv Lustig Date: Mon, 14 Aug 2023 07:54:09 -0400 Subject: [PATCH 1/2] update mypy and pyright versions --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 717e9a13d..2efbe4b86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,11 +39,11 @@ numpy = [ ] [tool.poetry.dev-dependencies] -mypy = "1.4.1" +mypy = "1.5.0" pandas = "2.0.3" pyarrow = ">=10.0.1" pytest = ">=7.1.2" -pyright = ">= 1.1.316" +pyright = ">= 1.1.322" poethepoet = ">=0.16.5" loguru = ">=0.6.0" typing-extensions = ">=4.4.0" From 2d64982f522977adf5c4b76e2bf8d9e46f447d41 Mon Sep 17 00:00:00 2001 From: Irv Lustig Date: Mon, 14 Aug 2023 08:29:35 -0400 Subject: [PATCH 2/2] restrict numexpr --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2efbe4b86..f4068337b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,6 +65,7 @@ jinja2 = ">=3.1" scipy = ">=1.9.1" SQLAlchemy = ">=2.0.12" types-python-dateutil = ">=2.8.19" +numexpr = "<2.8.5" # https://github.com/pandas-dev/pandas/issues/54449 [build-system] requires = ["poetry-core>=1.0.0"]