Skip to content

Commit

Permalink
Update all non-major dependencies (#114)
Browse files Browse the repository at this point in the history
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Signed-off-by: Aurélien Bompard <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Aurélien Bompard <[email protected]>
  • Loading branch information
renovate[bot] and abompard authored Dec 2, 2024
1 parent a6c6cbf commit 82d31c3
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repos:
# Ruff
- repo: https://github.com/charliermarsh/ruff-pre-commit
# Ruff version.
rev: v0.7.4
rev: v0.8.1
hooks:
- id: ruff

Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pydantic-settings = "^2.4.0"
aiosqlite = "^0.20.0"
authlib = "^1.3.1"
itsdangerous = "^2.2.0"
httpx = "^0.27.0"
httpx = "^0.27.0 || ^0.28.0"
pyyaml = "^6.0.2"
backoff = "^2.2.1"
httpx-gssapi = "^0.3.1"
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later

from typing import AsyncGenerator
from collections.abc import AsyncGenerator
from unittest import mock

import pytest
Expand Down
4 changes: 2 additions & 2 deletions webhook_to_fedora_messaging/endpoints/models/service.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from abc import ABC
from datetime import datetime
from enum import Enum
from typing import List, Optional
from typing import Optional

from pydantic import (
BaseModel,
Expand Down Expand Up @@ -76,4 +76,4 @@ class ServiceResult(BaseModel):


class ServiceManyResult(BaseModel):
data: List[ServiceExternal] = []
data: list[ServiceExternal] = []
3 changes: 1 addition & 2 deletions webhook_to_fedora_messaging/endpoints/models/user.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from abc import ABC
from datetime import datetime
from typing import List

from pydantic import BaseModel, ConfigDict

Expand Down Expand Up @@ -39,4 +38,4 @@ class UserResult(BaseModel):


class UserManyResult(BaseModel):
data: List[UserExternal] = []
data: list[UserExternal] = []

0 comments on commit 82d31c3

Please sign in to comment.