Skip to content

Commit f6f1bd3

Browse files
committed
SA20: Add SQLAlchemy 2.x to CI build matrix
Currently, this is 2.0.0rc1.
1 parent a2cfe39 commit f6f1bd3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
language: [ python ]
33-
sqla-version: ['1.3.24', '1.4.45']
33+
sqla-version: ['1.3.24', '1.4.45', '2.0.0rc1']
3434

3535
steps:
3636
- name: Checkout

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
os: ['ubuntu-latest', 'macos-latest']
2323
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
2424
cratedb-version: ['5.1.2']
25-
sqla-version: ['1.3.24', '1.4.45']
25+
sqla-version: ['1.3.24', '1.4.45', '2.0.0rc1']
2626
# To save resources, only use the most recent Python version on macOS.
2727
exclude:
2828
- os: 'macos-latest'

bootstrap.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function setup_package() {
7070
if [ "${SQLALCHEMY_VERSION}" = "latest" ]; then
7171
pip install "sqlalchemy" --upgrade
7272
else
73-
pip install "sqlalchemy==${SQLALCHEMY_VERSION}"
73+
pip install "sqlalchemy==${SQLALCHEMY_VERSION}" --pre
7474
fi
7575
fi
7676

0 commit comments

Comments
 (0)