From 6b789f1f4a05285d8e663e7a73ed39f6e14af5d0 Mon Sep 17 00:00:00 2001 From: Jose Javier Merchante Date: Wed, 13 Nov 2024 15:41:19 +0100 Subject: [PATCH] Include Python 3.12 in workflow tests This commit adds Python 3.12 tests to the GitHub Actions workflows. These tests were missing during the migration from 3.8 to 3.9 due to incompatibilities with NumPy and the available packages at that time Signed-off-by: Jose Javier Merchante --- .github/workflows/release.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6cb041bfb..5c1c98f1d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: name: Python ${{ matrix.python-version }} for ES ${{ matrix.elasticsearch-version }} strategy: matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12'] elasticsearch-version: [ 6.8.6, 7.2.0 ] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0a24acfd0..5f2048653 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,7 +35,7 @@ jobs: name: Python ${{ matrix.python-version }} for ES ${{ matrix.elasticsearch-version }} strategy: matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12'] elasticsearch-version: [6.8.6, 7.2.0] steps: