Skip to content

Commit dca3b91

Browse files
committed
mraba/python-bump: add python up to 3.14
1 parent 4a418f9 commit dca3b91

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

DESCRIPTION.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Source code is also available at:
88
<https://github.com/snowflakedb/snowflake-sqlalchemy>
99
# Unreleased Notes
1010
- v1.8.0
11+
- Add Python 3.13 & 3.14
1112
- Bump snowflake-connector-python to v4
1213

1314
# Release Notes

ci/test_linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# - This script assumes that ../dist/repaired_wheels has the wheel(s) built for all versions to be tested
77
# - This is the script that test_docker.sh runs inside of the docker container
88

9-
PYTHON_VERSIONS="${1:-3.8 3.9 3.10 3.11}"
9+
PYTHON_VERSIONS="${1:-3.8 3.9 3.10 3.11 3.12 3.13 3.14}"
1010
THIS_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
1111
SQLALCHEMY_DIR="$(dirname "${THIS_DIR}")"
1212

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ classifiers = [
3030
"Programming Language :: Python :: 3.10",
3131
"Programming Language :: Python :: 3.11",
3232
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
34+
"Programming Language :: Python :: 3.14",
3335
"Programming Language :: SQL",
3436
"Topic :: Database",
3537
"Topic :: Scientific/Engineering :: Information Analysis",

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
min_version = 4.0.0
33
envlist = fix_lint,
4-
py{37,38,39,310,311}{,-pandas},
4+
py{38,39,310,311,312,313,314}{,-pandas},
55
coverage,
66
skip_missing_interpreters = true
77

@@ -12,11 +12,13 @@ extras =
1212
development
1313
pandas
1414
external_wheels =
15-
py37-ci: dist/*.whl
1615
py38-ci: dist/*.whl
1716
py39-ci: dist/.whl
1817
py310-ci: dist/.whl
1918
py311-ci: dist/.whl
19+
py312-ci: dist/.whl
20+
py313-ci: dist/.whl
21+
py313-ci: dist/.whl
2022
deps = pip
2123
passenv =
2224
AWS_ACCESS_KEY_ID

0 commit comments

Comments
 (0)