File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed
Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ FROM mcr.microsoft.com/devcontainers/python:3.12-bookworm
33
44# Uninstall pre-installed formatting and linting tools
55# They would conflict with our pinned versions
6- RUN pipx uninstall ruff
7- RUN pipx uninstall mypy
6+ RUN pipx uninstall ruff || true
7+ RUN pipx uninstall mypy || true
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " sag-py-auth"
3- version = " 1.2.4 "
3+ version = " 1.2.5 "
44description = " secure fastapi service with keycloak jwt bearer authentication"
55authors = [" Your Name <you@example.com>" ]
66readme = " README.md"
@@ -10,6 +10,7 @@ python = "^3.12"
1010anyio = " ^4.9.0"
1111cachetools = " >=6.0.0"
1212contextvars = " >=2.4.0"
13+ cryptography = " >=46.0.5"
1314fastapi = {version = " >=0.115.12" , extras = [" standard" ]}
1415PyJWT = " 2.10.1"
1516starlette = " >= 0.46.2"
Original file line number Diff line number Diff line change 1- anyio >= 4.9.0
2- cachetools >= 6 .0.0
1+ anyio >= 4.12.1
2+ cachetools >= 7 .0.1
33contextvars >= 2.4.0
4- cryptography == 45 .0.5
5- fastapi [standard ]>= 0.115.12
6- PyJWT >= 2.10.1
7- starlette >= 0.46.0
8- zipp >= 3.21 .0
4+ cryptography == 46 .0.5
5+ fastapi [standard ]>= 0.128.8
6+ PyJWT >= 2.11.0
7+ starlette >= 0.52.1
8+ zipp >= 3.23 .0
Original file line number Diff line number Diff line change 1111
1212setuptools .setup (
1313 name = "sag-py-auth" ,
14- version = "1.2.4 " ,
14+ version = "1.2.5 " ,
1515 description = "Keycloak authentication for python projects" ,
1616 long_description = LONG_DESCRIPTION ,
1717 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments