mirror of
https://github.com/bsedin/matrix-webhook.git
synced 2026-04-09 03:15:40 +00:00
Merge pull request #150 from nim65s/pre-commit-ci-update-config
[pre-commit.ci] pre-commit autoupdate
This commit is contained in:
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@@ -13,5 +13,5 @@ jobs:
|
|||||||
- run: poetry install --with dev --no-interaction
|
- run: poetry install --with dev --no-interaction
|
||||||
- run: poetry run ruff format .
|
- run: poetry run ruff format .
|
||||||
- run: poetry run ruff check .
|
- run: poetry run ruff check .
|
||||||
- run: poetry run safety check
|
- run: poetry run safety check --ignore 70612
|
||||||
- run: poetry run poetry check
|
- run: poetry run poetry check
|
||||||
|
|||||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -5,5 +5,5 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: docker-compose -f test.yml up --exit-code-from tests
|
- run: docker compose -f test.yml up --exit-code-from tests
|
||||||
- uses: codecov/codecov-action@v4
|
- uses: codecov/codecov-action@v4
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||||
rev: v0.5.0
|
rev: v0.6.3
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: ruff
|
||||||
args:
|
args:
|
||||||
@@ -8,7 +8,7 @@ repos:
|
|||||||
- --exit-non-zero-on-fix
|
- --exit-non-zero-on-fix
|
||||||
- id: ruff-format
|
- id: ruff-format
|
||||||
- repo: https://github.com/nim65s/pre-commit-sort
|
- repo: https://github.com/nim65s/pre-commit-sort
|
||||||
rev: v0.2.0
|
rev: v0.4.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: pre-commit-sort
|
- id: pre-commit-sort
|
||||||
- repo: https://github.com/pappasam/toml-sort
|
- repo: https://github.com/pappasam/toml-sort
|
||||||
|
|||||||
12
flake.lock
generated
12
flake.lock
generated
@@ -5,11 +5,11 @@
|
|||||||
"systems": "systems"
|
"systems": "systems"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1709126324,
|
"lastModified": 1710146030,
|
||||||
"narHash": "sha256-q6EQdSeUZOG26WelxqkmR7kArjgWCdw5sfJVHPH/7j8=",
|
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "flake-utils",
|
"repo": "flake-utils",
|
||||||
"rev": "d465f4819400de7c8d874d50b982301f28a84605",
|
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -20,11 +20,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1709703039,
|
"lastModified": 1725634671,
|
||||||
"narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=",
|
"narHash": "sha256-v3rIhsJBOMLR8e/RNWxr828tB+WywYIoajrZKFM+0Gg=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d",
|
"rev": "574d1eac1c200690e27b8eb4e24887f8df7ac27c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -8,9 +8,9 @@
|
|||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
{
|
{
|
||||||
self,
|
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
flake-utils,
|
flake-utils,
|
||||||
|
...
|
||||||
}:
|
}:
|
||||||
flake-utils.lib.eachDefaultSystem (
|
flake-utils.lib.eachDefaultSystem (
|
||||||
system:
|
system:
|
||||||
|
|||||||
1352
poetry.lock
generated
1352
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -14,17 +14,17 @@ version = "3.9.1"
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
Markdown = "^3.6"
|
Markdown = "^3.6"
|
||||||
matrix-nio = "^0.24"
|
matrix-nio = "^0.25"
|
||||||
python = "^3.8"
|
python = "^3.8"
|
||||||
|
|
||||||
[tool.poetry.group.dev]
|
[tool.poetry.group.dev]
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
coverage = "^7.5.4"
|
coverage = "^7.6.1"
|
||||||
httpx = ">=0.27.0"
|
httpx = ">=0.27.2"
|
||||||
ruff = ">=0.5.0"
|
ruff = ">=0.6.4"
|
||||||
safety = {allow-prereleases = true, version = "^3.2.3"}
|
safety = {allow-prereleases = true, version = "^3.2.7"}
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
matrix-webhook = "matrix_webhook.__main__:main"
|
matrix-webhook = "matrix_webhook.__main__:main"
|
||||||
|
|||||||
Reference in New Issue
Block a user