This commit is contained in:
Guilhem Saurel 2024-07-01 10:04:21 +02:00
parent 5c68e62538
commit 7c5cad78c5
3 changed files with 498 additions and 423 deletions

View File

@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.1
rev: v0.5.0
hooks:
- id: ruff
args:
@ -8,7 +8,7 @@ repos:
- --exit-non-zero-on-fix
- id: ruff-format
- repo: https://github.com/nim65s/pre-commit-sort
rev: v0.1.0
rev: v0.2.0
hooks:
- id: pre-commit-sort
- repo: https://github.com/pappasam/toml-sort

906
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -2,9 +2,6 @@
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.isort]
profile = "black"
[tool.poetry]
authors = ["Guilhem Saurel <guilhem.saurel@laas.fr>"]
description = "Post a message to a matrix room with a simple HTTP POST"
@ -16,7 +13,7 @@ repository = "https://github.com/nim65s/matrix-webhook.git"
version = "3.9.1"
[tool.poetry.dependencies]
Markdown = "^3.5.2"
Markdown = "^3.6"
matrix-nio = "^0.24"
python = "^3.8"
@ -24,10 +21,10 @@ python = "^3.8"
optional = true
[tool.poetry.group.dev.dependencies]
coverage = "^7.4.3"
coverage = "^7.5.4"
httpx = ">=0.27.0"
ruff = ">=0.3.1"
safety = {allow-prereleases = true, version = "^3.0.1"}
ruff = ">=0.5.0"
safety = {allow-prereleases = true, version = "^3.2.3"}
[tool.poetry.scripts]
matrix-webhook = "matrix_webhook.__main__:main"