mirror of
https://github.com/lightningd/plugins.git
synced 2026-08-16 13:00:58 +02:00
Updates the requirements on [pytest](https://github.com/pytest-dev/pytest), pyln-testing, [pyln-client](https://github.com/ElementsProject/lightning), pyln-proto, [click](https://github.com/pallets/click), [requests[socks]](https://github.com/psf/requests) and [txzmq](https://github.com/smira/txZMQ) to permit the latest version. Updates `pytest` from 8.4.2 to 9.0.3 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.4.2...9.0.3) Updates `pyln-testing` from 26.4 to 26.4.1 Updates `pyln-client` from 26.4 to 26.4.1 - [Release notes](https://github.com/ElementsProject/lightning/releases) - [Changelog](https://github.com/ElementsProject/lightning/blob/master/CHANGELOG.md) - [Commits](https://github.com/ElementsProject/lightning/compare/v26.04...v26.04.1) Updates `pyln-proto` from 26.4 to 26.4.1 Updates `click` from 8.3.2 to 8.3.3 - [Release notes](https://github.com/pallets/click/releases) - [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/click/compare/8.3.2...8.3.3) Updates `requests[socks]` to 2.33.1 - [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.32.4...v2.33.1) Updates `pytest` from 8.4.2 to 9.0.3 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.4.2...9.0.3) Updates `txzmq` from 0.8.2 to 1.0.0 - [Release notes](https://github.com/smira/txZMQ/releases) - [Commits](https://github.com/smira/txZMQ/compare/0.8.2...1.0.0) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: pyln-testing dependency-version: 26.4.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: pyln-client dependency-version: 26.4.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: pyln-proto dependency-version: 26.4.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: click dependency-version: 8.3.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: requests[socks] dependency-version: 2.33.1 dependency-type: direct:production dependency-group: all-dependencies - dependency-name: pytest dependency-version: 9.0.3 dependency-type: direct:development update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: txzmq dependency-version: 1.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
23 lines
587 B
TOML
23 lines
587 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.3.3",
|
|
"psutil>=5.9.4",
|
|
"requests[socks]>=2.33.1",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyln-testing>=25.9.3",
|
|
"pytest-timeout>=2.2.0",
|
|
"pytest-xdist>=3.1.0",
|
|
"pytest-asyncio>=0.23.8,<2",
|
|
"flaky>=3.7.0",
|
|
"asysocks<0.3",
|
|
]
|