mirror of
https://github.com/aljazceru/plugins.git
synced 2025-12-24 08:34:18 +01:00
autopilot: Relax numpy dependency
It is not compatible across all python versions, so we need installation time resolution :-(
This commit is contained in:
1122
autopilot/poetry.lock
generated
1122
autopilot/poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user