Skip to content

Commit

Permalink
SA20: Add SQLAlchemy 2.x to CI build matrix
Browse files Browse the repository at this point in the history
Currently, this is 2.0.0b4.
  • Loading branch information
amotl committed Dec 30, 2022
1 parent 5d06562 commit b34cf16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fail-fast: false
matrix:
language: [ python ]
sqla-version: ['1.3.24', '1.4.45']
sqla-version: ['1.3.24', '1.4.45', '2.0.0b4']

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
os: ['ubuntu-latest', 'macos-latest']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
cratedb-version: ['5.1.2']
sqla-version: ['1.3.24', '1.4.45']
sqla-version: ['1.3.24', '1.4.45', '2.0.0b4']
# To save resources, only use the most recent Python version on macOS.
exclude:
- os: 'macos-latest'
Expand Down
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function setup_package() {
if [ "${SQLALCHEMY_VERSION}" = "latest" ]; then
pip install "sqlalchemy" --upgrade
else
pip install "sqlalchemy==${SQLALCHEMY_VERSION}"
pip install "sqlalchemy==${SQLALCHEMY_VERSION}" --pre
fi
fi

Expand Down

0 comments on commit b34cf16

Please sign in to comment.