mirror of
https://github.com/lightningd/plugins.git
synced 2026-08-18 13:09:00 +02:00
Updates the requirements on [pytest](https://github.com/pytest-dev/pytest), [cachetools](https://github.com/tkem/cachetools), [requests[socks]](https://github.com/psf/requests), [qrcode[pil]](https://github.com/lincolnloop/python-qrcode), [flask-wtf](https://github.com/pallets-eco/flask-wtf) and [wtforms](https://github.com/pallets-eco/wtforms) 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 `cachetools` from 7.0.5 to 7.1.1 - [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst) - [Commits](https://github.com/tkem/cachetools/compare/v7.0.5...v7.1.1) 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.2...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 `qrcode[pil]` to 8.2 - [Changelog](https://github.com/lincolnloop/python-qrcode/blob/main/CHANGES.rst) - [Commits](https://github.com/lincolnloop/python-qrcode/compare/v7.4.2...v8.2) Updates `flask-wtf` from 1.2.2 to 1.3.0 - [Release notes](https://github.com/pallets-eco/flask-wtf/releases) - [Changelog](https://github.com/pallets-eco/flask-wtf/blob/main/docs/changes.rst) - [Commits](https://github.com/pallets-eco/flask-wtf/compare/v1.2.2...v1.3.0) Updates `wtforms` from 3.2.1 to 3.2.2 - [Release notes](https://github.com/pallets-eco/wtforms/releases) - [Changelog](https://github.com/pallets-eco/wtforms/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets-eco/wtforms/compare/3.2.1...3.2.2) --- 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: cachetools dependency-version: 7.1.1 dependency-type: direct:production update-type: version-update:semver-minor 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: qrcode[pil] dependency-version: '8.2' dependency-type: direct:production dependency-group: all-dependencies - dependency-name: flask-wtf dependency-version: 1.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: wtforms dependency-version: 3.2.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
384 B
TOML
18 lines
384 B
TOML
[project]
|
|
name = "clearnet"
|
|
version = "0.1.0"
|
|
description = "Prefer usage over clearnet connections"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = ["pyln-client>=25.9.3"]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.3,<10",
|
|
"pytest-xdist>=3.7,<4",
|
|
"pytest-timeout>=2.4,<3",
|
|
"pyln-testing>=25.9.3",
|
|
"pyln-client>=25.9.3",
|
|
"pyln-proto>=25.9.3",
|
|
]
|