Fix donations plugin

Update required Python version
Update pyln packages
Update README
This commit is contained in:
fmhoeger
2024-02-09 18:06:39 -06:00
committed by mergify[bot]
parent cb3145da29
commit dce6e1c7d1
9 changed files with 1350 additions and 1094 deletions

View File

@@ -15,6 +15,7 @@ Community curated plugins for Core-Lightning.
| [cln-ntfy][cln-ntfy] | Core Lightning plugin for sending `ntfy` alerts. |
| [csvexportpays][csvexportpays] | A plugin that exports all payments to a CSV file |
| [currencyrate][currencyrate] | A plugin to convert other currencies to BTC using web requests |
| [donations][donations] | A simple donations page to accept donations from the web |
| [event-websocket][event-websocket] | Exposes notifications over a Websocket |
| [feeadjuster][feeadjuster] | Dynamic fees to keep your channels more balanced |
| [go-lnmetrics.reporter][reporter] | Collect and report of the lightning node metrics |
@@ -50,7 +51,6 @@ If you like a plugin from that list, feel free to update and fix it, so we can u
| [autopilot][autopilot] | An autopilot that suggests channels that should be established |
| [backup][backup] | A simple and reliable backup plugin |
| [commando][commando] | This plugin allows to send commands between nodes |
| [donations][donations] | A simple donations page to accept donations from the web |
| [drain][drain] | Draining, filling and balancing channels with automatic chunks. |
| [helpme][helpme] | This plugin is designed to walk you through setting up a fresh Core-Lightning node |
| [historian][historian] | Archiving the Lightning Network |

File diff suppressed because it is too large Load Diff

1345
donations/poetry.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -7,16 +7,17 @@ license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
qrcode = "6.1"
flask = "2.0.3"
pyln-client = "0.12.1"
pyln-client = "^23.11"
flask-bootstrap = "^3.3.7.1"
flask-wtf = "0.15.1"
werkzeug = "<3"
wtforms = "2.3.3"
[tool.poetry.dev-dependencies]
pyln-testing = "0.12.1"
pyln-testing = "^23.11"
[build-system]
requires = ["poetry-core"]