From 0ceed3e34956b06cfbda38825fdf3a73f72f0ff4 Mon Sep 17 00:00:00 2001 From: Mathew Shen Date: Thu, 8 Aug 2024 06:32:23 +0800 Subject: [PATCH] fix: temporary constrain attrs version to <= 23.2.0 to avoid mypy type checking error (#116) * fix: temporary ignore attrs new version type error * remove ignore * change: constrain attrs version with <= 23.2.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cd7e75c..47151ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ classifiers = [ ] requires-python = ">= 3.8" dependencies = [ - "attrs", + "attrs <= 23.2.0", "nltk", "numpy", "pandas >= 1.1.0",