Skip to content

Commit a0d7da5

Browse files
committed
Update supported Python versions
1 parent 74a9d8c commit a0d7da5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424

2525
- name: "Install Python"
2626
uses: actions/setup-python@v4
27+
with:
28+
python-version: "3.11"
2729

2830
- name: "Install pre-commit"
2931
run: pip install pre-commit
@@ -41,8 +43,9 @@ jobs:
4143
"3.8",
4244
"3.9",
4345
"3.10",
44-
"pypy-3.7",
46+
"3.11",
4547
"pypy-3.8",
48+
"pypy-3.9",
4649
]
4750
trino: [
4851
"latest",
@@ -52,9 +55,9 @@ jobs:
5255
]
5356
include:
5457
# Test with older Trino versions for backward compatibility
55-
- { python: "3.10", trino: "351", sqlalchemy: "~=1.4.0" } # first Trino version
58+
- { python: "3.11", trino: "351", sqlalchemy: "~=1.4.0" } # first Trino version
5659
# Test with sqlalchemy 1.3
57-
- { python: "3.10", trino: "latest", sqlalchemy: "~=1.3.0" }
60+
- { python: "3.11", trino: "latest", sqlalchemy: "~=1.3.0" }
5861
env:
5962
TRINO_VERSION: "${{ matrix.trino }}"
6063
steps:

0 commit comments

Comments
 (0)