feat: fixed dependencies
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 57s

This commit is contained in:
Konstantin Fickel 2026-01-18 17:29:29 +01:00
parent 1ad6e937ad
commit 97be35c2b0
Signed by: kfickel
GPG key ID: A793722F9933C1A5
2 changed files with 53 additions and 54 deletions

View file

@ -5,13 +5,13 @@ description = "Searching for tags in streams"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.3.0",
"mistletoe>=1.4.0",
"pydantic>=2.12.0",
"pydantic-settings[yaml]>=2.11.0",
"rich>=14.2.0",
"typer>=0.19.2",
"xdg-base-dirs>=6.0.2",
"click==8.3.0",
"mistletoe==1.4.0",
"pydantic==2.12.0",
"pydantic-settings[yaml]==2.11.0",
"rich==14.2.0",
"typer==0.19.2",
"xdg-base-dirs==6.0.2",
]
[project.scripts]
@ -23,8 +23,8 @@ build-backend = "hatchling.build"
[dependency-groups]
dev = [
"faker>=37.11.0",
"pyright>=1.1.406",
"pytest>=8.4.2",
"ruff>=0.11.2",
"faker==37.11.0",
"pyright==1.1.406",
"pytest==8.4.2",
"ruff==0.11.2",
]