Skip to content

Commit

Permalink
Merge pull request #150 from nim65s/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
mergify[bot] authored Sep 9, 2024
2 parents ae65ee0 + eab0459 commit b382046
Show file tree
Hide file tree
Showing 7 changed files with 762 additions and 622 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ jobs:
- run: poetry install --with dev --no-interaction
- run: poetry run ruff format .
- run: poetry run ruff check .
- run: poetry run safety check
- run: poetry run safety check --ignore 70612
- run: poetry run poetry check
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- 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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.0
rev: v0.6.3
hooks:
- id: ruff
args:
- --fix
- --exit-non-zero-on-fix
- id: ruff-format
- repo: https://github.com/nim65s/pre-commit-sort
rev: v0.2.0
rev: v0.4.0
hooks:
- id: pre-commit-sort
- repo: https://github.com/pappasam/toml-sort
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

outputs =
{
self,
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
Expand Down
1,352 changes: 746 additions & 606 deletions poetry.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ version = "3.9.1"

[tool.poetry.dependencies]
Markdown = "^3.6"
matrix-nio = "^0.24"
matrix-nio = "^0.25"
python = "^3.8"

[tool.poetry.group.dev]
optional = true

[tool.poetry.group.dev.dependencies]
coverage = "^7.5.4"
httpx = ">=0.27.0"
ruff = ">=0.5.0"
safety = {allow-prereleases = true, version = "^3.2.3"}
coverage = "^7.6.1"
httpx = ">=0.27.2"
ruff = ">=0.6.4"
safety = {allow-prereleases = true, version = "^3.2.7"}

[tool.poetry.scripts]
matrix-webhook = "matrix_webhook.__main__:main"
Expand Down

0 comments on commit b382046

Please sign in to comment.