From 06657719af60b54c054b23b58554146762e747dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 11 Nov 2024 13:25:37 +0100 Subject: [PATCH] Update pytest.yml for python 3.13 --- .github/workflows/pytest.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index a7b3b71..08af7ad 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.9, '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: @@ -26,6 +26,11 @@ jobs: with: python-version: ${{matrix.python-version}} + - name: Install python 3.13 specific dependencies + if: ${{ matrix.python-version == '3.13' }} + run: | + sudo apt-get install -y build-essential python3-dev libfuzzy-dev + - name: Install Python dependencies run: | python -m pip install --upgrade pip poetry