Skip to content

Commit b41ba48

Browse files
committed
feat(pandas-gbq): Update runtime version check to Python 3.10
1 parent 0943147 commit b41ba48

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/pandas-gbq/pandas_gbq/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
from .gbq import read_gbq, to_gbq # noqa
1414

1515
sys_major, sys_minor, sys_micro = _versions_helpers.extract_runtime_version()
16-
if sys_major == 3 and sys_minor < 9:
16+
if sys_major == 3 and sys_minor < 10:
1717
warnings.warn(
18-
"pandas-gbq no longer supports Python versions older than 3.9. "
18+
"pandas-gbq no longer supports Python versions older than 3.10. "
1919
"Your Python version is "
2020
f"{sys_major}.{sys_minor}.{sys_micro}. Please update "
21-
"to Python 3.9 or newer to ensure ongoing support. For more details, "
21+
"to Python 3.10 or newer to ensure ongoing support. For more details, "
2222
"see: https://cloud.google.com/python/docs/supported-python-versions",
2323
FutureWarning,
2424
)

0 commit comments

Comments
 (0)