chg: disable python 3.12, aiohttp doesn't supports it.

pull/809/head
Raphaël Vinot 2023-10-17 23:17:13 +02:00
parent 49f7558d23
commit 1d6026da58
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4

View File

@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4

View File

@ -35,7 +35,7 @@ start_website = "bin.start_website:main"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
python = ">=3.8,<3.12"
requests = "^2.31.0"
flask = "^2.3.3"
gunicorn = "^21.2.0"