summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pyproject.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 74c6c59..f3487fc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,7 +8,7 @@ authors = [
readme = "README.md"
[tool.poetry.dependencies]
-python = ">=3.10"
+python = ">=3.10,<4.0"
sympy = ">=1.12"
numpy = ">=1.26.4"
dataclass-abc = ">=0.0.8"
@@ -20,6 +20,10 @@ python-docs-theme = "^2024.4"
[tool.poetry.group.notebook.dependencies]
marimo = "^0.2.5"
+
+[tool.poetry.group.dev.dependencies]
+mypy = "^1.9.0"
+
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"