autopilot: Relax numpy dependency

It is not compatible across all python versions, so we need installation time resolution :-(
This commit is contained in:
Christian Decker
2022-12-30 12:47:57 +01:00
parent 12a400e386
commit a1e3eb44d2
2 changed files with 9 additions and 1125 deletions

1122
autopilot/poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -5,11 +5,17 @@ description = "Automatically manage lightning channels (OUTDATED)"
authors = ["Rene Pickhardt <@renepickhardt>"]
[tool.poetry.dependencies]
python = "^3.8"
networkx = ">=2.4"
python = "^3.7"
pyln-client = "0.12.1"
dnspython = "^2.2.0"
numpy = "^1.22.2"
numpy = [
{ version = "^1.24", python = ">=3.8,<3.12" },
{ version = "^1.19", python = "<3.8" }
]
networkx = [
{ version = "^2.8", python = ">=3.8" },
{ version = "^2.6", python = ">=3.7,<3.8" }
]
[tool.poetry.dev-dependencies]
pyln-testing = "0.12.1"