Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the python-packages group across 1 directory with 12 updates #105

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fia_auth/routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from fia_auth.auth import authenticate
from fia_auth.exceptions import UOWSError
from fia_auth.experiments import get_experiments_for_user_number
from fia_auth.model import UserCredentials # noqa: TCH001 # Required for fastapi
from fia_auth.model import UserCredentials # noqa: TC001 # Required for fastapi
from fia_auth.tokens import generate_access_token, generate_refresh_token, load_access_token, load_refresh_token

ROUTER = APIRouter()
Expand Down
24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ readme = "README.md"
version = "0.0.1"
requires-python = ">= 3.11"
dependencies = [
"cryptography==42.0.7",
"gql[all]==3.5.0",
"fastapi[all]==0.111.0",
"psycopg2==2.9.9",
"PyJWT==2.8.0",
"SQLAlchemy==2.0.30",
"uvicorn==0.30.1",
"cryptography==44.0.2",
"gql[all]==3.5.1",
"fastapi[all]==0.115.11",
"psycopg2==2.9.10",
"PyJWT==2.10.1",
"SQLAlchemy==2.0.38",
"uvicorn==0.34.0",
"requests==2.32.3"
]

Expand All @@ -20,16 +20,16 @@ dependencies = [

[project.optional-dependencies]
formatting = [
"ruff==0.4.8",
"mypy==1.10.0",
"types-requests==2.32.0.20240602",
"ruff==0.9.9",
"mypy==1.15.0",
"types-requests==2.32.0.20250301",
"fia-auth[test]",
]


test = [
"pytest==8.2.1",
"pytest-cov==5.0.0",
"pytest==8.3.5",
"pytest-cov==6.0.0",
"pytest-random-order==1.1.1",
]

Expand Down