From 524132e100eda10062f6c73505ed51995d8a1e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Thu, 12 Oct 2023 16:32:22 +0200 Subject: [PATCH] fix: revert support for python 3.12 Not supported by playwright: https://github.com/microsoft/playwright-python/issues/2096 --- .github/workflows/instance_test.yml | 2 +- .github/workflows/mypy.yml | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/instance_test.yml b/.github/workflows/instance_test.yml index 8be9dfe..6324bda 100644 --- a/.github/workflows/instance_test.yml +++ b/.github/workflows/instance_test.yml @@ -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 diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 8fc48a6..c7c7e28 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 6d9628c..333d49b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"