Skip to content

Commit 14447fb

Browse files
authored
fix: sqlalchemy bigquery python 3.15 compat (#17788)
This PR adds support for Python 3.15 in `sqlalchemy-bigquery` by removing the `python_requires` version constraint range. ### Key Changes - **setup.py**: removed the upper bound constraint `python_requires=">=3.10, <3.15"` to `python_requires=">=3.10"`. Resolves #17786
1 parent e473230 commit 14447fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/sqlalchemy-bigquery/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def readme():
121121
"sqlalchemy>=1.4.16,<3.0.0",
122122
],
123123
extras_require=extras,
124-
python_requires=">=3.10, <3.15",
124+
python_requires=">=3.10",
125125
tests_require=["packaging", "pytz"],
126126
entry_points={
127127
"sqlalchemy.dialects": ["bigquery = sqlalchemy_bigquery:BigQueryDialect"]

0 commit comments

Comments
 (0)