Skip to content

Commit ae9c16a

Browse files
authored
Merge pull request #7 from zStupan/fix-python311
Fix build error for python 3.11
2 parents 1c6a45c + 9a06ab4 commit ae9c16a

File tree

2 files changed

+68
-37
lines changed

2 files changed

+68
-37
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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ packages = [
1010
]
1111

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

1819
[build-system]
1920
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)