chore(repo): switch to exact versions, as opposed to lower bound version ranges
All checks were successful
Actions / Lint Code (Ruff & Pylint) (push) Successful in 55s
Actions / Build Documentation (MkDocs) (push) Successful in 1m7s

this is because of
https://github.com/renovatebot/renovate/discussions/34181
This commit is contained in:
cswimr 2025-03-29 07:09:51 -05:00
parent 12b8dbdbdf
commit 7562e1eff2
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
2 changed files with 219 additions and 117 deletions

View file

@ -7,33 +7,33 @@ license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiosqlite>=0.20.0",
"beautifulsoup4>=4.12.3",
"colorthief>=0.2.1",
"markdownify>=0.14.1",
"numpy>=2.2.2",
"phx-class-registry>=5.1.1",
"pillow>=10.4.0",
"pip>=25.0",
"aiosqlite==0.20.0",
"beautifulsoup4==4.12.3",
"colorthief==0.2.1",
"markdownify==0.14.1",
"numpy==2.2.2",
"phx-class-registry==5.1.1",
"pillow==10.4.0",
"pip==25.0",
"py-dactyl",
"pydantic>=2.10.6",
"red-discordbot>=3.5.14",
"watchdog>=6.0.0",
"websockets>=14.2",
"pydantic==2.10.6",
"red-discordbot==3.5.17",
"watchdog==6.0.0",
"websockets==14.2",
]
[dependency-groups]
documentation = [
"mkdocs>=1.6.1",
"mkdocs-git-authors-plugin>=0.9.2",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mkdocs-material[imaging]>=9.5.50",
"mkdocs-redirects>=1.2.2",
"mkdocstrings[python]>=0.27.0",
"mkdocs==1.6.1",
"mkdocs-git-authors-plugin==0.9.2",
"mkdocs-git-revision-date-localized-plugin==1.3.0",
"mkdocs-material[imaging]==9.5.50",
"mkdocs-redirects==1.2.2",
"mkdocstrings[python]==0.27.0",
]
[tool.uv]
dev-dependencies = ["pylint>=3.3.3", "ruff>=0.9.3", "sqlite-web>=0.6.4"]
dev-dependencies = ["pylint==3.3.3", "ruff==0.9.3", "sqlite-web==0.6.4"]
[tool.uv.sources]
py-dactyl = { git = "https://github.com/iamkubi/pydactyl", tag = "v2.0.5" }