Skip to content

Commit

Permalink
Test new mariadb versions with py3.8 only for now
Browse files Browse the repository at this point in the history
The requirements files are compiled specifically for py3.8, so when
the system python is 3.12, the CI fails when trying to install
dependencies. Run the CI only on py3.8.
  • Loading branch information
amstilp committed May 6, 2024
1 parent 1b6dbff commit e720591
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.12]
python-version: [3.8]
backend: ["sqlite", "mariadb"]
mariadb-version: ["10.4"]
# include:
# - python-version: 3.12 # Possible future version.
# backend: "mariadb"
# mariadb-version: "10.5"
# - python-version: 3.12 # Possible future version.
# backend: "mariadb"
# mariadb-version: "10.11"
include:
# Not sure yet how best to include CI for a newer python version with the pip-tools workflow.
- python-version: 3.8 # Possible future version.
backend: "mariadb"
mariadb-version: "10.5"
- python-version: 3.8 # Possible future version.
backend: "mariadb"
mariadb-version: "10.11"

name: "py${{ matrix.python-version }}-${{ matrix.backend }}-${{ matrix.mariadb-version }}"

Expand Down

0 comments on commit e720591

Please sign in to comment.