Update Python version and dependencies in pyproject.toml

- Upgraded Python requirement from ^3.11 to ^3.12.
- Changed specific dependencies (pillow, beautifulsoup4, pyyaml, lxml, typer) to use the latest versions by setting them to "*".
- Added python-frontmatter as a new dependency with version ^1.1.0.
This commit is contained in:
Fundor333
2025-07-27 17:54:51 +02:00
parent c1ad159cab
commit 2474889094
2 changed files with 246 additions and 240 deletions

View File

@@ -7,16 +7,17 @@ readme = "README.md"
packages = [{ include = "fundor333" }]
[tool.poetry.dependencies]
python = "^3.11"
python = "^3.12"
feedparser = "*"
requests = "*"
python-dotenv = "*"
weeknotebot = "*"
pillow = "^11.2.1"
beautifulsoup4 = "^4.13.4"
pyyaml = "^6.0.2"
lxml = "^5.4.0"
typer = "^0.16.0"
pillow = "*"
beautifulsoup4 = "*"
pyyaml = "*"
lxml = "*"
typer = "*"
python-frontmatter = "^1.1.0"
[tool.poetry.group.dev.dependencies]