Skip to content

Commit 6ce47bd

Browse files
committed
SNOW-2867672: python 3.14 check
1 parent 82f75a5 commit 6ce47bd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build_test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Python
3030
uses: actions/setup-python@v5
3131
with:
32-
python-version: "3.8"
32+
python-version: "3.14"
3333
- name: Upgrade and install tools
3434
run: |
3535
python -m pip install -U uv
@@ -59,7 +59,7 @@ jobs:
5959
- name: Setup up Python
6060
uses: actions/setup-python@v5
6161
with:
62-
python-version: "3.8"
62+
python-version: "3.14"
6363
- name: Upgrade and install tools
6464
run: |
6565
python -m pip install -U uv
@@ -80,7 +80,7 @@ jobs:
8080
fail-fast: false
8181
matrix:
8282
os: [ubuntu-latest, macos-13, windows-latest]
83-
python-version: ["3.8"]
83+
python-version: ["3.14"]
8484
cloud-provider: [aws, azure, gcp]
8585
steps:
8686
- uses: actions/checkout@v4
@@ -125,7 +125,7 @@ jobs:
125125
fail-fast: false
126126
matrix:
127127
os: [ubuntu-latest, macos-13, windows-latest]
128-
python-version: ["3.8"]
128+
python-version: ["3.14"]
129129
cloud-provider: [aws, azure, gcp]
130130
steps:
131131
- uses: actions/checkout@v4
@@ -167,7 +167,7 @@ jobs:
167167
fail-fast: false
168168
matrix:
169169
os: [ubuntu-latest, macos-13, windows-latest]
170-
python-version: ["3.8"]
170+
python-version: ["3.14"]
171171
cloud-provider: [aws, azure, gcp]
172172
steps:
173173
- uses: actions/checkout@v4
@@ -212,7 +212,7 @@ jobs:
212212
fail-fast: false
213213
matrix:
214214
os: [ubuntu-latest, macos-13, windows-latest]
215-
python-version: ["3.8"]
215+
python-version: ["3.14"]
216216
cloud-provider: [aws, azure, gcp]
217217
steps:
218218
- uses: actions/checkout@v4
@@ -261,7 +261,7 @@ jobs:
261261
- name: Set up Python
262262
uses: actions/setup-python@v5
263263
with:
264-
python-version: "3.8"
264+
python-version: "3.14"
265265
- name: Prepare environment
266266
run: |
267267
python -m pip install -U uv

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ gh-cache-sum = "python -VV | sha256sum | cut -d' ' -f1"
105105
check-import = "python -c 'import snowflake.sqlalchemy; print(snowflake.sqlalchemy.__version__)'"
106106

107107
[[tool.hatch.envs.release.matrix]]
108-
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
108+
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
109109
features = ["development", "pandas"]
110110

111111
[tool.hatch.envs.release.scripts]

0 commit comments

Comments
 (0)