fix: revert support for python 3.12

Not supported by playwright: https://github.com/microsoft/playwright-python/issues/2096
pull/803/head
Raphaël Vinot 2023-10-12 16:32:22 +02:00
parent f599f2e031
commit 524132e100
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"