Skip to content

Commit 1ca1a30

Browse files
authoredMar 10, 2025··
build: use python 3.10 for testing (#891)
* build: use python 3.10 for testing * set default_python_version to 3.10
1 parent 3574ca1 commit 1ca1a30

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed
 

‎.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.8"
15+
python-version: "3.10"
1616
- name: Install nox
1717
run: |
1818
python -m pip install --upgrade setuptools pip wheel

‎.github/workflows/unittest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup Python
4646
uses: actions/setup-python@v5
4747
with:
48-
python-version: "3.8"
48+
python-version: "3.10"
4949
- name: Install coverage
5050
run: |
5151
python -m pip install --upgrade setuptools pip wheel

‎noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
ISORT_VERSION = "isort==5.10.1"
3333
LINT_PATHS = ["docs", "pandas_gbq", "tests", "noxfile.py", "setup.py"]
3434

35-
DEFAULT_PYTHON_VERSION = "3.8"
35+
DEFAULT_PYTHON_VERSION = "3.10"
3636

3737

3838
UNIT_TEST_PYTHON_VERSIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"]

‎owlbot.py

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
}
3535
extras = ["tqdm", "geopandas"]
3636
templated_files = common.py_library(
37+
default_python_version="3.10",
3738
unit_test_python_versions=["3.8", "3.9", "3.10", "3.11", "3.12"],
3839
system_test_python_versions=["3.8", "3.9", "3.10", "3.11", "3.12"],
3940
cov_level=96,

0 commit comments

Comments
 (0)
Please sign in to comment.