Skip to content

Commit 0c3892e

Browse files
authored
Merge pull request #15 from SamhammerAG/KIT-4716
KIT-4716: Bump packages
2 parents 4aa3b96 + ff7c952 commit 0c3892e

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sag-py-auth"
3-
version = "1.2.4"
3+
version = "1.2.5"
44
description = "secure fastapi service with keycloak jwt bearer authentication"
55
authors = ["Your Name <you@example.com>"]
66
readme = "README.md"
@@ -10,6 +10,7 @@ python = "^3.12"
1010
anyio = "^4.9.0"
1111
cachetools = ">=6.0.0"
1212
contextvars = ">=2.4.0"
13+
cryptography = ">=46.0.5"
1314
fastapi = {version = ">=0.115.12", extras = ["standard"]}
1415
PyJWT = "2.10.1"
1516
starlette = ">= 0.46.2"

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
anyio>=4.9.0
2-
cachetools>=6.0.0
1+
anyio>=4.12.1
2+
cachetools>=7.0.1
33
contextvars>=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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setuptools.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",

0 commit comments

Comments
 (0)