mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-02 18:35:00 +01:00
People running master notice that calling listconfigs fails, because
we don't handle objects called xxx_msat correctly (see
d348554ff4
). This makes it painful
to test, until we release a pyln-client version.
Fortunately, the three changes in master are all fully backwards compatible,
so we can simply cut a release now and upload to pipy.org.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
25 lines
611 B
TOML
25 lines
611 B
TOML
[tool.poetry]
|
|
name = "pyln-client"
|
|
version = "23.05.2"
|
|
description = "Client library and plugin library for Core Lightning"
|
|
authors = ["Christian Decker <decker.christian@gmail.com>"]
|
|
license = "BSD-MIT"
|
|
readme = "README.md"
|
|
|
|
packages = [
|
|
{ include = "pyln/client" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
pyln-proto = ">=23"
|
|
pyln-bolt7 = ">=1.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^7"
|
|
pyln-bolt7 = { path = "../pyln-spec/bolt7", develop = true }
|
|
pyln-proto = { path = "../pyln-proto", develop = true}
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|