Skip to content

Commit

Permalink
CI test SQLAlchemy 1.4 and 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlumpe committed Dec 1, 2024
1 parent c0a0d9f commit 229d027
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
fail-fast: false
matrix:
python-version: [3.9, '3.10', 3.11, 3.12, 3.13]
sqla-version: ["~=2.0"]
include:
# Also test with SQLALchemy >=1.4, <2
- python-version: 3.12
- sqla-version: "~=1.4"

steps:
- uses: actions/checkout@v4
Expand All @@ -27,7 +32,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools pytest
python -m pip install setuptools pytest sqlalchemy{{ matrix.sqla-version }}
- name: Build package
run: |
Expand Down

0 comments on commit 229d027

Please sign in to comment.