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 25, 2022
1 parent 0225ddf commit 6e6d4f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 6e6d4f7

Please sign in to comment.