Lower minimum Python version and update packages

This commit is contained in:
2023-01-10 17:17:32 +01:00
parent 9d44ac18bd
commit b5b2982dc8
2 changed files with 44 additions and 15 deletions

View File

@ -5,12 +5,12 @@ description = "RSS bot for Discord"
authors = ["Joakim Hellsén <tlovinator@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.11"
reader = "^3.2"
python = "^3.10"
reader = "^3.3"
discord-webhook = "^1.0.0"
platformdirs = "^2.6.0"
fastapi = "^0.88.0"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
platformdirs = "^2.6.2"
fastapi = "^0.89.0"
uvicorn = { extras = ["standard"], version = "^0.20.0" }
jinja2 = "^3.1.2"
apscheduler = "^3.9.1.post1"
python-multipart = "^0.0.5"
@ -18,8 +18,8 @@ python-dotenv = "^0.21.0"
tomlkit = "^0.11.6"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
httpx = "^0.23.1"
pytest = "^7.2.0"
httpx = "^0.23.3"
[build-system]
requires = ["poetry-core>=1.0.0"]