Skip to content

Commit

Permalink
Include Python 3.12 in workflow tests
Browse files Browse the repository at this point in the history
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 <jjmerchante@bitergia.com>
  • Loading branch information
jjmerchante committed Nov 13, 2024
1 parent 6aecf05 commit 8b1b5ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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:
Expand Down

0 comments on commit 8b1b5ad

Please sign in to comment.