Skip to content

Commit

Permalink
Merge pull request #112 from olirice/or/sqla-multi-version-ci
Browse files Browse the repository at this point in the history
Test sqlalchemy 1.4 and 2.0 in CI
  • Loading branch information
olirice committed Sep 26, 2023
2 parents ed303f5 + 7a880f4 commit fb39689
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -7,8 +7,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']
postgres-version: ['11', '12', '13', '14', '15']
sqlalchemy-version: ['1.4', '2.0']

services:

Expand All @@ -35,6 +36,7 @@ jobs:
pip install --upgrade pip
pip install wheel
pip install -e ".[dev]"
pip install "sqlalchemy==${{ matrix.sqlalchemy-version }}"
- name: Test with Coverage
run: |
Expand Down
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -51,7 +51,6 @@ def get_version(package):
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit fb39689

Please sign in to comment.