mirror of
https://github.com/lightningd/plugins.git
synced 2026-08-13 12:33:19 +02:00
Some checks failed
Integration Tests (latest) / Test CLN=25.12.1, PY=3.10, BCD=31.0, EXP=1, DEP=0 (push) Has been cancelled
Integration Tests (latest) / Test CLN=25.12.1, PY=3.12, BCD=31.0, EXP=1, DEP=0 (push) Has been cancelled
Integration Tests (latest) / Test CLN=26.04.1, PY=3.10, BCD=31.0, EXP=1, DEP=0 (push) Has been cancelled
Integration Tests (latest) / Test CLN=26.04.1, PY=3.12, BCD=31.0, EXP=1, DEP=0 (push) Has been cancelled
Integration Tests (latest) / Test CLN=26.06.6, PY=3.10, BCD=31.0, EXP=1, DEP=0 (push) Has been cancelled
Integration Tests (latest) / Test CLN=26.06.6, PY=3.14, BCD=31.0, EXP=1, DEP=0 (push) Has been cancelled
Integration Tests (latest) / CI completion (push) Has been cancelled
Integration Tests (latest) / CI completion-1 (push) Has been cancelled
Integration Tests (latest) / CI completion-2 (push) Has been cancelled
Updates the requirements on [click](https://github.com/pallets/click), [requests[socks]](https://github.com/psf/requests) and [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) to permit the latest version. Updates `click` from 8.3.3 to 8.4.2 - [Release notes](https://github.com/pallets/click/releases) - [Changelog](https://github.com/pallets/click/blob/main/CHANGES.md) - [Commits](https://github.com/pallets/click/compare/8.3.3...8.4.2) Updates `requests[socks]` to 2.34.2 - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.33.1...v2.34.2) Updates `pytest-asyncio` from 1.3.0 to 1.4.0 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v1.3.0...v1.4.0) --- updated-dependencies: - dependency-name: click dependency-version: 8.4.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: requests[socks] dependency-version: 2.34.2 dependency-type: direct:production dependency-group: all-dependencies - dependency-name: pytest-asyncio dependency-version: 1.4.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
586 B
TOML
23 lines
586 B
TOML
[project]
|
|
name = "cln-backup"
|
|
version = "0.1.0"
|
|
description = "Keep your Core-Lightning node save by backing it up, in real-time (allows recovering without channel closures)."
|
|
authors = [{ name = "Christian Decker", email = "<decker@blockstream.io>" }]
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"pyln-client>=25.9.3",
|
|
"click>=8.4.2",
|
|
"psutil>=5.9.4",
|
|
"requests[socks]>=2.34.2",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyln-testing>=25.9.3",
|
|
"pytest-timeout>=2.2.0",
|
|
"pytest-xdist>=3.1.0",
|
|
"pytest-asyncio>=1.4.0,<2",
|
|
"flaky>=3.7.0",
|
|
"asysocks<0.3",
|
|
]
|