From 0b9fbe028cb9bea6f6f0e417509de77ce0140fb5 Mon Sep 17 00:00:00 2001 From: Evan Blaudy Date: Tue, 3 Oct 2023 02:00:21 +0200 Subject: [PATCH 1/4] [github-actions] add more versions to test in ci --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 626c0a1..d09e7da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - version: [3.8, 3.11, pypy3.10] + version: ["3.8", "3.9", "3.10", "3.11", "pypy3.10", "pypy3.9"] steps: - uses: actions/checkout@v4 - name: Set up Python From d7716756b99781d68d563040a8f612220c22daa5 Mon Sep 17 00:00:00 2001 From: Evan Blaudy Date: Tue, 3 Oct 2023 02:13:04 +0200 Subject: [PATCH 2/4] [requirements] disallow flask>3 it's not supported yet --- requirements/install.pip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/install.pip b/requirements/install.pip index f486b27..13e516b 100644 --- a/requirements/install.pip +++ b/requirements/install.pip @@ -1,4 +1,4 @@ -flask>=2.0.0 +flask>=2.0.0,<3 python-dateutil==2.8.2 Werkzeug>=2.0.0 -cryptography>=39.0.2 \ No newline at end of file +cryptography>=39.0.2 From 67733e9426438edb49e05c940a5bd9e0b68ae2ce Mon Sep 17 00:00:00 2001 From: Evan Blaudy Date: Tue, 3 Oct 2023 23:08:34 +0200 Subject: [PATCH 3/4] [github-actions] in ci.yml test on python 3.12 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d09e7da..782e8fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - version: ["3.8", "3.9", "3.10", "3.11", "pypy3.10", "pypy3.9"] + version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"] steps: - uses: actions/checkout@v4 - name: Set up Python From 8d09450acb992edd854b25e20f0af4eb6b9f435f Mon Sep 17 00:00:00 2001 From: Evan Blaudy Date: Wed, 4 Oct 2023 17:36:38 +0200 Subject: [PATCH 4/4] [setup] add python 3.12 in classifiers --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 902e37e..09b0b5a 100644 --- a/setup.py +++ b/setup.py @@ -91,6 +91,7 @@ def pip(filename): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP :: Dynamic Content",