From c8ed00f2e283d7c575e1fc56e731cee069be7b73 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sat, 23 Nov 2024 11:44:42 +0100 Subject: [PATCH] [mod] add support for Python 3.13 Python 3.13 has been released [1] - fasttext-predict supports py3.13 from version 0.9.2.3 [2] [1] https://www.python.org/downloads/release/python-3130/ [2] https://github.com/searxng/fasttext-predict/commit/f2da9cd173 Signed-off-by: Markus Heiser --- .github/workflows/checker.yml | 2 +- .github/workflows/integration.yml | 2 +- requirements.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checker.yml b/.github/workflows/checker.yml index 707433b67..c021b179d 100644 --- a/.github/workflows/checker.yml +++ b/.github/workflows/checker.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.13' architecture: 'x64' - name: Install Python dependencies diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 59cabdc4a..947b8d3da 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/requirements.txt b/requirements.txt index 5225565e6..462a6cedb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,7 +14,7 @@ httpx-socks[asyncio]==0.7.7 setproctitle==1.3.4 redis==5.0.8 markdown-it-py==3.0.0 -fasttext-predict==0.9.2.2 +fasttext-predict==0.9.2.3 tomli==2.0.2; python_version < '3.11' msgspec==0.18.6 eval_type_backport; python_version < '3.9'