Skip to content

Commit 02b548e

Browse files
committed
backup: update pyproject for uv and python 3.9.2
1 parent 55d7348 commit 02b548e

File tree

3 files changed

+1581
-9
lines changed

3 files changed

+1581
-9
lines changed

backup/poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backup/pyproject.toml

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,41 @@
1-
[tool.poetry]
1+
[project]
22
name = "cln-backup"
33
version = "0.1.0"
44
description = "Keep your Core-Lightning node save by backing it up, in real-time (allows recovering without channel closures)."
5-
authors = ["Christian Decker <[email protected]>"]
5+
authors = [{ name = "Christian Decker", email = "<[email protected]>" }]
6+
requires-python = ">=3.9.2"
7+
dependencies = [
8+
"pyln-client>=25.2.2",
9+
"click>=8.0.4",
10+
"psutil>=5.9.4",
11+
"flask>=2.2",
12+
"werkzeug<4",
13+
]
14+
15+
[dependency-groups]
16+
dev = [
17+
"pyln-testing>=25.2.2",
18+
"pytest-timeout>=2.2.0",
19+
"pytest-xdist>=3.1.0",
20+
"flaky>=3.7.0",
21+
]
22+
23+
[tool.uv]
24+
package = false
25+
26+
[tool.poetry]
27+
package-mode = false
628

729
[tool.poetry.dependencies]
8-
python = "^3.9"
9-
pyln-client = "^25.5"
30+
python = "^3.9.2"
31+
pyln-client = "^25.2.2"
1032
click = "^8.0.4"
1133
psutil = "^5.9.4"
1234
flask = "^2.2"
1335
werkzeug = "<4"
1436

1537
[tool.poetry.group.dev.dependencies]
16-
pyln-testing = "^25.5"
38+
pyln-testing = "^25.2.2"
1739
flaky = "^3.7.0"
1840
pytest-timeout = "^2.2.0"
1941
pytest-xdist = "^3.1.0"

0 commit comments

Comments
 (0)