feat: update dependencies and capture network errors when retrieving remote public keys

This commit is contained in:
cătălin 2024-05-17 19:05:44 +02:00
commit 812fee592e
No known key found for this signature in database
4 changed files with 30 additions and 21 deletions

View file

@ -4,16 +4,16 @@ authors = [
]
requires-python = ">=3.10"
dependencies = [
"typer<1.0.0,>=0.6.1",
"typer>=0.12",
"rich>=13.3.3",
"pydantic>=2.0.3",
"pydantic>=2.7",
"pyyaml>=6.0",
"pyrage>=1.1.1",
"pendulum>=2.1.2",
"httpx>=0.24.0",
"platformdirs>=3.5.1",
"pydantic-settings>=2.0.2",
"hishel>=0.0.17",
"pyrage>=1.1",
"pendulum>=3.0",
"httpx>=0.27",
"platformdirs>=4.2",
"pydantic-settings>=2.0",
"hishel>=0.0.26",
]
name = "halig"
dynamic = ["version"]
@ -90,7 +90,7 @@ reportAttributeAccessIssue = false
[tool.ruff.lint]
extend-select = ["W", "C90", "I", "N", "UP", "S", "BLE", "B", "A", "COM", "C4", "DTZ", "T10", "EM", "ISC", "T20", "PT", "RSE", "RET", "SIM", "PTH", "ERA", "PGH", "PL", "TRY", "RUF"]
extend-ignore = ["S101", "ISC002"]
extend-ignore = ["S101", "ISC002", "COM812", "ISC001"]
[tool.mypy]
python_version = "3.11"