Fix dependencies to the minor versions (#125)

* Fix dependencies to the minor versions

* Specify exact Python version requirement

* Updated lockfile

* Switch to dependency groups
This commit is contained in:
Christiaan Goossens
2025-09-22 12:51:13 +02:00
committed by GitHub
parent daa13fa94f
commit 19cbc6e3ad
2 changed files with 22 additions and 147 deletions

View File

@@ -7,13 +7,20 @@ authors = [
]
license = "MIT"
dependencies = [
"python-jose>=3.3.0",
"aiofiles>=24.1.0",
"jinja2>=3.1.4",
"bcrypt>=4.2.0",
"python-jose~=3.5.0",
"aiofiles~=24.1",
"jinja2~=3.1",
"bcrypt~=4.2",
]
readme = "README.md"
requires-python = ">= 3.13.2"
requires-python = "~=3.13.7"
[dependency-groups]
dev = [
"homeassistant~=2025.8",
"pylint~=3.3",
"ruff~=0.12",
]
[build-system]
requires = ["hatchling"]
@@ -21,14 +28,9 @@ build-backend = "hatchling.build"
[tool.uv]
managed = true
dev-dependencies = [
"homeassistant~=2025.8",
"pylint~=3.3",
"ruff>=0.12.11",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["custom_components/auth_oidc"]
packages = ["custom_components/auth_oidc"]