Skip to content

Commit 60e8025

Browse files
committed
Fix build error for python 3.11
1 parent 1c6a45c commit 60e8025

File tree

2 files changed

+68
-35
lines changed

2 files changed

+68
-35
lines changed

poetry.lock

Lines changed: 63 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ packages = [
1010
]
1111

1212
[tool.poetry.dependencies]
13-
python = ">=3.7,<3.12"
14-
numpy = "^1.21.2"
13+
python = "^3.7"
14+
numpy = [
15+
{ version = "1.21.5", python = ">=3.7,<3.11" },
16+
{ version = "^1.22.0", python = "^3.8" }
17+
]
1518

1619
[tool.poetry.dev-dependencies]
1720

0 commit comments

Comments
 (0)