From da8270f2ef6902f22177ad157d5374f9bd4112f7 Mon Sep 17 00:00:00 2001 From: "Hitalo M." Date: Thu, 1 Aug 2024 19:15:02 -0300 Subject: [PATCH] fix(docs): pin towncrier dependency sphinxcontrib-towncrier is incompatible with towncrier 24.7 (sphinx-contrib/sphinxcontrib-towncrier#92) --- pyproject.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6ce134951..cb58be695 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,24 +5,24 @@ description = "An all-in-one bot for Telegram" authors = [{ name = "Hitalo" }] dependencies = [ "hydrogram[fast] @ git+https://github.com/hydrogram/hydrogram@dev", - "hairydogm>=0.3.0", + "hairydogm>=0.4.1", "picologging>=0.9.3", "structlog>=24.4.0", "uvloop>=0.19.0", "aiosqlite>=0.20.0", "emoji-country-flag>=2.0.1", "polib>=1.2.0", - "bs4>=0.0.1", + "bs4>=0.0.2", "lxml>=5.2.2", "meval>=2.5", "pillow>=10.4.0", "httpx[http2]>=0.27.0", "cashews[redis,speedup]>=7.1.0", - "yt-dlp>=2024.7.16", + "yt-dlp>=2024.8.1", "magic-filter>=1.0.12", "tomlkit>=0.13.0", - "sentry-sdk>=2.10.0", - "regex>=2024.5.15", + "sentry-sdk>=2.12.0", + "regex>=2024.7.24", "pydantic>=2.8.2", ] readme = "README.md" @@ -38,16 +38,16 @@ build-backend = "hatchling.build" [tool.rye] managed = true -dev-dependencies = ["pre-commit>=3.7.1", "ruff>=0.5.5"] +dev-dependencies = ["pre-commit>=3.8.0", "ruff>=0.5.5"] [project.optional-dependencies] docs = [ - "sphinx>=7.4.6", + "sphinx>=7.4.7", "furo>=2024.7.18", "sphinx-autobuild>=2024.4.16", "sphinx-copybutton>=0.5.2", "myst-parser>=3.0.1", - "towncrier>=23.11.0", + "towncrier==23.11.0", # 24.7 is incompatible with sphinxcontrib-towncrier "sphinxcontrib-towncrier>=0.4.0a0", ]