Skip to content

Commit be63adc

Browse files
authored
fix: Sets cache support to false, removes upper req limit (googleapis#499)
* Sets cache support to false, removes upper req limit * fix: Sets cache support to false, removes upper req limit * Removes OBE comments regarding max version number
1 parent f188944 commit be63adc

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,7 @@ def readme():
8686
"google-cloud-bigquery>=2.25.2,<4.0.0dev",
8787
"google-cloud-bigquery-storage>=2.0.0,<3.0.0dev",
8888
"pyarrow>=3.0.0,<7.0dev",
89-
# Temporarily set maximimum sqlalchemy to a known-working version while
90-
# we debug failing compliance tests. See:
91-
# https://github.com/googleapis/python-bigquery-sqlalchemy/issues/386
92-
# and
93-
# https://github.com/googleapis/python-bigquery-sqlalchemy/issues/385
94-
"sqlalchemy>=1.2.0,<=1.4.27",
89+
"sqlalchemy>=1.2.0",
9590
"future",
9691
],
9792
extras_require=extras,

sqlalchemy_bigquery/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -733,6 +733,7 @@ class BigQueryDialect(DefaultDialect):
733733
supports_default_values = False
734734
supports_empty_insert = False
735735
supports_multivalues_insert = True
736+
supports_statement_cache = False
736737
supports_unicode_statements = True
737738
supports_unicode_binds = True
738739
supports_native_decimal = True

0 commit comments

Comments
 (0)