Skip to content

Commit 384befb

Browse files
committed
update default python version to 3.13
1 parent b8688df commit 384befb

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

packages/pandas-gbq/noxfile.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,17 @@
3232
ISORT_VERSION = "isort==5.10.1"
3333
LINT_PATHS = ["docs", "pandas_gbq", "tests", "noxfile.py", "setup.py"]
3434

35-
DEFAULT_PYTHON_VERSION = "3.10"
35+
ALL_PYTHON = [
36+
"3.7",
37+
"3.8",
38+
"3.9",
39+
"3.10",
40+
"3.11",
41+
"3.12",
42+
"3.13",
43+
]
44+
45+
DEFAULT_PYTHON_VERSION = ALL_PYTHON[-1]
3646

3747
UNIT_TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13"]
3848
UNIT_TEST_STANDARD_DEPENDENCIES = [

0 commit comments

Comments
 (0)