Skip to content
Merged
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 .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
]
}
},
"initializeCommand": "powershell.exe .\\.devcontainer\\initialize.ps1",
"initializeCommand": "powershell.exe ./.devcontainer/initialize.ps1",
"postCreateCommand": "python -m pip install --upgrade pip; pip3 install -r ${containerWorkspaceFolder}/requirements-dev.txt",
"remoteUser": "vscode",
"mounts": [
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sag-py-auth-brand"
version = "1.0.1"
version = "1.2.1"
description = "Keycloak brand/instance authentication for python projects"
authors = ["Samhammer AG"]
license = "MIT"
Expand All @@ -9,22 +9,22 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
contextvars = "^2.4"
fastapi = { version = ">=0.104.1", extras = ["all"] }
sag-py-auth = ">=1.1.1"
fastapi = { version = ">=0.115.12", extras = ["standard"] }
sag-py-auth = ">=1.2.1"

[tool.poetry.group.dev.dependencies]
build = ">=1.1.1"
build = ">=1.2.2.post1"
coverage = "*"
coverage-lcov = "*"
flake8 = ">=5.0.4"
flake8 = ">=7.2.0"
mock = "*"
mypy = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
types-mock = "*"
toml = "*"
zipp = ">=3.19.1"
zipp = ">=3.21.0"

[build-system]
requires = ["setuptools>=61.0"]
Expand Down
8 changes: 4 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
-r requirements.txt
build>=1.1.1
build>=1.2.2.post1
coverage-lcov
coverage==6.5.0
flake8>=5.0.4
coverage==7.8.1
flake8>=7.2.0
mock
mypy
pytest
Expand All @@ -12,4 +12,4 @@ pytest-cov
# see for details: https://github.com/theupdateframework/python-tuf/issues/2254
toml
types-mock
zipp>=3.19.1
zipp>=3.21.0
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
contextvars>=2.4
fastapi[all]>=0.110.3
sag-py-auth>=1.2.0
fastapi[standard]>=0.115.12
sag-py-auth>=1.2.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="sag-py-auth-brand",
version="1.2.0",
version="1.2.1",
description="Keycloak brand/instance authentication for python projects",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
Expand Down