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:
committed by
GitHub
parent
daa13fa94f
commit
19cbc6e3ad
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user