Skip to content

Commit

Permalink
Explicitly test different sqlalchemy versions.
Browse files Browse the repository at this point in the history
This is safer as long as we remain compatible with both.
  • Loading branch information
ndevenish committed Oct 8, 2024
1 parent a7de038 commit 97f904f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
sqlalchemy-version: ["sqlalchemy==1.4", "sqlalchemy>=2,<3"]
services:
mariadb:
image: mariadb:10.6
Expand All @@ -32,8 +33,7 @@ jobs:
- name: Install package
run: |
set -eux
python -m pip install -r ./requirements_dev.txt
python -m pip install .
python -m pip install . -r ./requirements_dev.txt "${{ matrix.sqlalchemy-version }}"
- name: Get database
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 97f904f

Please sign in to comment.