chore: use minor versions for lockfile (#3883)

This commit is contained in:
dni ⚡
2026-03-23 10:17:08 +01:00
committed by GitHub
parent efc0547271
commit 8c184356ef
3 changed files with 3201 additions and 2723 deletions
Generated
+2192 -1786
View File
File diff suppressed because it is too large Load Diff
+63 -63
View File
@@ -7,50 +7,50 @@ authors = [{ name = "Alan Bits", email = "alan@lnbits.com" }]
urls = { Homepage = "https://lnbits.com", Repository = "https://github.com/lnbits/lnbits" } urls = { Homepage = "https://lnbits.com", Repository = "https://github.com/lnbits/lnbits" }
readme = "README.md" readme = "README.md"
dependencies = [ dependencies = [
"bech32==1.2.0", "bech32~=1.2.0",
"click==8.3.1", "click~=8.3.1",
"fastapi==0.116.1", "fastapi~=0.116.1",
"starlette==0.47.1", "starlette~=0.47.1",
"httpx==0.27.2", "httpx~=0.27.2",
"jinja2==3.1.6", "jinja2~=3.1.6",
"lnurl==0.8.3", "lnurl~=0.8.3",
"pydantic==1.10.26", "pydantic~=1.10.26",
"pyqrcode==1.2.1", "pyqrcode~=1.2.1",
"shortuuid==1.0.13", "shortuuid~=1.0.13",
"sse-starlette==2.3.6", "sse-starlette~=2.3.6",
"typing-extensions==4.15.0", "typing-extensions~=4.15.0",
"uvicorn==0.40.0", "uvicorn~=0.40.0",
"sqlalchemy==1.4.54", "sqlalchemy~=1.4.54",
"aiosqlite==0.22.1", "aiosqlite~=0.22.1",
"asyncpg==0.31.0", "asyncpg~=0.31.0",
"uvloop==0.22.1", "uvloop~=0.22.1",
"websockets==15.0.1", "websockets~=15.0.1",
"loguru==0.7.3", "loguru~=0.7.3",
"grpcio==1.76.0", "grpcio~=1.76.0",
"protobuf==6.33.2", "protobuf~=6.33.2",
"pyln-client==25.12", "pyln-client~=25.12.0",
"pywebpush==2.2.0", "pywebpush~=2.2.0",
"slowapi==0.1.9", "slowapi~=0.1.9",
"websocket-client==1.9.0", "websocket-client~=1.9.0",
"pycryptodomex==3.23.0", "pycryptodomex~=3.23.0",
"packaging==25.0", "packaging~=25.0.0",
"bolt11==2.1.1", "bolt11~=2.1.1",
"pyjwt==2.10.1", "pyjwt~=2.10.1",
"itsdangerous==2.2.0", "itsdangerous~=2.2.0",
"fastapi-sso==0.19.0", "fastapi-sso~=0.19.0",
# needed for boltz, lnurldevice, watchonly extensions # needed for boltz, lnurldevice, watchonly extensions
"embit==0.8.0", "embit~=0.8.0",
# needed for scheduler extension # needed for scheduler extension
"python-crontab==3.3.0", "python-crontab~=3.3.0",
"pynostr==0.7.0", "pynostr~=0.7.0",
"python-multipart==0.0.21", "python-multipart~=0.0.21",
"filetype==1.2.0", "filetype~=1.2.0",
"nostr-sdk==0.44.0", "nostr-sdk~=0.44.0",
"bcrypt==5.0.0", "bcrypt~=5.0.0",
"jsonpath-ng==1.7.0", "jsonpath-ng~=1.7.0",
"pillow>=12.1.0", "pillow~=12.1.0",
"python-dotenv>=1.2.1", "python-dotenv~=1.2.1",
"greenlet (>=3.3.0,<4.0.0)", "greenlet~=3.3.0",
] ]
[project.scripts] [project.scripts]
@@ -58,31 +58,31 @@ lnbits = "lnbits.server:main"
lnbits-cli = "lnbits.commands:main" lnbits-cli = "lnbits.commands:main"
[project.optional-dependencies] [project.optional-dependencies]
breez = ["breez-sdk==0.8.0", "breez-sdk-liquid==0.11.11"] breez = ["breez-sdk~=0.8.0", "breez-sdk-liquid~=0.11.11"]
liquid = ["wallycore==1.5.1"] liquid = ["wallycore~=1.5.1"]
migration = ["psycopg2-binary==2.9.11"] migration = ["psycopg2-binary~=2.9.11"]
[dependency-groups] [dependency-groups]
dev = [ dev = [
"black~=26.3.1", "black~=26.3.1",
"mypy==1.17.1", "mypy~=1.17.1",
"types-protobuf>=6.32.1.20251210,<7.0.0", "types-protobuf~=6.32.1.20251210",
"pre-commit>=4.5.1,<5.0.0", "pre-commit~=4.5.1",
"openapi-spec-validator>=0.7.2,<1.0.0", "openapi-spec-validator~=0.7.2",
"ruff>=0.14.10,<1.0.0", "ruff~=0.14.10",
"types-passlib>=1.7.7.20250602,<2.0.0", "types-passlib~=1.7.7.20250602",
"openai>=2.14.0", "openai~=2.14.0",
"json5>=0.13.0,<1.0.0", "json5~=0.13.0",
"asgi-lifespan>=2.1.0,<3.0.0", "asgi-lifespan~=2.1.0",
"anyio>=4.12.1", "anyio~=4.12.1",
"pytest>=9.0.2", "pytest~=9.0.2",
"pytest-cov>=7.0.0", "pytest-cov~=7.0.0",
"pytest-md>=0.2.0,<0.3.0", "pytest-md~=0.2.0",
"pytest-httpserver>=1.1.3,<2.0.0", "pytest-httpserver~=1.1.3",
"pytest-mock>=3.15.1,<4.0.0", "pytest-mock~=3.15.1",
"types-mock>=5.2.0.20250924,<6.0.0", "types-mock~=5.2.0.20250924",
"mock>=5.2.0,<6.0.0", "mock~=5.2.0",
"grpcio-tools>=1.76.0,<2.0.0" "grpcio-tools~=1.76.0"
] ]
[tool.poetry] [tool.poetry]
Generated
+946 -874
View File
File diff suppressed because it is too large Load Diff